File: README

package info (click to toggle)
imagemagick 4%3A5.4.4.5-1woody6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 20,904 kB
  • ctags: 11,673
  • sloc: ansic: 141,668; cpp: 15,076; sh: 7,495; perl: 2,530; makefile: 1,101; tcl: 459
file content (64 lines) | stat: -rw-r--r-- 2,700 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64

This is Magick++, the object-oriented C++ API to the ImageMagick
image-processing library, the most comprehensive open-source image
processing solution available. Read the release notes for Magick++.

Magick++ supports an object model which is inspired by PerlMagick.
Magick++ executes faster than PerlMagick since it is accessed from a
compiled language rather than from a scripting language. This makes it more
suitable for Web CGI programs which must start-up and execute quickly.
Images support implicit reference counting so that copy constructors and
assignment incur almost no cost. The cost of actually copying an image (if
necessary) is done just before modification and this copy is managed
automatically by Magick++. De-referenced copies are automatically deleted.
The image objects support value (rather than pointer)  semantics so it is
trivial to support multiple generations of an image in memory at one time.

Magick++ provides integrated support for the Standard Template Library (STL)
so that the powerful containers available (e.g. deque, vector, list, and
map)  can be used to write programs similar to those possible with PERL &
PerlMagick. STL-compatable template versions of ImageMagick's list-style
operations are provided so that operations may be performed on multiple
images stored in STL containers.

Documentation

Detailed documentation are provided for all Magick++ classes, class methods,
and template functions which comprise the API.

Obtaining Magick++

Magick++ is included as part of ImageMagick source releases and may be
retrieved via ftp or CVS.

Installation

Once you have the sources available, follow these detailed installation
instructions for UNIX and Windows.

Usage

A helper script named Magick++-config is installed under Unix which assists
with recalling compilation options required to compile and link programs
which use Magick++.  For example, the following command will compile and
link the source file example.cpp to produce the executable example (notice
that quotes are backward quotes):

     c++ `Magick++-config --cxxflags --cppflags --ldflags --libs` -o
     example example.cpp

Windows users may get started by manually editing a project file for one of
the Magick++ demo programs.

Reporting Bugs

Please report any bugs via the Magick++ Bug Tracking System. Questions
regarding usage should be directed to Bob Friesenhahn
<bfriesen@simple.dallas.tx.us>.

Related Packages

Users who are interested in displaying their images at video game rates on a
wide number of platforms and graphic environments (e.g. Windows, X11, BeOS,
and Linux/CGI) may want to try PtcMagick, which provides a simple interface
between Magick++ and OpenPTC.