Search found 3 matches

by adamsilver
2013-05-07T18:11:05-07:00
Forum: Users
Topic: How can I resize to fixed dimensions?
Replies: 3
Views: 3491

How can I resize to fixed dimensions?

Hello, I searched a lot and I couldn't figure out how to achieve the following: I have a news aggregation service so I am getting images of various dimensions. I have to create a 3 versions of the aggregated story image: 50x50, 150x100 and 278x209. The dimensions must be absolutely what's mentioned ...
by adamsilver
2013-03-25T10:31:02-07:00
Forum: Users
Topic: Cutting x pixels from an image
Replies: 3
Views: 4016

Re: Cutting x pixels from an image

Thank you guys. Anthony's first method worked for me.

Code: Select all

	convert $f -gravity South  -crop 0x28+0+0 +repage label.jpg
	convert $f -gravity South  -chop  0x28  not-labeled.jpg
by adamsilver
2013-03-24T20:51:26-07:00
Forum: Users
Topic: Cutting x pixels from an image
Replies: 3
Views: 4016

Cutting x pixels from an image

Why this is creating many images instead of just two?

Code: Select all

convert input-image.jpg -crop 28x +repage monet_vertical_%d.jpg
I want to get two images; 28 pixels from the base and another image with what's left.

Please help.