Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

magick-config(1) [redhat man page]

Magick-Config(1)					      General Commands Manual						  Magick-Config(1)

NAME
Magick-config - get information about the installed version of ImageMagick SYNOPSIS
Magick-config [--cflags] [--cppflags] [--exec-prefix] [--ldflags] [--libs] [--prefix] [--version] DESCRIPTION
Magick-config prints the compiler and linker flags required to compile and link programs that use the ImageMagick Application Programmer Interface. EXAMPLES
To print the version of the installed distribution of ImageMagick, use: Magick-config --version To compile a program that calls the ImageMagick Application Programmer Interface, use: cc `Magick-config --cflags --cppflags --ldflags --libs` program.c OPTIONS
--cflags Print the compiler flags that were used to compile libMagick. --cppflags Print the preprocessor flags that are needed to find the ImageMagick C include files and defines to ensure that the ImageMagick data structures match between your program and the installed libraries. --exec-prefix Print the directory under which target specific binaries and executables are installed. --ldflags Print the linker flags that are needed to link with the ImageMagick library. --libs Print the linker flags that are needed to link a program with libMagick. --version Print the version of the ImageMagick distribution to standard output. COPYRIGHT
Copyright (C) 2002 ImageMagick Studio, a non-profit organization dedicated to making software imaging solutions freely available. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files ("ImageMagick"), to deal in ImageMagick without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of ImageMagick, and to permit persons to whom the ImageMagick is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of ImageMagick. The software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of mer- chantability, fitness for a particular purpose and noninfringement. In no event shall ImageMagick Studio be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with ImageMagick or the use or other dealings in ImageMagick. Except as contained in this notice, the name of the ImageMagick Studio shall not be used in advertising or otherwise to promote the sale, use or other dealings in ImageMagick without prior written authorization from the ImageMagick Studio. AUTHORS
John Cristy, ImageMagick Studio ImageMagick 2 May 2002 Magick-Config(1)

Check Out this Related Man Page

CGI::Uploader::Transform::ImageMagick(3pm)		User Contributed Perl Documentation		CGI::Uploader::Transform::ImageMagick(3pm)

NAME
CGI::Uploader::Transform::ImageMagick - generate thumbnails with ImageMagick METHODS
gen_thumb() use CGI::Uploader::Transform::ImageMagick; As a class method: ($thumb_tmp_filename) = CGI::Uploader::Transform::ImageMagick->gen_thumb({ filename => $orig_filename, w => $width, h => $height }); Within a CGI::Uploader "spec": gen_files => { my_thumb => gen_thumb({ w => $width, h => $height }), } Looking for a different syntax? See "BACKWARDS COMPATIBILITY" This function creates a copy of given image file and resizes the copy to the provided width and height. "gen_thumb" can be called as object or class method. As a class method, there there is no need to call "new()" before calling this method. Graphics::Magick is used as the first choice image service module. Image::Magick is tried next. Input: filename - filename of source image w - max width of thumbnail h - max height of thumbnail One or both of "w" or "h" is required. Output: - filename of generated tmp file for the thumbnail - the initialized image generation object. (You generally shouldn't need this) BACKWARDS COMPATIBILITY
These older, more awkward syntaxes are still supported: As a class method: ($thumb_tmp_filename) = CGI::Uploader::Transform::ImageMagick->gen_thumb( $orig_filename, [ w => $width, h => $height ] ); In a "CGI::Uploader" "spec": 'my_img_field_name' => { transform_method => &gen_thumb, params => [ w => 100, h => 100 ], } 1; perl v5.10.0 2009-04-27 CGI::Uploader::Transform::ImageMagick(3pm)
Man Page