I am new to working with ImageMagick and happy to report the first bug i noticed!
I chose the ImageMagick library because i'm working in Visual Studio 2017 and OpenCV and i would like to save one OpenCV's Mat image in pyramid TIFF, because it is going to be very big in size (>1GB). Currenlty, i'm just using Magick++ API, to save in TIFF and then convert it with "convert" Windows command. The issue is that, when i use the command "
Code: Select all
convert -debug all in.tiff -define tiff:tile-geometry=256x256 ptif:out.tiff
((2783, 3527),
(1391, 1763),
(695, 881),
(347, 440),
(173, 220),
(86, 110),
(43, 55))
I want to underline that i am using exactly the same ImageMagick version 7.0.7-39_64 in both Windows and linux.
Can you please help me?