I'm using the latest version ImageMagick 7.0.8-49 Q16 x64 2019-06-08 over windows 10
I'm trying to convert a png image to a tiled JP2 image. The online documentation says that i have to write the tile size in brackets after the output file:
https://imagemagick.org/script/jp2.php
Save a tiled JPEG-2000 image:
convert wizard.png 'wizard.png[512x512]'
btw, I think that the documentation has a small typo as the extension of the out file should be jp2.
I've been trying to do this without any result. Executing this command:
Code: Select all
magick convert wizard.png wizard.jp2[512x512]
I tried many combinations, with and without quotation marks, tried to find JPEG-2000 decoding options, but I got no results.
Thanks!