I need a batch process for creating mobile images and decided to use ImageMagick, but, unfortunately, one of my requirements is that the created images are the same for all OSs, as I send them back and forth between my local system (Windows) and the server (Linux). It seems, however, when I call
convert test.jpg -resize 25% test-small.jpg
the process creates different images on both machines. I know this because when I use the checksum, the values are not exactly the same.
Does anyone know why this happened? And maybe somehow get around this, either using another executable file, or passing a parameter that will create the same images through the OS?
source
share