This repository was archived by the owner on Feb 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathOptions.h
299 lines (228 loc) · 10.6 KB
/
Options.h
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
// This may look like C code, but it is really -*- C++ -*-
//
// Copyright Bob Friesenhahn, 1999, 2000, 2001, 2002, 2003
//
// Definition of Options
//
// Options which may be applied to an image. These options are the
// equivalent of options supplied to ImageMagick utilities.
//
// This is an internal implementation class and is not part of the
// Magick++ API
//
#if !defined(Magick_Options_header)
#define Magick_Options_header
#include "Include.h"
#include <string>
#include "Color.h"
#include "Geometry.h"
#include "Drawable.h"
namespace Magick
{
class Image;
class Options
{
public:
Options( void );
Options( const Options& options_ );
~Options();
// Remove pixel aliasing
void antiAlias( bool flag_ );
bool antiAlias( void ) const;
// Join images into a single multi-image file
void adjoin ( bool flag_ );
bool adjoin ( void ) const;
// Image background color
void backgroundColor ( const Color &color_ );
Color backgroundColor ( void ) const;
// Name of texture image to tile onto the image background
void backgroundTexture ( const std::string &backgroundTexture_ );
std::string backgroundTexture ( void ) const;
// Image border color
void borderColor ( const Color &color_ );
Color borderColor ( void ) const;
// Text bounding-box base color (default none)
void boxColor ( const Color &boxColor_ );
Color boxColor ( void ) const;
// Colors within this distance are considered equal
void colorFuzz ( double fuzz_ );
double colorFuzz ( void ) const;
// Image colorspace scheme
void colorspaceType ( ColorspaceType colorspace_ );
ColorspaceType colorspaceType ( void ) const;
// Compression type ( NoCompression, BZipCompression,
// FaxCompression, JPEGCompression, LZWCompression,
// RLECompression, or ZipCompression )
void compressType ( CompressionType compressType_ );
CompressionType compressType ( void ) const;
// Enable printing of debug messages from ImageMagick
void debug ( bool flag_ );
bool debug ( void ) const;
// Vertical and horizontal resolution in pixels of the image
void density ( const Geometry &geomery_ );
Geometry density ( void ) const;
// Image depth (8 or 16)
void depth ( size_t depth_ );
size_t depth ( void ) const;
// Endianness (little like Intel or big like SPARC) for image
// formats which support endian-specific options.
void endian ( EndianType endian_ );
EndianType endian ( void ) const;
// Image filename to read or write
void file ( FILE *file_ );
FILE* file ( void ) const;
// Image filename to read or write
void fileName ( const std::string &fileName_ );
std::string fileName ( void ) const;
// Color to use when filling drawn objects
void fillColor ( const Color &fillColor_ );
Color fillColor ( void ) const;
// Fill pattern
void fillPattern ( const MagickCore::Image *fillPattern_ );
const MagickCore::Image* fillPattern ( void ) const;
// Rule to use when filling drawn objects
void fillRule ( const FillRule &fillRule_ );
FillRule fillRule ( void ) const;
// Font name
void font ( const std::string &font_ );
std::string font ( void ) const;
// Font point size
void fontPointsize ( double pointSize_ );
double fontPointsize ( void ) const;
std::string format ( void ) const;
// Image interlace scheme
void interlaceType ( InterlaceType interlace_ );
InterlaceType interlaceType ( void ) const;
// Image format to write or read
void magick ( const std::string &magick_ );
std::string magick ( void ) const;
// Transparent color
void matteColor ( const Color &matteColor_ );
Color matteColor ( void ) const;
// Write as a monochrome image
void monochrome ( bool monochromeFlag_ );
bool monochrome ( void ) const;
// Preferred size and location of an image canvas.
void page ( const Geometry &pageSize_ );
Geometry page ( void ) const;
// Desired image quality factor
void quality ( size_t quality_ );
size_t quality ( void ) const;
// Maximum number of colors to quantize to
void quantizeColors ( size_t colors_ );
size_t quantizeColors ( void ) const;
// Colorspace to quantize in.
void quantizeColorSpace ( ColorspaceType colorSpace_ );
ColorspaceType quantizeColorSpace ( void ) const;
// Dither image during quantization.
void quantizeDither ( bool ditherFlag_ );
bool quantizeDither ( void ) const;
// Quantization tree-depth
void quantizeTreeDepth ( size_t treeDepth_ );
size_t quantizeTreeDepth ( void ) const;
// Units of resolution to interpret density
void resolutionUnits ( ResolutionType resolutionUnits_ );
ResolutionType resolutionUnits ( void ) const;
// Image sampling factor
void samplingFactor ( const std::string &samplingFactor_ );
std::string samplingFactor ( void ) const;
// Image size (required for raw formats)
void size ( const Geometry &geometry_ );
Geometry size ( void ) const;
// enabled/disable stroke anti-aliasing
void strokeAntiAlias( bool flag_ );
bool strokeAntiAlias( void ) const ;
// Color to use when drawing object outlines
void strokeColor ( const Color &strokeColor_ );
Color strokeColor ( void ) const;
// Control the pattern of dashes and gaps used to stroke
// paths. The strokeDashArray represents a list of numbers that
// specify the lengths of alternating dashes and gaps in user
// units. If an odd number of values is provided, then the list of
// values is repeated to yield an even number of values.
void strokeDashArray ( const double* strokeDashArray_ );
const double* strokeDashArray ( void ) const;
// While drawing using strokeDashArray, specify distance into the dash
// pattern to start the dash (default 0).
void strokeDashOffset ( double strokeDashOffset_ );
double strokeDashOffset ( void ) const;
// Specify the shape to be used at the end of open subpaths when
// they are stroked. Values of LineCap are UndefinedCap, ButtCap,
// RoundCap, and SquareCap.
void strokeLineCap ( LineCap lineCap_ );
LineCap strokeLineCap ( void ) const;
// Specify the shape to be used at the corners of paths (or other
// vector shapes) when they are stroked. Values of LineJoin are
// UndefinedJoin, MiterJoin, RoundJoin, and BevelJoin.
void strokeLineJoin ( LineJoin lineJoin_ );
LineJoin strokeLineJoin ( void ) const;
// Specify miter limit. When two line segments meet at a sharp
// angle and miter joins have been specified for 'lineJoin', it is
// possible for the miter to extend far beyond the thickness of
// the line stroking the path. The miterLimit' imposes a limit on
// the ratio of the miter length to the 'stroke_width'. The default
// value of this parameter is 4.
void strokeMiterLimit ( size_t miterLimit_ );
size_t strokeMiterLimit ( void ) const;
// Pattern image to use for stroked outlines
void strokePattern ( const MagickCore::Image *strokePattern_ );
const MagickCore::Image* strokePattern ( void ) const;
// Stroke width for drawing vector objects (default one)
void strokeWidth ( double strokeWidth_ );
double strokeWidth ( void ) const;
void subImage ( size_t subImage_ );
size_t subImage ( void ) const;
// Sub-frame number to return
void subRange ( size_t subRange_ );
size_t subRange ( void ) const;
// Annotation text encoding (e.g. "UTF-16")
void textEncoding ( const std::string &encoding_ );
std::string textEncoding ( void ) const;
void tileName ( const std::string &tileName_ );
std::string tileName ( void ) const;
// Image representation type
void type ( const ImageType type_ );
ImageType type ( void ) const;
// Origin of coordinate system to use when annotating with text or drawing
void transformOrigin ( double tx_, double ty_ );
// Reset transformation parameters to default
void transformReset ( void );
// Rotation to use when annotating with text or drawing
void transformRotation ( double angle_ );
// Scale to use when annotating with text or drawing
void transformScale ( double sx_, double sy_ );
// Skew to use in X axis when annotating with text or drawing
void transformSkewX ( double skewx_ );
// Skew to use in Y axis when annotating with text or drawing
void transformSkewY ( double skewy_ );
// Return verbose information about an image, or an operation
void verbose ( bool verboseFlag_ );
bool verbose ( void ) const;
void view ( const std::string &view_ );
std::string view ( void ) const;
// Virtual pixel method.
void virtualPixelMethod ( VirtualPixelMethod virtual_pixel_method_ );
VirtualPixelMethod virtualPixelMethod ( void ) const;
// X11 display name
void x11Display ( const std::string &display_ );
std::string x11Display ( void ) const;
//
// Internal implementation methods. Please do not use.
//
MagickCore::DrawInfo* drawInfo( void );
MagickCore::ImageInfo * imageInfo( void );
MagickCore::QuantizeInfo * quantizeInfo( void );
// Construct using raw structures
Options( const MagickCore::ImageInfo* imageInfo_,
const MagickCore::QuantizeInfo* quantizeInfo_,
const MagickCore::DrawInfo* drawInfo_ );
protected:
private:
// Assignment not supported
Options& operator= ( const Options& );
MagickCore::ImageInfo* _imageInfo;
MagickCore::QuantizeInfo* _quantizeInfo;
MagickCore::DrawInfo* _drawInfo;
};
} // namespace Magick
#endif // Magick_Options_header