JP2 compression (changes?)
Posted: 2016-09-09T01:58:03-07:00
I've been using ImageMagick version 6.8.6-10 (linux) for a while, converting images for a project from JPEG to JP2
Experimentation showed that this quality level yielded a good visual quality (very little distortion visible to the eye) while also reducing file size compared to the original JPEGs.
Recently I've installed a windows build on another computer, version 7.0.3 (Win64 static at 16 bits-per-pixel component)
I tried to convert images using, but the result was much larger files.
Original image:
Converted image using convert (linux) version 6.8.6-10: 133k
Converted image using magick (windows) version 7.0.3: 701k
What am I doing wrong?
Code: Select all
convert INPUT -format jp2 -quality 50 OUTPUT
Recently I've installed a windows build on another computer, version 7.0.3 (Win64 static at 16 bits-per-pixel component)
I tried to convert images using
Code: Select all
magick INPUT -format jp2 -quality 50 OUTPUT
Original image:
Converted image using convert (linux) version 6.8.6-10: 133k
Converted image using magick (windows) version 7.0.3: 701k
What am I doing wrong?