Search found 457 matches

by GreenKoopa
2013-07-10T10:52:29-07:00
Forum: Users
Topic: Photoshop like HUE/Saturation changing
Replies: 13
Views: 9990

Re: Photoshop like HUE/Saturation changing

Snibgo, isn't this similar to GIMP's Hue / Lightness / Saturation control?
by GreenKoopa
2013-07-10T09:36:48-07:00
Forum: Users
Topic: Composite images with a mask
Replies: 5
Views: 4415

Re: Composite images with a mask

convert -size 128x128 canvas:none canvas:#231F20 mask.png -composite output.png
by GreenKoopa
2013-07-10T09:20:58-07:00
Forum: Users
Topic: png to pdf always fits height to 1 page
Replies: 7
Views: 4022

Re: png to pdf always fits height to 1 page

Break the input png into page sized tiles using -crop, then output to pdf. Something like:

Code: Select all

convert -size 943x3331 gradient: in.png
convert in.png -crop 950x1200 +repage out.pdf
There are many ways to crop and to position the tiles on the pages.
by GreenKoopa
2013-07-10T09:02:36-07:00
Forum: Users
Topic: png to pdf always fits height to 1 page
Replies: 7
Views: 4022

Re: png to pdf always fits height to 1 page

This is possible. You would have to -crop the image into tiles before saving the image as a pdf.
by GreenKoopa
2013-07-10T07:32:41-07:00
Forum: Users
Topic: Create Tiff-Files with Watermark from Multipage-PDF
Replies: 1
Views: 1644

Re: Create Tiff-Files with Watermark from Multipage-PDF

Try -layers composite or -draw image.
by GreenKoopa
2013-07-09T10:01:31-07:00
Forum: Users
Topic: JPEG how to make -quality <%> so that it's bound to its max
Replies: 4
Views: 5365

Re: JPEG how to make -quality <%> so that it's bound to its

If it helps, I believe that an unspecified quality defaults to the original quality. What you ask may be possible somehow with the new support for escapes in settings. After all those changes, especially the resize, increasing the quality above the initial one will likely add visual quality. What do...
by GreenKoopa
2013-07-09T09:09:40-07:00
Forum: Users
Topic: JPEG how to make -quality <%> so that it's bound to its max
Replies: 4
Views: 5365

Re: JPEG how to make -quality <%> so that it's bound to its

I understand what you are saying and that makes sense. I don't know if IM can do this (without a simple outside script). Are you otherwise modifying the images, or are you simply reading them in and writing them back out but possibly smaller?
by GreenKoopa
2013-07-09T08:25:44-07:00
Forum: Users
Topic: Check if an image is already optimized for the web
Replies: 7
Views: 5290

Re: Check if an image is already optimized for the web

To reduce the size of a jpeg without modifying the image data: First, toss out the non-image data (metadata) in the file. The thumbnail, camera settings, comment, etc. Second, redo the lossless compression step. Baseline (Huffman) encoding can be optimized, but often isn't because it is more process...
by GreenKoopa
2013-07-09T08:13:03-07:00
Forum: Users
Topic: Annotation Woes
Replies: 13
Views: 6644

Re: Annotation Woes

Oops, there is a bad link in the documentation (in the table of contents). Try
http://www.imagemagick.org/Usage/basics/#image_lists
by GreenKoopa
2013-07-09T08:06:00-07:00
Forum: Users
Topic: Annotation Woes
Replies: 13
Views: 6644

Re: Annotation Woes

A -resize, or any operation, applies to each and every image in the current list. Try ( )
http://www.imagemagick.org/Usage/basics/#image_list
by GreenKoopa
2013-07-07T16:30:48-07:00
Forum: Users
Topic: identify -format %[resolution.x] doesn't match %x
Replies: 5
Views: 4886

Re: identify -format %[resolution.x] doesn't match %x

A bug, but apparently fixed. Your version of IM is extremely old!
by GreenKoopa
2013-07-07T15:04:37-07:00
Forum: Users
Topic: identify -format %[resolution.x] doesn't match %x
Replies: 5
Views: 4886

Re: identify -format %[resolution.x] doesn't match %x

On second look, you were even closer. Did you forget the % (%% in Windows batch)? This is what I get on IM 6.8.5-6: > identify -format "[resolution.x]" SeedImage_9.jpg [resolution.x] > identify -format "%x - %[resolution.x] - %[fx:resolution.x]" SeedImage_9.jpg 72 PixelsPerInch -...
by GreenKoopa
2013-07-07T14:33:01-07:00
Forum: Users
Topic: identify -format %[resolution.x] doesn't match %x
Replies: 5
Views: 4886

Re: identify -format %[resolution.x] doesn't match %x

wfzimmerman wrote:identify -format "[resolution.x]" SeedImage_9.jpg
You were close. The fx expression should be:

identify -format "%[fx:resolution.x]" SeedImage_9.jpg
by GreenKoopa
2013-07-05T17:07:31-07:00
Forum: Users
Topic: Annotation Woes
Replies: 13
Views: 6644

Re: Annotation Woes

You can easily accomplish this on one command line using convert, no temporary files needed.
by GreenKoopa
2013-07-05T05:41:50-07:00
Forum: Users
Topic: Imagemagick create thumbnail
Replies: 13
Views: 15394

Re: Imagemagick create thumbnail

-resize and its geometry argument is very flexible. Try adding the shrink only flag convert image.png -trim +repage -resize 32x32 > -gravity center -background none -extent 32x32 result.png The > character may need to be quoted or escaped on your platform. For other flags see: http://www.imagemagick...