Fix :
File "/app/lib/python3.11/site-packages/JpegIPTC.py", line 393, in _photoshopIIMBlock
out.append(pack("!H", len(resourceBlock) + 2)) # length
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
struct.error: 'H' format requires 0 <= number <= 65535
2 patches :
- if len(resourceBlock) + 2)) > 65535 : don't try to add itpc data (something wrong)
- in _RawcollectIIMInfo, filter on tag 28