A lot of websites use it.
See a website automatically convert an image you upload to a thumbnail? It's probably ImageMagick, sometimes working alongside with stuff like PHP GD.
Search found 3 matches
- 2013-09-13T21:12:13-07:00
- Forum: Kudos and Rants
- Topic: I know they're there...but who the heck is using ImageMagick
- Replies: 8
- Views: 167683
- 2013-09-13T18:44:51-07:00
- Forum: Users
- Topic: Split an image in half, save as two.
- Replies: 2
- Views: 8248
Re: Split an image in half, save as two.
what do you mean by "resolution"? Is that the number of pixels or the dpi?
See string formats %x and %y for dpi. If just the image width or height then %w or %h
ww=`identify -format "%w" yourimage`
or
ww=`convert yourimage -format "%w" info:`
http://www.imagemagick.org/script/escape.php ...
See string formats %x and %y for dpi. If just the image width or height then %w or %h
ww=`identify -format "%w" yourimage`
or
ww=`convert yourimage -format "%w" info:`
http://www.imagemagick.org/script/escape.php ...
- 2013-09-13T16:00:16-07:00
- Forum: Users
- Topic: Split an image in half, save as two.
- Replies: 2
- Views: 8248
Split an image in half, save as two.
I have a bunch of manga pages, they're all the same size, I need them split in half vertically down the middle and the result saved as two individual images.
I could do the automation in Bash, just need some help with the ImageMagick part, I would really appreciate it. Here's an example of an image ...
I could do the automation in Bash, just need some help with the ImageMagick part, I would really appreciate it. Here's an example of an image ...