[
About ImageMagick
] [ Command-line Tools Processing Options Usage Program Interfaces MagickWand MagickCore PerlMagick Magick++ Architecture ] [ Install from Source Unix Windows Binary Releases Unix Mac OS X Windows Resources ] [ Download ] [ Site Map Links ] [ Sponsors: ] |
AdaptiveResizeImage() adaptively resize image with pixel resampling. The format of the AdaptiveResizeImage method is: Image *AdaptiveResizeImage(const Image *image, const unsigned long columns,const unsigned long rows, ExceptionInfo *exception) A description of each parameter follows: imagethe image. columnsthe number of columns in the resized image. rowsthe number of rows in the resized image. exceptionReturn any errors or warnings in this structure. MagnifyImage() is a convenience method that scales an image proportionally to twice its size. The format of the MagnifyImage method is: Image *MagnifyImage(const Image *image,ExceptionInfo *exception) A description of each parameter follows: imagethe image. exceptionReturn any errors or warnings in this structure. MinifyImage() is a convenience method that scales an image proportionally to half its size. The format of the MinifyImage method is: Image *MinifyImage(const Image *image,ExceptionInfo *exception) A description of each parameter follows: imagethe image. exceptionReturn any errors or warnings in this structure. ResampleImage() resize image in terms of its pixel size, so that when displayed at the given resolution it will be the same size in terms of real world units as the original image at the original resolution. The format of the ResampleImage method is: Image *ResampleImage(Image *image,const double x_resolution, const double y_resolution,const FilterTypes filter,const double blur, ExceptionInfo *exception) A description of each parameter follows: imagethe image to be resized to fit the given resolution. x_resolutionthe new image x resolution. y_resolutionthe new image y resolution. filterImage filter to use. blurthe blur factor where > 1 is blurry, < 1 is sharp. LiquidRescaleImage() rescales image with seam carving. The format of the LiquidRescaleImage method is: Image *LiquidRescaleImage(const Image *image, const unsigned long columns,const unsigned long rows, const double delta_x,const double rigidity,ExceptionInfo *exception) A description of each parameter follows: imagethe image. columnsthe number of columns in the rescaled image. rowsthe number of rows in the rescaled image. delta_xmaximum seam transversal step (0 means straight seams). rigidityintroduce a bias for non-straight seams (typically 0). exceptionreturn any errors or warnings in this structure. ResizeImage() scales an image to the desired dimensions, using the given filter (see AcquireFilterInfo() ). If an undefined filter is given the filter defaults to Mitchell for a colormapped image, a image with a matte channel, or if the image is enlarged. Otherwise the filter defaults to a Lanczos. ResizeImage() was inspired by Paul Heckbert's "zoom" program. The format of the ResizeImage method is: Image *ResizeImage(Image *image,const unsigned long columns, const unsigned long rows,const FilterTypes filter,const double blur, ExceptionInfo *exception) A description of each parameter follows: imagethe image. columnsthe number of columns in the scaled image. rowsthe number of rows in the scaled image. filterImage filter to use. blurthe blur factor where > 1 is blurry, < 1 is sharp. Typically set this to 1.0. exceptionReturn any errors or warnings in this structure. SampleImage() scales an image to the desired dimensions with pixel sampling. Unlike other scaling methods, this method does not introduce any additional color into the scaled image. The format of the SampleImage method is: Image *SampleImage(const Image *image,const unsigned long columns, const unsigned long rows,ExceptionInfo *exception) A description of each parameter follows: imagethe image. columnsthe number of columns in the sampled image. rowsthe number of rows in the sampled image. exceptionReturn any errors or warnings in this structure. ScaleImage() changes the size of an image to the given dimensions. The format of the ScaleImage method is: Image *ScaleImage(const Image *image,const unsigned long columns, const unsigned long rows,ExceptionInfo *exception) A description of each parameter follows: imagethe image. columnsthe number of columns in the scaled image. rowsthe number of rows in the scaled image. exceptionReturn any errors or warnings in this structure. ThumbnailImage() changes the size of an image to the given dimensions and removes any associated profiles. The goal is to produce small low cost thumbnail images suited for display on the Web. The format of the ThumbnailImage method is: Image *ThumbnailImage(const Image *image,const unsigned long columns, const unsigned long rows,ExceptionInfo *exception) A description of each parameter follows: imagethe image. columnsthe number of columns in the scaled image. rowsthe number of rows in the scaled image. exceptionReturn any errors or warnings in this structure. ZoomImage() creates a new image that is a scaled size of an existing one. It allocates the memory necessary for the new Image structure and returns a pointer to the new image. The Point filter gives fast pixel replication, Triangle is equivalent to bi-linear interpolation, and Mitchel giver slower, very high-quality results. See Graphic Gems III for details on this algorithm. The filter member of the Image structure specifies which image filter to use. Blur specifies the blur factor where > 1 is blurry, < 1 is sharp. The format of the ZoomImage method is: Image *ZoomImage(const Image *image,const unsigned long columns, const unsigned long rows,ExceptionInfo *exception) A description of each parameter follows: imagethe image. columnsAn integer that specifies the number of columns in the zoom image. rowsAn integer that specifies the number of rows in the scaled image. exceptionReturn any errors or warnings in this structure. |