Skip to content

Commit

Permalink
Merge pull request #7661 from radarhere/iptc
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Dec 31, 2023
2 parents d71cf16 + 1d9c931 commit da61ed1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
9 changes: 9 additions & 0 deletions Tests/test_file_iptc.py
Expand Up @@ -11,6 +11,15 @@
TEST_FILE = "Tests/images/iptc.jpg"


def test_open():
f = BytesIO(
b"\x1c\x03<\x00\x02\x01\x00\x1c\x03x\x00\x01\x01\x1c"
b"\x03\x14\x00\x01\x01\x1c\x03\x1e\x00\x01\x01\x1c\x08\n\x00\x00"
)
with Image.open(f) as im:
assert im.tile == [("iptc", (0, 0, 1, 1), 25, "raw")]


def test_getiptcinfo_jpg_none():
# Arrange
with hopper() as im:
Expand Down
10 changes: 3 additions & 7 deletions src/PIL/IptcImagePlugin.py
Expand Up @@ -131,24 +131,20 @@ def _open(self):

# tile
if tag == (8, 10):
self.tile = [
("iptc", (compression, offset), (0, 0, self.size[0], self.size[1]))
]
self.tile = [("iptc", (0, 0) + self.size, offset, compression)]

def load(self):
if len(self.tile) != 1 or self.tile[0][0] != "iptc":
return ImageFile.ImageFile.load(self)

type, tile, box = self.tile[0]

encoding, offset = tile
offset, compression = self.tile[0][2:]

self.fp.seek(offset)

# Copy image data to temporary file
o_fd, outfile = tempfile.mkstemp(text=False)
o = os.fdopen(o_fd)
if encoding == "raw":
if compression == "raw":
# To simplify access to the extracted file,
# prepend a PPM header
o.write("P5\n%d %d\n255\n" % self.size)
Expand Down

0 comments on commit da61ed1

Please sign in to comment.