0
votes
1answer
34 views

imagemagick mogrify cut part of image out

If I have an image similar to this: --------------------------------- - xxxxxxxxxx - - x x - - xxxxxxxxxx - ...
0
votes
0answers
73 views

Image cropping with absolute pixel values

I'm trying to crop a small part of an image. I used C++ ImageMagick command for this as below: convert image.jpg -crop 6x6+16+16 +repage image_crop.jpg However, when I try to compare pixel values in ...
0
votes
1answer
72 views

Imagemagick Mogrify crop output name

When using mogrify -crop 500x500 *.jpg I get output as *-1.jpg, *-2.jpg, *-3.jpg, *-4.jpg Is it possible to change so that it gets a different separator. eg. underscore? output: *_1.jpg, *_2.jpg, ...
0
votes
1answer
56 views

How to resize an image with Rmagick crop if necessary.

I'm trying to create an image server that is riapi (https://github.com/riapi/riapi/blob/master/level-1.md) compliant. One of the required resize modes is crop (the image will be minimally cropped ...
1
vote
1answer
357 views

How do I crop an animated gif using ImageMagick?

There's plenty of information about cropping images, but attempting to crop (or trim) animations produces strange results. Sometimes they flicker, or come with extra frames, or some frames crop ...
-1
votes
2answers
690 views

PHP Resize image down and crop using imagemagick

I'm trying to downsize image uploaded by users at the time of upload. This is no problem but I want to get specific with sizes now. I'm looking for some advice on an algorithm im struggling to ...
0
votes
0answers
24 views

How to clip an image section and add it to another image with imagemagick?

What I am trying to achieve is the following: I have a blank destination.jpg image and a source.jpg image. I want to be able to take a rect section from the source and place it at the destination.jpg ...
4
votes
1answer
543 views

Using imagemagick how can i slice up an image into several separate images?

Please consider following example: The source image consists of 6 areas that need to be sliced up into 6 separate images. How can I get the desired output using imagemagick. I tried to understand ...
1
vote
1answer
389 views

How to crop margin in imagemagick?

I have many images (*.pdf) that originally do not have margin. The files are in various sizes but usually from 8000x4000 to 20000x14000 px. I use this command to convert them to jpeg: for /r %x in ...
2
votes
2answers
221 views

Find circle and point along circle?

I have the following image ontop of an image that is exactly 424x318 And it is wrapped in a div that is 444x338. And I have a "cropping tool" (the circle center piece) that is 185x185, BUT can ...
2
votes
1answer
382 views

ImageMagick Crop Square from Circle?

I have a 424x318 image that I "draw" a circle into and leave the rest transparent. I want to then take that circle and crop it out. How can I do this? My function (the bash variables are just the ...
0
votes
1answer
2k views

set unwanted color to transparent

let say photoA got 100 color, i want to generate a transparent photoB with only 10 wanted colors. by using -transparent of 90 colors is too troublesome, any idea ? thanks TobiasE, your answer is ...
2
votes
1answer
363 views

Why does cropping behave like that?

I've got an image with dimensions 126x75: (rdb:1) p image.width 126 (rdb:1) p image.height 57 Now I want to crop it down to 50x50, beginning at the north west (top left corner). So I tried that ...
1
vote
1answer
2k views

Cropping an image with a focus area (face) using ImageMagick

I'm struggling to find the right approach to resize and crop and image, with a focus area. In my case the focus area is a face detected in the image, and I need to make sure that this area is visible ...
1
vote
1answer
176 views

Image to text conoversion: how to crop single words to single files?

I need to do something similar to this How to write a bash script that cuts images into pieces using image magick? But I dont' know in advance where the areas are and their size: I need to determine ...
1
vote
3answers
380 views

script for cropping images

I have many (about 1000) images (printscreens), and I need to crop these images (all cropped images are in the same region in the full image). How can I do this in php? Or maybe GIMP is supporting ...