Page 1 of 1
exr to jpg - ignore exr bounding box
Posted: 2019-05-09T11:25:06-07:00
by mrCatfish
Hi, there seems to be a bug in reading exrs with embedded bounding box and converting to a format that does not support alpha.
Please see this thread:
http://www.imagemagick.org/discourse-se ... f596cba877
Re: exr to jpg - ignore exr bounding box
Posted: 2019-05-11T05:29:09-07:00
by magick
Try
Code: Select all
convert -background none solarSystem.1116.exr solarSystem.jpg
Is that the expected results?
Re: exr to jpg - ignore exr bounding box
Posted: 2019-05-11T11:54:42-07:00
by fmw42
That seems to work for me.
Code: Select all
magick -background none solarSystem.1116.exr solarSystem.png
Is all transparent background
Code: Select all
magick -background none solarSystem.1116.exr solarSystem.jpg
is all black background
Re: exr to jpg - ignore exr bounding box
Posted: 2019-05-22T06:52:16-07:00
by mrCatfish
You're right, that worked. Thanks very much!