File: _main.cpp

package info (click to toggle)
pythonmagick 0.7-5
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,284 kB
  • ctags: 377
  • sloc: sh: 9,133; cpp: 2,358; perl: 279; makefile: 100; python: 11
file content (167 lines) | stat: -rw-r--r-- 6,894 bytes parent folder | download
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
// Include =====================================================================
#include <boost/python/module.hpp>

// Exports =====================================================================
void Export_pyste_src_VPath();
void Export_pyste_src_TypeMetric();
void Export_pyste_src_Pixels();
void Export_pyste_src_PathSmoothQuadraticCurvetoRel();
void Export_pyste_src_PathSmoothQuadraticCurvetoAbs();
void Export_pyste_src_PathSmoothCurvetoRel();
void Export_pyste_src_PathSmoothCurvetoAbs();
void Export_pyste_src_PathQuadraticCurvetoRel();
void Export_pyste_src_PathQuadraticCurvetoArgs();
void Export_pyste_src_PathQuadraticCurvetoAbs();
void Export_pyste_src_PathMovetoRel();
void Export_pyste_src_PathMovetoAbs();
void Export_pyste_src_PathLinetoVerticalRel();
void Export_pyste_src_PathLinetoVerticalAbs();
void Export_pyste_src_PathLinetoRel();
void Export_pyste_src_PathLinetoHorizontalRel();
void Export_pyste_src_PathLinetoHorizontalAbs();
void Export_pyste_src_PathLinetoAbs();
void Export_pyste_src_PathCurvetoRel();
void Export_pyste_src_PathCurvetoArgs();
void Export_pyste_src_PathCurvetoAbs();
void Export_pyste_src_PathClosePath();
void Export_pyste_src_PathArcRel();
void Export_pyste_src_PathArcArgs();
void Export_pyste_src_PathArcAbs();
void Export_pyste_src_Image();
void Export_pyste_src_Geometry();
void Export_pyste_src_Exception();
void Export_pyste_src_DrawableViewbox();
void Export_pyste_src_DrawableTranslation();
void Export_pyste_src_DrawableTextUnderColor();
void Export_pyste_src_DrawableTextDecoration();
void Export_pyste_src_DrawableTextAntialias();
void Export_pyste_src_DrawableText();
void Export_pyste_src_DrawableStrokeWidth();
void Export_pyste_src_DrawableStrokeOpacity();
void Export_pyste_src_DrawableStrokeLineJoin();
void Export_pyste_src_DrawableStrokeLineCap();
void Export_pyste_src_DrawableStrokeColor();
void Export_pyste_src_DrawableStrokeAntialias();
void Export_pyste_src_DrawableSkewY();
void Export_pyste_src_DrawableSkewX();
void Export_pyste_src_DrawableScaling();
void Export_pyste_src_DrawableRoundRectangle();
void Export_pyste_src_DrawableRotation();
void Export_pyste_src_DrawableRectangle();
void Export_pyste_src_DrawablePushPattern();
void Export_pyste_src_DrawablePushGraphicContext();
void Export_pyste_src_DrawablePushClipPath();
void Export_pyste_src_DrawablePopPattern();
void Export_pyste_src_DrawablePopGraphicContext();
void Export_pyste_src_DrawablePopClipPath();
void Export_pyste_src_DrawablePolyline();
void Export_pyste_src_DrawablePolygon();
void Export_pyste_src_DrawablePointSize();
void Export_pyste_src_DrawablePoint();
void Export_pyste_src_DrawablePath();
void Export_pyste_src_DrawableMiterLimit();
void Export_pyste_src_DrawableMatte();
void Export_pyste_src_DrawableLine();
void Export_pyste_src_DrawableGravity();
void Export_pyste_src_DrawableFont();
void Export_pyste_src_DrawableFillRule();
void Export_pyste_src_DrawableFillOpacity();
void Export_pyste_src_DrawableFillColor();
void Export_pyste_src_DrawableEllipse();
void Export_pyste_src_DrawableDashOffset();
void Export_pyste_src_DrawableDashArray();
void Export_pyste_src_DrawableCompositeImage();
void Export_pyste_src_DrawableColor();
void Export_pyste_src_DrawableClipPath();
void Export_pyste_src_DrawableCircle();
void Export_pyste_src_DrawableBezier();
void Export_pyste_src_DrawableArc();
void Export_pyste_src_DrawableAffine();
void Export_pyste_src_Drawable();
void Export_pyste_src_Coordinate();
void Export_pyste_src_Color();
void Export_pyste_src_Blob();

