mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 09:56:17 +03:00
Do not describe raw data as a table
This commit is contained in:
parent
595bdf2057
commit
c16ae6fefa
|
@ -935,8 +935,8 @@ class ImageFileDirectory_v2(_IFDv2Base):
|
||||||
self._tagdata[tag] = data
|
self._tagdata[tag] = data
|
||||||
self.tagtype[tag] = typ
|
self.tagtype[tag] = typ
|
||||||
|
|
||||||
bytes_value = size if size > 32 else repr(data)
|
msg += " - value: "
|
||||||
msg += f" - value: <table: {bytes_value} bytes>"
|
msg += f"<table: {size} bytes>" if size > 32 else repr(data)
|
||||||
|
|
||||||
logger.debug(msg)
|
logger.debug(msg)
|
||||||
|
|
||||||
|
@ -981,11 +981,8 @@ class ImageFileDirectory_v2(_IFDv2Base):
|
||||||
|
|
||||||
tagname = TiffTags.lookup(tag, self.group).name
|
tagname = TiffTags.lookup(tag, self.group).name
|
||||||
typname = "ifd" if is_ifd else TYPES.get(typ, "unknown")
|
typname = "ifd" if is_ifd else TYPES.get(typ, "unknown")
|
||||||
bytes_value = len(data) if len(data) >= 16 else str(values)
|
msg = f"save: {tagname} ({tag}) - type: {typname} ({typ}) - value: "
|
||||||
msg = (
|
msg += f"<table: {len(data)} bytes>" if len(data) >= 16 else str(values)
|
||||||
f"save: {tagname} ({tag}) - type: {typname} ({typ})"
|
|
||||||
f" - value: <table: {bytes_value} bytes>"
|
|
||||||
)
|
|
||||||
logger.debug(msg)
|
logger.debug(msg)
|
||||||
|
|
||||||
# count is sum of lengths for string and arbitrary data
|
# count is sum of lengths for string and arbitrary data
|
||||||
|
|
Loading…
Reference in New Issue
Block a user