All Questions
4 questions
3
votes
1
answer
772
views
ImageMagick chop to remove whitespace rows in image
Trying to remove white space rows in an image:
I tried :
convert image_name.png -chop 110x170 + 240x300 chopped.png
as pixels 110-170 and 240-300 need to be cut.
The resulting image should retain ...
2
votes
2
answers
753
views
Copy a circle of image A into image B
I have two images:
a.jpg
b.jpg
Both images are square (100x100 pixel). I want to cut a circle with a radius of 50 from image a.jpg and paste it in the middle of image b.jpg. I want to save the ...
1
vote
1
answer
97
views
Specifying image dimensions like Gimp in ImageMagick
I am editing an image in Gimp with dimensions and size specified as below.
How to use the same parameters in ImageMagick? (I tried something like below, but unable to get the desired output):
...
13
votes
3
answers
9k
views
ImageMagick "color to alpha" (like The GIMP)
I'm trying to do what The GIMP does when selecting "color to alpha" with an actual colour.
I've got an image that has the color #a0132e in it, and I want that converted to transparency. Not only that ...