Hi all, brand new to ImageMagick. After struggling to accomplish my goal in Pil for Python, I decided to give ImageMagick a try. So far, everything worked beautifully, until I found out the two apps I need to use my generated TIFFs won't display them correctly. What I have is a library of floating point RGB value color patches in a Python app I'm developing. I'm passing a command to ImageMagick to create different sequences of colors with 16-bit precision. Here's a basic version of my command:
Code: Select all
convert -size 1920x1080 -depth 16 canvas:black -fill white -draw 'rectangle 100,100 500,500' test.tiff;
Photoshop and Preview have no problems displaying it, but Nuke and Resolve are seeing the second image.
In FFMPEG I'm seeing pix_fmt as ya16le for all the imagemagick TIFFs. When I re-save it in Photoshop (which in turn is viewable in Resolve and Nuke) shows as rgb48le.
I've messed around with both -define tiff:fill-order=msb|lsb and -define tiff:endian=msb|lsb and tried different combinations of msb and lsb. Nothing affects the results. Any ideas would be greatly appreciated, thanks!