Difference between revisions of "PascalMagick"

From Lazarus wiki
Jump to navigationJump to search
m
Line 12: Line 12:
  
  
The MagickWand API is the recommended interface by the ImageMagick team. It is an easy to use programming interface for using the suite. There is also the MagickCore API, a low-level interface.
+
The MagickWand API is the recommended interface by the ImageMagick team. It is an easy to use programming interface for using the suite. There is also the MagickCore API, a low-level interface. Specificaly, this page is about the Pascal port of the MagickWand API. This port is a translation of the c header files witch for the MagickWand c bindings.
  
 
Features and Capabilities:
 
Features and Capabilities:
Line 25: Line 25:
 
* Decorate an image with a border or frame
 
* Decorate an image with a border or frame
 
* Describe the format and characteristics of an image
 
* Describe the format and characteristics of an image
 +
  
 
===Screenshot===
 
===Screenshot===
Line 36: Line 37:
 
BSD-style and compatible with the GLP.
 
BSD-style and compatible with the GLP.
  
You can read the Licence [http://www.imagemagick.org/script/license.php here]
+
You can read the Licence [http://www.imagemagick.org/script/license.php here].
 
   
 
   
 
===Download===
 
===Download===
 +
 +
  
 
===CVS===
 
===CVS===
 +
 +
  
 
===Bug reporting/Featurerequest===
 
===Bug reporting/Featurerequest===
 +
 +
Tests are necessary to verify if the bindings work with all versions of ImageMagick.
  
 
===Change Log===
 
===Change Log===

Revision as of 17:32, 19 December 2005

About

About ImageMagick


ImageMagick® is a free software suite developed to create, edit, and compose bitmap images. It supports a huge variety of formats (over 90) including formats like GIF, JPEG, JPEG-2000, PNG, PDF, PhotoCD, TIFF, and DPX. Images can be cropped, colors can be changed, various effects can be applied, images can be rotated and combined, and text, lines, polygons, ellipses and Bézier curves can be added to images and stretched and rotated.

The suite runs on all major operating systems and it can also be used from the command line and it´s command line tools package is one of Linux standard packages, being distributed with many distributions.


About MagickWand


The MagickWand API is the recommended interface by the ImageMagick team. It is an easy to use programming interface for using the suite. There is also the MagickCore API, a low-level interface. Specificaly, this page is about the Pascal port of the MagickWand API. This port is a translation of the c header files witch for the MagickWand c bindings.

Features and Capabilities:

  • Convert an image from one format to another (e.g. PNG to JPEG)
  • Resize, rotate, sharpen, color reduce, or add special effects to an image
  • Create a montage of image thumbnails
  • Create a transparent image suitable for use on the Web
  • Turn a group of images into a GIF animation sequence
  • Create a composite image by combining several separate image
  • Draw shapes or text on an image
  • Decorate an image with a border or frame
  • Describe the format and characteristics of an image


Screenshot

Author

Felipe Monteiro de Carvalho

License

BSD-style and compatible with the GLP.

You can read the Licence here.

Download

CVS

Bug reporting/Featurerequest

Tests are necessary to verify if the bindings work with all versions of ImageMagick.

Change Log

  • 14.12.05 Began working on a pascal port for the c headers

Status: Underconstruction

Installation

Help