Code: Select all
Version: ImageMagick 6.9.3-7 Q16 x86_64 2016-03-13 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2016 ImageMagick Studio LLC
License: http://www.imagemagick.org/script/license.php
Features: Cipher DPC OpenMP
Delegates (built-in): bzlib fontconfig freetype jp2 lcms pangocairo png tiff x xml zlib
Code: Select all
$ convert -quality 0 -verbose uncompressed.tif -depth 10 -type truecolor -colorspace sRGB uncompressed.jp2
uncompressed.tif TIFF 2048x768 2048x768+0+0 10-bit TrueColor sRGB 5.905MB 0.120u 0:00.129
uncompressed.tif=>uncompressed.jp2 TIFF 2048x768 2048x768+0+0 10-bit TrueColor sRGB 2.657MB 4.220u 0:04.040
Code: Select all
compare -metric PSNR uncompressed.jp2 uncompressed.tif compare.tif
63.2285
Code: Select all
opj_compress -i uncompressed.tif -o uncompressed-2.j2k
[INFO] tile number 1 / 1
[INFO] Generated outfile uncompressed-2.j2k
encode time: 3927 ms
Code: Select all
compare -metric PSNR uncompressed-2.j2k uncompressed.tif compare.tif
inf
Code: Select all
-quality 0 -depth 10 -type truecolor -colorspace sRGB
Am I missing something?