Tagged Questions
5
votes
1answer
214 views
Redirect terminal output to image file
I need to programmatically run some unix commands and get the output in a image file, the format could be png or jpeg (jpg).
The commands are run in an AIX (IBM *nix) machine. I don't have ...
4
votes
1answer
358 views
How can I generate CMYK images via the command line under Linux?
I have an application I have developed which is generating RGB PNG images with text on them via imageMagic, like so:
convert -size 1000x1000 -density 300 xc:white -pointsize 24 \
-fill "rgb(0,0,0)" ...
2
votes
1answer
777 views
Convert a folder of images into a multi-page pdf file usind command line tools?
I have a folder with 100 jpg images. I want to convert these images into a multi-page pdf file, with all the images (cropped to A4 size). They are already in the correct rotation.
Which tools should ...
3
votes
1answer
1k views
Resizing and croping images to an aspect ratio of 6x4 with width of 1024 pixels
I have a mixed set of images, each one has a slightly different resolution with a slightly different aspect ratio from other images.
I have tried using commands like
convert -resize
and
convert ...
4
votes
4answers
6k views
pdf to jpg without quality loss; gscan2pdf
When I convert a pdf file to bunch of jpg files using
convert -quality 100 file.pdf page_%04d.jpg
I have appreciable quality loss.
However if I do the following, there is no (noticeable) quality ...
3
votes
2answers
451 views
Oneliner for slicing an image?
I'm looking for a oneliner command that would slice an image into given proportions.
Say input would be filename and slice dimensions. Are there any standard command-line tools for this? I tried ...
2
votes
1answer
531 views
Montage together five gifs
I have five gifs all with the same number of frames and the same framerate. Is it possible to montage these together into one gif where each frame is similar to a normal montage of static images and ...