Discussion:
Crop images and composing them
Sandro
2011-04-01 16:05:00 UTC
Permalink
Dear all,
I have a question. In CSS file I have this file:
Loading Image...

is it possible to crop the first button, similar to this CSS command:
-moz-image-region: rect(0,16,16,0);
(top, right, bottom, left)

I want to obtain a 64x16 PNG adding the cropped button as fourth button.
Thanks

-moz-image-region
Sandro
Anthony Thyssen
2011-04-04 02:54:24 UTC
Permalink
On Fri, 01 Apr 2011 18:05:00 +0200,
magick-users-***@imagemagick.org wrote :
|
| Dear all,
| I have a question. In CSS file I have this file:
| http://imgby.com/close.png
|
| is it possible to crop the first button, similar to this CSS command:
| -moz-image-region: rect(0,16,16,0);
| (top, right, bottom, left)
|
| I want to obtain a 64x16 PNG adding the cropped button as fourth button.
| Thanks
|
| -moz-image-region
| Sandro
|
|
I prefer to answer on the IM forum rather than the mail list, so that
people can search and see other peoples answers. However...

YES
convert close.png -crop 16x16+0+0 +repage first_button.png

See ImageMagick Exmaples Crop
http://www.imagemagick.org/Usage/crop/#crop



If you want to append the first button, this may be easier...

convert close -crop 16x16 +repage \( -clone 0 \) +append new_image.png


This uses Tile crop to separate all the buttons
http://www.imagemagick.org/Usage/crop/#crop_tile

Duplicates the first button (using a older method)
http://www.imagemagick.org/Usage/basics/#clone

then appends them together again
http://www.imagemagick.org/Usage/layers/#append



Anthony Thyssen ( System Programmer ) <***@griffith.edu.au>
--------------------------------------------------------------------------
Look, you don't have to believe everything you hear about werewolves.
We're human, just like everyone else. Most of the time.
-- Terry Pratchett, "Men At Arms"
--------------------------------------------------------------------------
Anthony's Castle http://www.ict.griffith.edu.au/anthony/

Loading...