Skip to content

Commit dfe3fcb

Browse files
committed
use bytes/bytearray int constructor instead of string multiplication
1 parent 4b7464d commit dfe3fcb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/PIL/TgaImagePlugin.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -118,18 +118,18 @@ def _open(self) -> None:
118118
start, size, mapdepth = i16(s, 3), i16(s, 5), s[7]
119119
if mapdepth == 16:
120120
colormap = self.fp.read(2 * size)
121-
palette_data = bytearray(b"\0" * 2 * start)
121+
palette_data = bytearray(2 * start)
122122
for a, b in zip(colormap[::2], colormap[1::2]):
123123
palette_data += bytearray((a, b ^ 128))
124124
self.palette = ImagePalette.raw("BGRA;15", bytes(palette_data))
125125
self.palette.mode = "RGBA"
126126
elif mapdepth == 24:
127127
self.palette = ImagePalette.raw(
128-
"BGR", b"\0" * 3 * start + self.fp.read(3 * size)
128+
"BGR", bytes(3 * start) + self.fp.read(3 * size)
129129
)
130130
elif mapdepth == 32:
131131
self.palette = ImagePalette.raw(
132-
"BGRA", b"\0" * 4 * start + self.fp.read(4 * size)
132+
"BGRA", bytes(4 * start) + self.fp.read(4 * size)
133133
)
134134
else:
135135
msg = "unknown TGA map depth"

0 commit comments

Comments
 (0)