Pillow/src/PIL/TgaImagePlugin.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

261 lines
6.6 KiB
Python
Raw Normal View History

2010-07-31 06:52:47 +04:00
#
# The Python Imaging Library.
# $Id$
#
# TGA file handling
#
# History:
# 95-09-01 fl created (reads 24-bit files only)
# 97-01-04 fl support more TGA versions, including compressed images
# 98-07-04 fl fixed orientation and alpha layer bugs
# 98-09-11 fl fixed orientation for runlength decoder
#
# Copyright (c) Secret Labs AB 1997-98.
# Copyright (c) Fredrik Lundh 1995-97.
#
# See the README file for information on usage and redistribution.
#
from __future__ import annotations
2010-07-31 06:52:47 +04:00
import warnings
2024-01-17 00:03:09 +03:00
from io import BytesIO
from . import Image, ImageFile, ImagePalette
2020-09-01 20:16:46 +03:00
from ._binary import i16le as i16
from ._binary import o8
from ._binary import o16le as o16
2010-07-31 06:52:47 +04:00
#
# --------------------------------------------------------------------
# Read RGA file
MODES = {
# map imagetype/depth to rawmode
(1, 8): "P",
(3, 1): "1",
(3, 8): "L",
2018-06-14 12:18:08 +03:00
(3, 16): "LA",
2010-07-31 06:52:47 +04:00
(2, 16): "BGR;5",
(2, 24): "BGR",
(2, 32): "BGRA",
}
##
# Image plugin for Targa files.
2019-03-21 16:28:20 +03:00
2010-07-31 06:52:47 +04:00
class TgaImageFile(ImageFile.ImageFile):
format = "TGA"
format_description = "Targa"
2024-01-17 00:03:09 +03:00
def _open(self) -> None:
2010-07-31 06:52:47 +04:00
# process header
2024-01-17 00:03:09 +03:00
assert self.fp is not None
2010-07-31 06:52:47 +04:00
s = self.fp.read(18)
id_len = s[0]
2010-07-31 06:52:47 +04:00
colormaptype = s[1]
imagetype = s[2]
2010-07-31 06:52:47 +04:00
depth = s[16]
2010-07-31 06:52:47 +04:00
flags = s[17]
2010-07-31 06:52:47 +04:00
self._size = i16(s, 12), i16(s, 14)
2010-07-31 06:52:47 +04:00
# validate header fields
2014-08-19 17:53:51 +04:00
if (
colormaptype not in (0, 1)
2010-07-31 06:52:47 +04:00
or self.size[0] <= 0
or self.size[1] <= 0
or depth not in (1, 8, 16, 24, 32)
):
msg = "not a TGA file"
raise SyntaxError(msg)
2010-07-31 06:52:47 +04:00
# image mode
if imagetype in (3, 11):
self._mode = "L"
2010-07-31 06:52:47 +04:00
if depth == 1:
self._mode = "1" # ???
2018-06-14 12:18:08 +03:00
elif depth == 16:
self._mode = "LA"
2010-07-31 06:52:47 +04:00
elif imagetype in (1, 9):
self._mode = "P"
2010-07-31 06:52:47 +04:00
elif imagetype in (2, 10):
self._mode = "RGB"
2010-07-31 06:52:47 +04:00
if depth == 32:
self._mode = "RGBA"
2010-07-31 06:52:47 +04:00
else:
msg = "unknown TGA mode"
raise SyntaxError(msg)
2010-07-31 06:52:47 +04:00
# orientation
orientation = flags & 0x30
self._flip_horizontally = orientation in [0x10, 0x30]
if orientation in [0x20, 0x30]:
2010-07-31 06:52:47 +04:00
orientation = 1
elif orientation in [0, 0x10]:
2010-07-31 06:52:47 +04:00
orientation = -1
else:
msg = "unknown TGA orientation"
raise SyntaxError(msg)
2010-07-31 06:52:47 +04:00
self.info["orientation"] = orientation
if imagetype & 8:
self.info["compression"] = "tga_rle"
2018-09-08 12:02:03 +03:00
if id_len:
self.info["id_section"] = self.fp.read(id_len)
2014-08-19 17:53:51 +04:00
2010-07-31 06:52:47 +04:00
if colormaptype:
# read palette
2021-04-09 14:38:28 +03:00
start, size, mapdepth = i16(s, 3), i16(s, 5), s[7]
2010-07-31 06:52:47 +04:00
if mapdepth == 16:
2014-08-20 10:32:06 +04:00
self.palette = ImagePalette.raw(
"BGR;15", b"\0" * 2 * start + self.fp.read(2 * size)
2019-03-21 16:28:20 +03:00
)
2010-07-31 06:52:47 +04:00
elif mapdepth == 24:
2014-08-20 10:32:06 +04:00
self.palette = ImagePalette.raw(
"BGR", b"\0" * 3 * start + self.fp.read(3 * size)
2019-03-21 16:28:20 +03:00
)
2010-07-31 06:52:47 +04:00
elif mapdepth == 32:
2014-08-20 10:32:06 +04:00
self.palette = ImagePalette.raw(
"BGRA", b"\0" * 4 * start + self.fp.read(4 * size)
2019-03-21 16:28:20 +03:00
)
2010-07-31 06:52:47 +04:00
# setup tile descriptor
try:
2014-08-20 10:32:06 +04:00
rawmode = MODES[(imagetype & 7, depth)]
2010-07-31 06:52:47 +04:00
if imagetype & 8:
# compressed
self.tile = [
2019-03-21 16:28:20 +03:00
(
2010-07-31 06:52:47 +04:00
"tga_rle",
(0, 0) + self.size,
self.fp.tell(),
(rawmode, orientation, depth),
2019-03-21 16:28:20 +03:00
)
2010-07-31 06:52:47 +04:00
]
else:
self.tile = [
2019-03-21 16:28:20 +03:00
(
2010-07-31 06:52:47 +04:00
"raw",
(0, 0) + self.size,
self.fp.tell(),
(rawmode, 0, orientation),
2019-03-21 16:28:20 +03:00
)
2010-07-31 06:52:47 +04:00
]
except KeyError:
2014-08-20 10:32:06 +04:00
pass # cannot decode
2010-07-31 06:52:47 +04:00
2024-01-17 00:03:09 +03:00
def load_end(self) -> None:
if self._flip_horizontally:
2024-01-17 00:03:09 +03:00
assert self.im is not None
2022-01-15 01:02:31 +03:00
self.im = self.im.transpose(Image.Transpose.FLIP_LEFT_RIGHT)
2019-03-21 16:28:20 +03:00
2010-07-31 06:52:47 +04:00
#
# --------------------------------------------------------------------
# Write TGA file
2018-03-03 12:54:00 +03:00
2010-07-31 06:52:47 +04:00
SAVE = {
"1": ("1", 1, 0, 3),
"L": ("L", 8, 0, 3),
2018-06-14 12:18:08 +03:00
"LA": ("LA", 16, 0, 3),
2010-07-31 06:52:47 +04:00
"P": ("P", 8, 1, 1),
"RGB": ("BGR", 24, 0, 2),
"RGBA": ("BGRA", 32, 0, 2),
}
2014-08-20 10:32:06 +04:00
2024-01-17 00:03:09 +03:00
def _save(im: Image.Image, fp: BytesIO, filename: str) -> None:
2010-07-31 06:52:47 +04:00
try:
rawmode, bits, colormaptype, imagetype = SAVE[im.mode]
except KeyError as e:
msg = f"cannot write mode {im.mode} as TGA"
raise OSError(msg) from e
2010-07-31 06:52:47 +04:00
if "rle" in im.encoderinfo:
rle = im.encoderinfo["rle"]
else:
compression = im.encoderinfo.get("compression", im.info.get("compression"))
rle = compression == "tga_rle"
2018-06-15 23:01:06 +03:00
if rle:
imagetype += 8
id_section = im.encoderinfo.get("id_section", im.info.get("id_section", ""))
2018-09-08 12:02:03 +03:00
id_len = len(id_section)
if id_len > 255:
id_len = 255
id_section = id_section[:255]
warnings.warn("id_section has been trimmed to 255 characters")
2010-07-31 06:52:47 +04:00
if colormaptype:
2024-01-17 00:03:09 +03:00
assert im.im is not None
2022-08-13 12:46:07 +03:00
palette = im.im.getpalette("RGB", "BGR")
2022-08-13 12:46:46 +03:00
colormaplength, colormapentry = len(palette) // 3, 24
2010-07-31 06:52:47 +04:00
else:
2022-08-13 12:46:46 +03:00
colormaplength, colormapentry = 0, 0
2010-07-31 06:52:47 +04:00
2018-06-14 12:18:08 +03:00
if im.mode in ("LA", "RGBA"):
2010-07-31 06:52:47 +04:00
flags = 8
else:
flags = 0
orientation = im.encoderinfo.get("orientation", im.info.get("orientation", -1))
2010-07-31 06:52:47 +04:00
if orientation > 0:
flags = flags | 0x20
2018-09-08 12:02:03 +03:00
fp.write(
o8(id_len)
+ o8(colormaptype)
+ o8(imagetype)
2022-08-13 12:46:46 +03:00
+ o16(0) # colormapfirst
2010-07-31 06:52:47 +04:00
+ o16(colormaplength)
+ o8(colormapentry)
2010-07-31 06:52:47 +04:00
+ o16(0)
+ o16(0)
+ o16(im.size[0])
+ o16(im.size[1])
+ o8(bits)
+ o8(flags)
2019-03-21 16:28:20 +03:00
)
2010-07-31 06:52:47 +04:00
if id_section:
fp.write(id_section)
2010-07-31 06:52:47 +04:00
if colormaptype:
2022-08-13 12:46:07 +03:00
fp.write(palette)
2010-07-31 06:52:47 +04:00
2018-06-15 23:01:06 +03:00
if rle:
ImageFile._save(
im, fp, [("tga_rle", (0, 0) + im.size, 0, (rawmode, orientation))]
)
else:
ImageFile._save(
im, fp, [("raw", (0, 0) + im.size, 0, (rawmode, 0, orientation))]
)
2010-07-31 06:52:47 +04:00
# write targa version 2 footer
2017-09-06 02:13:31 +03:00
fp.write(b"\000" * 8 + b"TRUEVISION-XFILE." + b"\000")
2010-07-31 06:52:47 +04:00
2019-03-21 16:28:20 +03:00
2010-07-31 06:52:47 +04:00
#
# --------------------------------------------------------------------
# Registry
2018-03-03 12:54:00 +03:00
Image.register_open(TgaImageFile.format, TgaImageFile)
Image.register_save(TgaImageFile.format, _save)
2010-07-31 06:52:47 +04:00
Image.register_extensions(TgaImageFile.format, [".tga", ".icb", ".vda", ".vst"])
Image.register_mime(TgaImageFile.format, "image/x-tga")