Search found 11064 matches

by magick
2006-03-25T20:51:04-07:00
Forum: Users
Topic: operations order and resize
Replies: 6
Views: 22487

Would be helpful if the category was shown on the command line, i.e., Agreed. Grab the source to the command line option web page, make your edits, and post the updates here and we will get it into the main ImageMagick web site. ImageMagick is a community project and depends on users like yourself ...
by magick
2006-03-25T15:23:01-07:00
Forum: Users
Topic: operations order and resize
Replies: 6
Views: 22487

Would be nice it the documentation stated the type for each command
.

We agree-- oh wait we've already done that, RTFM: http://www.imagemagick.org/script/comma ... hp#setting
by magick
2006-03-25T12:16:21-07:00
Forum: Users
Topic: How can I show histogram of an image?
Replies: 1
Views: 11196

You can use MagickLib::GetNumberColors() to write the image histogram to a file or you can iterate over the image pixels and create the histogram yourself.
by magick
2006-03-25T12:13:19-07:00
Forum: Users
Topic: ? interpolation types in Magick++
Replies: 0
Views: 9337

Use the filterType() method to specify the filter type to be used when resizing an image.
by magick
2006-03-25T12:09:57-07:00
Forum: Users
Topic: Converting EPS to transparent GIF
Replies: 4
Views: 23208

Your Postscript has CMYK colors so it's rendered with a CMYK device rather than an alpha device. However, with the latest ImageMagick release, 6.2.6-6, we got the desired result by forcing an alpha device as follows: convert -colorspace rgb clipart.eps transparent.gif 6.2.6-6 will mirror world-wide ...
by magick
2006-03-25T10:42:18-07:00
Forum: Users
Topic: operations order and resize
Replies: 6
Views: 22487

The -filter option is a setting not an operator. It is required before the -resize option.
by magick
2006-03-25T10:38:28-07:00
Forum: Bugs
Topic: SVG Text transformations
Replies: 0
Views: 13432

Looks like a bug and we have a patch already. Look for an update in the next point release.
by magick
2006-03-24T16:40:44-07:00
Forum: Users
Topic: Command line order
Replies: 4
Views: 19626

The -comment option is a setting, whereas, -set is an operator. Use this command:
  • convert input.png -strip -set comment "some new comment" output.png
by magick
2006-03-24T10:04:52-07:00
Forum: Users
Topic: Creating a non-transparent thumbnail from a transparent GIF
Replies: 1
Views: 11775

Use this command to resize your image:
  • convert C:\tiscali.gif +matte -thumbnail 40x40 C:\tiscali_sm.gif
by magick
2006-03-24T09:59:08-07:00
Forum: Users
Topic: image resolution and geometry is the same thing?
Replies: 1
Views: 10607

To convert a 30x512 image to 512x512, use this example:
  • convert image.jpg -resize 512x512! resize.jpg
by magick
2006-03-23T21:06:02-07:00
Forum: Users
Topic: Converting EPS to transparent GIF
Replies: 4
Views: 23208

ImageMagick supports transparent Postscript to GIF if you have a modern version of ImageMagick and the file only contains one page and there is a DSC comment within the file specifying a language level of 2.
by magick
2006-03-23T18:35:03-07:00
Forum: Users
Topic: Question about command defaults
Replies: 3
Views: 14272

The image attributes have defaults, like the default bordercolor. For image operators you need to specify a parameter. Most of the kernel operators will choose a good radius and sigma for the kernel if the parameter is 0x1 (e.g. -unsharp 0x1).
by magick
2006-03-23T15:12:49-07:00
Forum: Users
Topic: showing an image directly
Replies: 5
Views: 19953

You can display an image directly with the DisplayImage() method (depends on the language interface) but it does require an X11 server.
by magick
2006-03-23T13:22:57-07:00
Forum: Users
Topic: change resolution
Replies: 1
Views: 10721

Use the -morph option to add in-between frames to your image sequence.
by magick
2006-03-23T12:58:21-07:00
Forum: Users
Topic: scale text to fit
Replies: 2
Views: 19383

You need to add the -composite option to tell ImageMagick to composite the text over the image.