// Module ======================================================================
BOOST_PYTHON_MODULE(_PythonMagick)
{
    Export_pyste_src_VPath();
    Export_pyste_src_TypeMetric();
    Export_pyste_src_Pixels();
    Export_pyste_src_PathSmoothQuadraticCurvetoRel();
    Export_pyste_src_PathSmoothQuadraticCurvetoAbs();
    Export_pyste_src_PathSmoothCurvetoRel();
    Export_pyste_src_PathSmoothCurvetoAbs();
    Export_pyste_src_PathQuadraticCurvetoRel();
    Export_pyste_src_PathQuadraticCurvetoArgs();
    Export_pyste_src_PathQuadraticCurvetoAbs();
    Export_pyste_src_PathMovetoRel();
    Export_pyste_src_PathMovetoAbs();
    Export_pyste_src_PathLinetoVerticalRel();
    Export_pyste_src_PathLinetoVerticalAbs();
    Export_pyste_src_PathLinetoRel();
    Export_pyste_src_PathLinetoHorizontalRel();
    Export_pyste_src_PathLinetoHorizontalAbs();
    Export_pyste_src_PathLinetoAbs();
    Export_pyste_src_PathCurvetoRel();
    Export_pyste_src_PathCurvetoArgs();
    Export_pyste_src_PathCurvetoAbs();
    Export_pyste_src_PathClosePath();
    Export_pyste_src_PathArcRel();
    Export_pyste_src_PathArcArgs();
    Export_pyste_src_PathArcAbs();
    Export_pyste_src_Image();
    Export_pyste_src_Geometry();
    Export_pyste_src_Exception();
    Export_pyste_src_DrawableViewbox();
    Export_pyste_src_DrawableTranslation();
    Export_pyste_src_DrawableTextUnderColor();
    Export_pyste_src_DrawableTextDecoration();
    Export_pyste_src_DrawableTextAntialias();
    Export_pyste_src_DrawableText();
    Export_pyste_src_DrawableStrokeWidth();
    Export_pyste_src_DrawableStrokeOpacity();
    Export_pyste_src_DrawableStrokeLineJoin();
    Export_pyste_src_DrawableStrokeLineCap();
    Export_pyste_src_DrawableStrokeColor();
    Export_pyste_src_DrawableStrokeAntialias();
    Export_pyste_src_DrawableSkewY();
    Export_pyste_src_DrawableSkewX();
    Export_pyste_src_DrawableScaling();
    Export_pyste_src_DrawableRoundRectangle();
    Export_pyste_src_DrawableRotation();
    Export_pyste_src_DrawableRectangle();
    Export_pyste_src_DrawablePushPattern();
    Export_pyste_src_DrawablePushGraphicContext();
    Export_pyste_src_DrawablePushClipPath();
    Export_pyste_src_DrawablePopPattern();
    Export_pyste_src_DrawablePopGraphicContext();
    Export_pyste_src_DrawablePopClipPath();
    Export_pyste_src_DrawablePolyline();
    Export_pyste_src_DrawablePolygon();
    Export_pyste_src_DrawablePointSize();
    Export_pyste_src_DrawablePoint();
    Export_pyste_src_DrawablePath();
    Export_pyste_src_DrawableMiterLimit();
    Export_pyste_src_DrawableMatte();
    Export_pyste_src_DrawableLine();
    Export_pyste_src_DrawableGravity();
    Export_pyste_src_DrawableFont();
    Export_pyste_src_DrawableFillRule();
    Export_pyste_src_DrawableFillOpacity();
    Export_pyste_src_DrawableFillColor();
    Export_pyste_src_DrawableEllipse();
    Export_pyste_src_DrawableDashOffset();
    Export_pyste_src_DrawableDashArray();
    Export_pyste_src_DrawableCompositeImage();
    Export_pyste_src_DrawableColor();
    Export_pyste_src_DrawableClipPath();
    Export_pyste_src_DrawableCircle();
    Export_pyste_src_DrawableBezier();
    Export_pyste_src_DrawableArc();
    Export_pyste_src_DrawableAffine();
    Export_pyste_src_Drawable();
    Export_pyste_src_Coordinate();
    Export_pyste_src_Color();
    Export_pyste_src_Blob();
}