0
votes
1answer
33 views

Accessing the tools like gimp(installed at server) from client

I want to create an web application through which i have to access tools like Gimp for my image processing. Is it possible to manage my need with client-server (Gimp at server) approach? I am not ...
0
votes
1answer
132 views

How to remove watermark from TIFFs to improve OCR

I have a bunch of uncompressed bitonal TIF document images. All of them have a watermark in the middle. When I run them through OCR, the text that overlaps with the watermark does not get recognized. ...
1
vote
0answers
82 views

convert an image from sRGB to indexed. Color palette is ~400 colors, final image to use a max of 70 colors

What I want to do: I would like to change an image to indexed, provide the color map, and set the max number of colors in the image to 70 of the provided 400. I would like this final image to be ...
-1
votes
1answer
125 views

Given a pair of images, how to automatically create an animation sequence morphing one image into the other?

Is there a programmatic way to convert two images into an animation sequence (e.g., an animated GIF) like the following example? This image sequence, taken from a http://memrise.com course, doesn't ...
0
votes
0answers
194 views

How can I change lightness hue and partially desaturate an image in ImageMagick?

I have a PNG which (besides a white spot and transparency in the background) is a pretty straight blue. I would like to use convert from ImageMagick to partially desaturate it, so that I can create ...
7
votes
2answers
254 views

Is there a way to make a script that automatically corrects scanned documents?

I often scan handwritten documents to send to colleagues, and need to make corrections to the digital file once it's scanned. (For example, I change mistakes I made on the original document to white.) ...
-1
votes
1answer
155 views

Razor sharp annotation by imagemagic [closed]

I am annotating a banner dynamically by convert command. convert banner.png \ -pointsize 9 \ -font FreeSans.ttf \ -stroke black \ -draw 'text 0,30 "Hello world"' \ ...
1
vote
1answer
2k views

Сonvert image to indexed color use custom palette use console

I have image.png in truecolor, palette.png (N colors, where N>256) or text file, where list RGB color palette. How to get a picture with this palette? If i use imagemagick: convert image.png -remap ...
1
vote
1answer
217 views

Image resizing, maintaing image size - beginner question

Im attempting to resize an image from 480x800 to 320x240. Below are the results. The original image has an oval shaped circle whereas the resized image has a more spherical shape. Is it possible to ...
1
vote
2answers
463 views

How to downsize, scale, and colour-reduce PNGs at the command line? (Linux, Makefile)

From within a Makefile I like to reduce the size of PNGs. I tried first ImageMagick, but while I could resize (down) the images and reduce their colours to 32 (or the depth to 5 bits), the actual ...
0
votes
3answers
582 views

How do you get the rounded corner, gradient-polish iOS icon image effect with imagemagick?

Given a square image, how can you get the iPhone icon effect using ImageMagick's tools?
0
votes
1answer
778 views

ImageMagick - Transparent background - Act like Photoshop's “Magic wand”

I'm trying to convert hundreds of images that Have an unknown subject centered in the image Have a white background I've used ImageMagick's convert utility in the following way convert ...
0
votes
1answer
360 views

Imagemagick or similar for scripted image enhancement

I found the following algorithm to work fairly well for enhancement of various images of whiteboards, etc: duplicate the layer, make sure the top layer is active (gaussian)blur the new layer. You ...
4
votes
1answer
1k views

Resizing screenshots/screen captures for inclusion in Beamer

Sorry, this may or may not be a programming question directly, but I am trying to resize screenshots with Imagemagick and Gimp to include in a Beamer presentation, but it comes out even blurrier than ...