Skip to content

Commit

Permalink
lv_img_conv: remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
NeroBurner committed Oct 26, 2023
1 parent 39f218c commit 3620f73
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/resources/lv_img_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ def main():
img = Image.open(img_path)
img_height = img.height
img_width = img.width
print(f"loaded image with width x heigth: {img_width} x {img_height}")
if args.color_format == "CF_TRUE_COLOR_ALPHA" and args.binary_format == "ARGB8888":
buf = bytearray(img_height*img_width*4) # 4 bytes (32 bit) per pixel
for y in range(img_height):
Expand Down

0 comments on commit 3620f73

Please sign in to comment.