1
vote
1answer
30 views

How do I combine single page tif files into a multi-page tif?

I have a series of single-page .tif files and would like to transform them into a multipage .tif. How do I do that? Ubuntu 12.10
6
votes
1answer
384 views

Does “diff” exist for images?

You can compare two text files very easy with diff and even better with meld: If you use diff for images, you get an example like this: $ diff zivi-besch.tif zivildienst.tif Binary files ...
3
votes
2answers
596 views

Is there a GUI to convert/extract images to/from pdf?

I mean something like a graphical interface / front end for Imagemagick or a simpler application that would allow converting/extracting images through the interface (not in the Terminal).
1
vote
1answer
85 views

Why my computer fails when converting many images in Imagemagick with one command?

After updating to Precise had a few times the following mishap: when I try to convert to pdf many (100, 200) jpegs or pngs, my system gets completely stuck and need hard reboot. Or, more fortunately, ...
0
votes
1answer
73 views

Color-leveling an image via command-line

From a script, I'm trying to apply some color levels to a grayscale .tiff image (the same as I would do in Gimp). I've tried using ImageMagick's convert tool: convert input.tiff -level 102,200,0.85 ...
2
votes
1answer
1k views

Resize large images with mogrify (ImageMagick) but leave small images unaffected

Images can be resized using mogrify from the ImageMagick suite: `mogrify -resize 256x256 *.jpg` But this will resize images so that the largest dimension is 256px, including images that are smaller ...