Looking at the Magick++ documentation (here), I see no mention of a resize() function. The exception is that it is referenced in the notes of the filterType property (here.) Am I missing something?
I've been using sample to scale my images down and have not been impressed with the results. While we're on the subject, can someone explain to me the difference between sample() and what would be resize()?
No resize() only sample() and scale()? [Magick++]
Use zoom(). Its an alias for resizing an image. Sampling samples an image and does not introduce any additionals colors into the image. Resizing uses an image filter and does introduce new colors into the image and generally does a better job than sampling.
Last edited by magick on 2006-06-22T17:23:24-07:00, edited 1 time in total.
Re: No resize() only sample() and scale()? [Magick++]
The source to the complete ImageMagick distribution is available from the home page, http://www.imagemagick.org. The resizing algorithms are in the ImageMagick-6.3.2/magick/resize.c source module.