rmagick 5.4.4 → 5.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +15 -0
- data/.gitignore +1 -0
- data/.rubocop_todo.yml +16 -8
- data/CHANGELOG.md +43 -0
- data/Gemfile +20 -0
- data/Rakefile +11 -0
- data/before_install_osx.sh +1 -1
- data/ext/RMagick/extconf.rb +24 -6
- data/ext/RMagick/rmagick.h +3 -1
- data/ext/RMagick/rmdraw.cpp +10 -10
- data/ext/RMagick/rmfill.cpp +4 -4
- data/ext/RMagick/rmilist.cpp +10 -2
- data/ext/RMagick/rmimage.cpp +321 -294
- data/ext/RMagick/rminfo.cpp +22 -21
- data/ext/RMagick/rmkinfo.cpp +5 -18
- data/ext/RMagick/rmmain.cpp +30 -64
- data/ext/RMagick/rmmontage.cpp +5 -5
- data/ext/RMagick/rmpixel.cpp +1 -1
- data/ext/RMagick/rmutil.cpp +31 -71
- data/lib/rmagick/version.rb +1 -1
- data/lib/rmagick_internal.rb +67 -65
- data/lib/rvg/embellishable.rb +6 -2
- data/lib/rvg/misc.rb +7 -7
- data/lib/rvg/rvg.rb +2 -0
- data/lib/rvg/stretchable.rb +2 -2
- data/lib/rvg/transformable.rb +1 -1
- data/rmagick.gemspec +1 -13
- data/sig/rmagick/_draw_common_methods.rbs +64 -0
- data/sig/rmagick/_image_common_methods.rbs +389 -0
- data/sig/rmagick/draw.rbs +38 -0
- data/sig/rmagick/draw_attribute.rbs +28 -0
- data/sig/rmagick/enum.rbs +814 -0
- data/sig/rmagick/error.rbs +11 -0
- data/sig/rmagick/fill.rbs +21 -0
- data/sig/rmagick/geometry.rbs +14 -0
- data/sig/rmagick/image.rbs +194 -0
- data/sig/rmagick/image_list.rbs +181 -0
- data/sig/rmagick/iptc.rbs +101 -0
- data/sig/rmagick/kernel_info.rbs +12 -0
- data/sig/rmagick/optional_method_arguments.rbs +10 -0
- data/sig/rmagick/pixel.rbs +46 -0
- data/sig/rmagick/struct.rbs +90 -0
- data/sig/rmagick.rbs +43 -0
- data/sig/rvg/clippath.rbs +34 -0
- data/sig/rvg/container.rbs +78 -0
- data/sig/rvg/deep_equal.rbs +48 -0
- data/sig/rvg/describable.rbs +30 -0
- data/sig/rvg/embellishable.rbs +226 -0
- data/sig/rvg/misc.rbs +145 -0
- data/sig/rvg/paint.rbs +55 -0
- data/sig/rvg/pathdata.rbs +77 -0
- data/sig/rvg/rvg.rbs +125 -0
- data/sig/rvg/stretchable.rbs +56 -0
- data/sig/rvg/stylable.rbs +66 -0
- data/sig/rvg/text.rbs +118 -0
- data/sig/rvg/transformable.rbs +59 -0
- data/sig/rvg/units.rbs +33 -0
- metadata +32 -128
@@ -0,0 +1,814 @@
|
|
1
|
+
module Magick
|
2
|
+
class Enum
|
3
|
+
def initialize: (interned sym, int val) -> void
|
4
|
+
def to_s: -> String
|
5
|
+
def to_i: -> Integer
|
6
|
+
def <=>: (Enum other) -> (-1 | 0 | 1 | nil)
|
7
|
+
def ===: (Enum other) -> bool
|
8
|
+
def |: (Enum other) -> Enum
|
9
|
+
end
|
10
|
+
|
11
|
+
interface _EnumInstanceMethod
|
12
|
+
def initialize: (interned sym, int val) -> void
|
13
|
+
def inspect: -> String
|
14
|
+
end
|
15
|
+
|
16
|
+
interface _EnumClassMethod[T]
|
17
|
+
def values: -> Array[T]
|
18
|
+
end
|
19
|
+
|
20
|
+
class GeometryValue < Enum
|
21
|
+
end
|
22
|
+
|
23
|
+
PercentGeometry: GeometryValue
|
24
|
+
AspectGeometry: GeometryValue
|
25
|
+
LessGeometry: GeometryValue
|
26
|
+
GreaterGeometry: GeometryValue
|
27
|
+
AreaGeometry: GeometryValue
|
28
|
+
MinimumGeometry: GeometryValue
|
29
|
+
|
30
|
+
class AlignType < Enum
|
31
|
+
include _EnumInstanceMethod
|
32
|
+
extend _EnumClassMethod[AlignType]
|
33
|
+
end
|
34
|
+
|
35
|
+
UndefinedAlign: AlignType
|
36
|
+
LeftAlign: AlignType
|
37
|
+
CenterAlign: AlignType
|
38
|
+
RightAlign: AlignType
|
39
|
+
|
40
|
+
class AlphaChannelOption < Enum
|
41
|
+
include _EnumInstanceMethod
|
42
|
+
extend _EnumClassMethod[AlphaChannelOption]
|
43
|
+
end
|
44
|
+
|
45
|
+
UndefinedAlphaChannel: AlphaChannelOption
|
46
|
+
ActivateAlphaChannel: AlphaChannelOption
|
47
|
+
DeactivateAlphaChannel: AlphaChannelOption
|
48
|
+
SetAlphaChannel: AlphaChannelOption
|
49
|
+
RemoveAlphaChannel: AlphaChannelOption
|
50
|
+
CopyAlphaChannel: AlphaChannelOption
|
51
|
+
ExtractAlphaChannel: AlphaChannelOption
|
52
|
+
OpaqueAlphaChannel: AlphaChannelOption
|
53
|
+
ShapeAlphaChannel: AlphaChannelOption
|
54
|
+
TransparentAlphaChannel: AlphaChannelOption
|
55
|
+
BackgroundAlphaChannel: AlphaChannelOption
|
56
|
+
AssociateAlphaChannel: AlphaChannelOption
|
57
|
+
DisassociateAlphaChannel: AlphaChannelOption
|
58
|
+
OnAlphaChannel: AlphaChannelOption
|
59
|
+
OffAlphaChannel: AlphaChannelOption
|
60
|
+
|
61
|
+
class AnchorType < Enum
|
62
|
+
include _EnumInstanceMethod
|
63
|
+
extend _EnumClassMethod[AnchorType]
|
64
|
+
end
|
65
|
+
|
66
|
+
StartAnchor: AnchorType
|
67
|
+
MiddleAnchor: AnchorType
|
68
|
+
EndAnchor: AnchorType
|
69
|
+
|
70
|
+
class ChannelType < Enum
|
71
|
+
include _EnumInstanceMethod
|
72
|
+
extend _EnumClassMethod[ChannelType]
|
73
|
+
end
|
74
|
+
|
75
|
+
UndefinedChannel: ChannelType
|
76
|
+
RedChannel: ChannelType
|
77
|
+
CyanChannel: ChannelType
|
78
|
+
GreenChannel: ChannelType
|
79
|
+
MagentaChannel: ChannelType
|
80
|
+
BlueChannel: ChannelType
|
81
|
+
YellowChannel: ChannelType
|
82
|
+
OpacityChannel: ChannelType
|
83
|
+
BlackChannel: ChannelType
|
84
|
+
IndexChannel: ChannelType
|
85
|
+
GrayChannel: ChannelType
|
86
|
+
AllChannels: ChannelType
|
87
|
+
AlphaChannel: ChannelType
|
88
|
+
DefaultChannels: ChannelType
|
89
|
+
HueChannel: ChannelType
|
90
|
+
LuminosityChannel: ChannelType
|
91
|
+
SaturationChannel: ChannelType
|
92
|
+
|
93
|
+
class ClassType < Enum
|
94
|
+
include _EnumInstanceMethod
|
95
|
+
extend _EnumClassMethod[ClassType]
|
96
|
+
end
|
97
|
+
|
98
|
+
UndefinedClass: ClassType
|
99
|
+
PseudoClass: ClassType
|
100
|
+
DirectClass: ClassType
|
101
|
+
|
102
|
+
class ColorspaceType < Enum
|
103
|
+
include _EnumInstanceMethod
|
104
|
+
extend _EnumClassMethod[ColorspaceType]
|
105
|
+
end
|
106
|
+
|
107
|
+
UndefinedColorspace: ColorspaceType
|
108
|
+
RGBColorspace: ColorspaceType
|
109
|
+
GRAYColorspace: ColorspaceType
|
110
|
+
TransparentColorspace: ColorspaceType
|
111
|
+
OHTAColorspace: ColorspaceType
|
112
|
+
XYZColorspace: ColorspaceType
|
113
|
+
YCbCrColorspace: ColorspaceType
|
114
|
+
YCCColorspace: ColorspaceType
|
115
|
+
YIQColorspace: ColorspaceType
|
116
|
+
YPbPrColorspace: ColorspaceType
|
117
|
+
YUVColorspace: ColorspaceType
|
118
|
+
CMYKColorspace: ColorspaceType
|
119
|
+
SRGBColorspace: ColorspaceType
|
120
|
+
HSLColorspace: ColorspaceType
|
121
|
+
HWBColorspace: ColorspaceType
|
122
|
+
HSBColorspace: ColorspaceType
|
123
|
+
LabColorspace: ColorspaceType
|
124
|
+
Rec601YCbCrColorspace: ColorspaceType
|
125
|
+
Rec709YCbCrColorspace: ColorspaceType
|
126
|
+
LogColorspace: ColorspaceType
|
127
|
+
CMYColorspace: ColorspaceType
|
128
|
+
LuvColorspace: ColorspaceType
|
129
|
+
HCLColorspace: ColorspaceType
|
130
|
+
LCHColorspace: ColorspaceType
|
131
|
+
LMSColorspace: ColorspaceType
|
132
|
+
LCHabColorspace: ColorspaceType
|
133
|
+
LCHuvColorspace: ColorspaceType
|
134
|
+
ScRGBColorspace: ColorspaceType
|
135
|
+
HSIColorspace: ColorspaceType
|
136
|
+
HSVColorspace: ColorspaceType
|
137
|
+
HCLpColorspace: ColorspaceType
|
138
|
+
YDbDrColorspace: ColorspaceType
|
139
|
+
XyYColorspace: ColorspaceType
|
140
|
+
LinearGRAYColorspace: ColorspaceType
|
141
|
+
JzazbzColorspace: ColorspaceType
|
142
|
+
|
143
|
+
class ComplianceType < Enum
|
144
|
+
include _EnumInstanceMethod
|
145
|
+
extend _EnumClassMethod[ComplianceType]
|
146
|
+
end
|
147
|
+
|
148
|
+
UndefinedCompliance: ComplianceType
|
149
|
+
AllCompliance: ComplianceType
|
150
|
+
NoCompliance: ComplianceType
|
151
|
+
SVGCompliance: ComplianceType
|
152
|
+
X11Compliance: ComplianceType
|
153
|
+
XPMCompliance: ComplianceType
|
154
|
+
|
155
|
+
class CompositeOperator < Enum
|
156
|
+
include _EnumInstanceMethod
|
157
|
+
extend _EnumClassMethod[CompositeOperator]
|
158
|
+
end
|
159
|
+
|
160
|
+
AtopCompositeOp: CompositeOperator
|
161
|
+
BlendCompositeOp: CompositeOperator
|
162
|
+
BlurCompositeOp: CompositeOperator
|
163
|
+
BumpmapCompositeOp: CompositeOperator
|
164
|
+
ChangeMaskCompositeOp: CompositeOperator
|
165
|
+
ClearCompositeOp: CompositeOperator
|
166
|
+
ColorBurnCompositeOp: CompositeOperator
|
167
|
+
ColorDodgeCompositeOp: CompositeOperator
|
168
|
+
ColorizeCompositeOp: CompositeOperator
|
169
|
+
CopyBlackCompositeOp: CompositeOperator
|
170
|
+
CopyBlueCompositeOp: CompositeOperator
|
171
|
+
CopyCompositeOp: CompositeOperator
|
172
|
+
CopyCyanCompositeOp: CompositeOperator
|
173
|
+
CopyGreenCompositeOp: CompositeOperator
|
174
|
+
CopyMagentaCompositeOp: CompositeOperator
|
175
|
+
CopyRedCompositeOp: CompositeOperator
|
176
|
+
CopyYellowCompositeOp: CompositeOperator
|
177
|
+
DarkenCompositeOp: CompositeOperator
|
178
|
+
DarkenIntensityCompositeOp: CompositeOperator
|
179
|
+
DistortCompositeOp: CompositeOperator
|
180
|
+
DivideDstCompositeOp: CompositeOperator
|
181
|
+
DivideSrcCompositeOp: CompositeOperator
|
182
|
+
DstAtopCompositeOp: CompositeOperator
|
183
|
+
DstCompositeOp: CompositeOperator
|
184
|
+
DstInCompositeOp: CompositeOperator
|
185
|
+
DstOutCompositeOp: CompositeOperator
|
186
|
+
DstOverCompositeOp: CompositeOperator
|
187
|
+
DifferenceCompositeOp: CompositeOperator
|
188
|
+
DisplaceCompositeOp: CompositeOperator
|
189
|
+
DissolveCompositeOp: CompositeOperator
|
190
|
+
ExclusionCompositeOp: CompositeOperator
|
191
|
+
HardLightCompositeOp: CompositeOperator
|
192
|
+
HueCompositeOp: CompositeOperator
|
193
|
+
InCompositeOp: CompositeOperator
|
194
|
+
LightenCompositeOp: CompositeOperator
|
195
|
+
LightenIntensityCompositeOp: CompositeOperator
|
196
|
+
LinearBurnCompositeOp: CompositeOperator
|
197
|
+
LinearDodgeCompositeOp: CompositeOperator
|
198
|
+
LinearLightCompositeOp: CompositeOperator
|
199
|
+
LuminizeCompositeOp: CompositeOperator
|
200
|
+
MathematicsCompositeOp: CompositeOperator
|
201
|
+
MinusDstCompositeOp: CompositeOperator
|
202
|
+
MinusSrcCompositeOp: CompositeOperator
|
203
|
+
ModulateCompositeOp: CompositeOperator
|
204
|
+
ModulusAddCompositeOp: CompositeOperator
|
205
|
+
ModulusSubtractCompositeOp: CompositeOperator
|
206
|
+
MultiplyCompositeOp: CompositeOperator
|
207
|
+
NoCompositeOp: CompositeOperator
|
208
|
+
OutCompositeOp: CompositeOperator
|
209
|
+
OverCompositeOp: CompositeOperator
|
210
|
+
OverlayCompositeOp: CompositeOperator
|
211
|
+
PegtopLightCompositeOp: CompositeOperator
|
212
|
+
PinLightCompositeOp: CompositeOperator
|
213
|
+
PlusCompositeOp: CompositeOperator
|
214
|
+
ReplaceCompositeOp: CompositeOperator
|
215
|
+
SaturateCompositeOp: CompositeOperator
|
216
|
+
ScreenCompositeOp: CompositeOperator
|
217
|
+
SoftLightCompositeOp: CompositeOperator
|
218
|
+
SrcAtopCompositeOp: CompositeOperator
|
219
|
+
SrcCompositeOp: CompositeOperator
|
220
|
+
SrcInCompositeOp: CompositeOperator
|
221
|
+
SrcOutCompositeOp: CompositeOperator
|
222
|
+
SrcOverCompositeOp: CompositeOperator
|
223
|
+
ThresholdCompositeOp: CompositeOperator
|
224
|
+
UndefinedCompositeOp: CompositeOperator
|
225
|
+
VividLightCompositeOp: CompositeOperator
|
226
|
+
XorCompositeOp: CompositeOperator
|
227
|
+
HardMixCompositeOp: CompositeOperator
|
228
|
+
CopyAlphaCompositeOp: CompositeOperator
|
229
|
+
|
230
|
+
class CompressionType < Enum
|
231
|
+
include _EnumInstanceMethod
|
232
|
+
extend _EnumClassMethod[CompressionType]
|
233
|
+
end
|
234
|
+
|
235
|
+
UndefinedCompression: CompressionType
|
236
|
+
NoCompression: CompressionType
|
237
|
+
B44Compression: CompressionType
|
238
|
+
B44ACompression: CompressionType
|
239
|
+
BZipCompression: CompressionType
|
240
|
+
DXT1Compression: CompressionType
|
241
|
+
DXT3Compression: CompressionType
|
242
|
+
DXT5Compression: CompressionType
|
243
|
+
FaxCompression: CompressionType
|
244
|
+
Group4Compression: CompressionType
|
245
|
+
JPEGCompression: CompressionType
|
246
|
+
JPEG2000Compression: CompressionType
|
247
|
+
LosslessJPEGCompression: CompressionType
|
248
|
+
LZWCompression: CompressionType
|
249
|
+
PizCompression: CompressionType
|
250
|
+
Pxr24Compression: CompressionType
|
251
|
+
RLECompression: CompressionType
|
252
|
+
ZipCompression: CompressionType
|
253
|
+
ZipSCompression: CompressionType
|
254
|
+
LZMACompression: CompressionType
|
255
|
+
JBIG1Compression: CompressionType
|
256
|
+
JBIG2Compression: CompressionType
|
257
|
+
|
258
|
+
class DecorationType < Enum
|
259
|
+
include _EnumInstanceMethod
|
260
|
+
extend _EnumClassMethod[DecorationType]
|
261
|
+
end
|
262
|
+
|
263
|
+
NoDecoration: DecorationType
|
264
|
+
UnderlineDecoration: DecorationType
|
265
|
+
OverlineDecoration: DecorationType
|
266
|
+
LineThroughDecoration: DecorationType
|
267
|
+
|
268
|
+
class DisposeType < Enum
|
269
|
+
include _EnumInstanceMethod
|
270
|
+
extend _EnumClassMethod[DisposeType]
|
271
|
+
end
|
272
|
+
|
273
|
+
UndefinedDispose: DisposeType
|
274
|
+
BackgroundDispose: DisposeType
|
275
|
+
NoneDispose: DisposeType
|
276
|
+
PreviousDispose: DisposeType
|
277
|
+
|
278
|
+
class DistortMethod < Enum
|
279
|
+
include _EnumInstanceMethod
|
280
|
+
extend _EnumClassMethod[DistortMethod]
|
281
|
+
end
|
282
|
+
|
283
|
+
UndefinedDistortion: DistortMethod
|
284
|
+
AffineDistortion: DistortMethod
|
285
|
+
AffineProjectionDistortion: DistortMethod
|
286
|
+
ArcDistortion: DistortMethod
|
287
|
+
PolarDistortion: DistortMethod
|
288
|
+
DePolarDistortion: DistortMethod
|
289
|
+
BarrelDistortion: DistortMethod
|
290
|
+
BilinearDistortion: DistortMethod
|
291
|
+
BilinearForwardDistortion: DistortMethod
|
292
|
+
BilinearReverseDistortion: DistortMethod
|
293
|
+
PerspectiveDistortion: DistortMethod
|
294
|
+
PerspectiveProjectionDistortion: DistortMethod
|
295
|
+
PolynomialDistortion: DistortMethod
|
296
|
+
ScaleRotateTranslateDistortion: DistortMethod
|
297
|
+
ShepardsDistortion: DistortMethod
|
298
|
+
BarrelInverseDistortion: DistortMethod
|
299
|
+
Cylinder2PlaneDistortion: DistortMethod
|
300
|
+
Plane2CylinderDistortion: DistortMethod
|
301
|
+
ResizeDistortion: DistortMethod
|
302
|
+
SentinelDistortion: DistortMethod
|
303
|
+
|
304
|
+
class DitherMethod < Enum
|
305
|
+
include _EnumInstanceMethod
|
306
|
+
extend _EnumClassMethod[DitherMethod]
|
307
|
+
end
|
308
|
+
|
309
|
+
UndefinedDitherMethod: DitherMethod
|
310
|
+
NoDitherMethod: DitherMethod
|
311
|
+
RiemersmaDitherMethod: DitherMethod
|
312
|
+
FloydSteinbergDitherMethod: DitherMethod
|
313
|
+
|
314
|
+
class EndianType < Enum
|
315
|
+
include _EnumInstanceMethod
|
316
|
+
extend _EnumClassMethod[EndianType]
|
317
|
+
end
|
318
|
+
|
319
|
+
UndefinedEndian: EndianType
|
320
|
+
LSBEndian: EndianType
|
321
|
+
MSBEndian: EndianType
|
322
|
+
|
323
|
+
class FilterType < Enum
|
324
|
+
include _EnumInstanceMethod
|
325
|
+
extend _EnumClassMethod[FilterType]
|
326
|
+
end
|
327
|
+
|
328
|
+
UndefinedFilter: FilterType
|
329
|
+
PointFilter: FilterType
|
330
|
+
BoxFilter: FilterType
|
331
|
+
TriangleFilter: FilterType
|
332
|
+
HermiteFilter: FilterType
|
333
|
+
HanningFilter: FilterType
|
334
|
+
HammingFilter: FilterType
|
335
|
+
BlackmanFilter: FilterType
|
336
|
+
GaussianFilter: FilterType
|
337
|
+
QuadraticFilter: FilterType
|
338
|
+
CubicFilter: FilterType
|
339
|
+
CatromFilter: FilterType
|
340
|
+
MitchellFilter: FilterType
|
341
|
+
LanczosFilter: FilterType
|
342
|
+
BesselFilter: FilterType
|
343
|
+
SincFilter: FilterType
|
344
|
+
KaiserFilter: FilterType
|
345
|
+
WelshFilter: FilterType
|
346
|
+
ParzenFilter: FilterType
|
347
|
+
LagrangeFilter: FilterType
|
348
|
+
BohmanFilter: FilterType
|
349
|
+
BartlettFilter: FilterType
|
350
|
+
JincFilter: FilterType
|
351
|
+
SincFastFilter: FilterType
|
352
|
+
LanczosSharpFilter: FilterType
|
353
|
+
Lanczos2Filter: FilterType
|
354
|
+
Lanczos2SharpFilter: FilterType
|
355
|
+
RobidouxFilter: FilterType
|
356
|
+
RobidouxSharpFilter: FilterType
|
357
|
+
CosineFilter: FilterType
|
358
|
+
SplineFilter: FilterType
|
359
|
+
LanczosRadiusFilter: FilterType
|
360
|
+
WelchFilter: FilterType
|
361
|
+
HannFilter: FilterType
|
362
|
+
|
363
|
+
class GravityType < Enum
|
364
|
+
include _EnumInstanceMethod
|
365
|
+
extend _EnumClassMethod[GravityType]
|
366
|
+
end
|
367
|
+
|
368
|
+
UndefinedGravity: GravityType
|
369
|
+
ForgetGravity: GravityType
|
370
|
+
NorthWestGravity: GravityType
|
371
|
+
NorthGravity: GravityType
|
372
|
+
NorthEastGravity: GravityType
|
373
|
+
WestGravity: GravityType
|
374
|
+
CenterGravity: GravityType
|
375
|
+
EastGravity: GravityType
|
376
|
+
SouthWestGravity: GravityType
|
377
|
+
SouthGravity: GravityType
|
378
|
+
SouthEastGravity: GravityType
|
379
|
+
|
380
|
+
class ImageType < Enum
|
381
|
+
include _EnumInstanceMethod
|
382
|
+
extend _EnumClassMethod[ImageType]
|
383
|
+
end
|
384
|
+
|
385
|
+
UndefinedType: ImageType
|
386
|
+
BilevelType: ImageType
|
387
|
+
GrayscaleType: ImageType
|
388
|
+
PaletteType: ImageType
|
389
|
+
TrueColorType: ImageType
|
390
|
+
ColorSeparationType: ImageType
|
391
|
+
OptimizeType: ImageType
|
392
|
+
GrayscaleAlphaType: ImageType
|
393
|
+
PaletteAlphaType: ImageType
|
394
|
+
TrueColorAlphaType: ImageType
|
395
|
+
ColorSeparationAlphaType: ImageType
|
396
|
+
PaletteBilevelAlphaType: ImageType
|
397
|
+
|
398
|
+
class InterlaceType < Enum
|
399
|
+
include _EnumInstanceMethod
|
400
|
+
extend _EnumClassMethod[InterlaceType]
|
401
|
+
end
|
402
|
+
|
403
|
+
UndefinedInterlace: InterlaceType
|
404
|
+
NoInterlace: InterlaceType
|
405
|
+
LineInterlace: InterlaceType
|
406
|
+
PlaneInterlace: InterlaceType
|
407
|
+
PartitionInterlace: InterlaceType
|
408
|
+
GIFInterlace: InterlaceType
|
409
|
+
JPEGInterlace: InterlaceType
|
410
|
+
PNGInterlace: InterlaceType
|
411
|
+
|
412
|
+
class MagickFunction < Enum
|
413
|
+
include _EnumInstanceMethod
|
414
|
+
extend _EnumClassMethod[MagickFunction]
|
415
|
+
end
|
416
|
+
|
417
|
+
UndefinedFunction: MagickFunction
|
418
|
+
PolynomialFunction: MagickFunction
|
419
|
+
SinusoidFunction: MagickFunction
|
420
|
+
ArcsinFunction: MagickFunction
|
421
|
+
ArctanFunction: MagickFunction
|
422
|
+
|
423
|
+
class LayerMethod < Enum
|
424
|
+
include _EnumInstanceMethod
|
425
|
+
extend _EnumClassMethod[LayerMethod]
|
426
|
+
end
|
427
|
+
|
428
|
+
UndefinedLayer: LayerMethod
|
429
|
+
CompareAnyLayer: LayerMethod
|
430
|
+
CompareClearLayer: LayerMethod
|
431
|
+
CompareOverlayLayer: LayerMethod
|
432
|
+
OptimizeLayer: LayerMethod
|
433
|
+
OptimizePlusLayer: LayerMethod
|
434
|
+
CoalesceLayer: LayerMethod
|
435
|
+
DisposeLayer: LayerMethod
|
436
|
+
OptimizeTransLayer: LayerMethod
|
437
|
+
OptimizeImageLayer: LayerMethod
|
438
|
+
RemoveDupsLayer: LayerMethod
|
439
|
+
RemoveZeroLayer: LayerMethod
|
440
|
+
CompositeLayer: LayerMethod
|
441
|
+
MergeLayer: LayerMethod
|
442
|
+
MosaicLayer: LayerMethod
|
443
|
+
FlattenLayer: LayerMethod
|
444
|
+
TrimBoundsLayer: LayerMethod
|
445
|
+
|
446
|
+
class MetricType < Enum
|
447
|
+
include _EnumInstanceMethod
|
448
|
+
extend _EnumClassMethod[MetricType]
|
449
|
+
end
|
450
|
+
|
451
|
+
AbsoluteErrorMetric: MetricType
|
452
|
+
MeanAbsoluteErrorMetric: MetricType
|
453
|
+
MeanSquaredErrorMetric: MetricType
|
454
|
+
PeakAbsoluteErrorMetric: MetricType
|
455
|
+
RootMeanSquaredErrorMetric: MetricType
|
456
|
+
NormalizedCrossCorrelationErrorMetric: MetricType
|
457
|
+
FuzzErrorMetric: MetricType
|
458
|
+
PerceptualHashErrorMetric: MetricType
|
459
|
+
UndefinedErrorMetric: MetricType
|
460
|
+
MeanErrorPerPixelErrorMetric: MetricType
|
461
|
+
PeakSignalToNoiseRatioErrorMetric: MetricType
|
462
|
+
|
463
|
+
class NoiseType < Enum
|
464
|
+
include _EnumInstanceMethod
|
465
|
+
extend _EnumClassMethod[NoiseType]
|
466
|
+
end
|
467
|
+
|
468
|
+
UniformNoise: NoiseType
|
469
|
+
GaussianNoise: NoiseType
|
470
|
+
MultiplicativeGaussianNoise: NoiseType
|
471
|
+
ImpulseNoise: NoiseType
|
472
|
+
LaplacianNoise: NoiseType
|
473
|
+
PoissonNoise: NoiseType
|
474
|
+
RandomNoise: NoiseType
|
475
|
+
|
476
|
+
class OrientationType < Enum
|
477
|
+
include _EnumInstanceMethod
|
478
|
+
extend _EnumClassMethod[OrientationType]
|
479
|
+
end
|
480
|
+
|
481
|
+
UndefinedOrientation: OrientationType
|
482
|
+
TopLeftOrientation: OrientationType
|
483
|
+
TopRightOrientation: OrientationType
|
484
|
+
BottomRightOrientation: OrientationType
|
485
|
+
BottomLeftOrientation: OrientationType
|
486
|
+
LeftTopOrientation: OrientationType
|
487
|
+
RightTopOrientation: OrientationType
|
488
|
+
RightBottomOrientation: OrientationType
|
489
|
+
LeftBottomOrientation: OrientationType
|
490
|
+
|
491
|
+
class PaintMethod < Enum
|
492
|
+
include _EnumInstanceMethod
|
493
|
+
extend _EnumClassMethod[PaintMethod]
|
494
|
+
end
|
495
|
+
|
496
|
+
PointMethod: PaintMethod
|
497
|
+
ReplaceMethod: PaintMethod
|
498
|
+
FloodfillMethod: PaintMethod
|
499
|
+
FillToBorderMethod: PaintMethod
|
500
|
+
ResetMethod: PaintMethod
|
501
|
+
|
502
|
+
class PixelInterpolateMethod < Enum
|
503
|
+
include _EnumInstanceMethod
|
504
|
+
extend _EnumClassMethod[PixelInterpolateMethod]
|
505
|
+
end
|
506
|
+
|
507
|
+
UndefinedInterpolatePixel: PixelInterpolateMethod
|
508
|
+
AverageInterpolatePixel: PixelInterpolateMethod
|
509
|
+
BilinearInterpolatePixel: PixelInterpolateMethod
|
510
|
+
IntegerInterpolatePixel: PixelInterpolateMethod
|
511
|
+
MeshInterpolatePixel: PixelInterpolateMethod
|
512
|
+
NearestInterpolatePixel: PixelInterpolateMethod
|
513
|
+
SplineInterpolatePixel: PixelInterpolateMethod
|
514
|
+
Average9InterpolatePixel: PixelInterpolateMethod
|
515
|
+
Average16InterpolatePixel: PixelInterpolateMethod
|
516
|
+
BlendInterpolatePixel: PixelInterpolateMethod
|
517
|
+
BackgroundInterpolatePixel: PixelInterpolateMethod
|
518
|
+
CatromInterpolatePixel: PixelInterpolateMethod
|
519
|
+
|
520
|
+
class PreviewType < Enum
|
521
|
+
include _EnumInstanceMethod
|
522
|
+
extend _EnumClassMethod[PreviewType]
|
523
|
+
end
|
524
|
+
|
525
|
+
UndefinedPreview: PreviewType
|
526
|
+
RotatePreview: PreviewType
|
527
|
+
ShearPreview: PreviewType
|
528
|
+
RollPreview: PreviewType
|
529
|
+
HuePreview: PreviewType
|
530
|
+
SaturationPreview: PreviewType
|
531
|
+
BrightnessPreview: PreviewType
|
532
|
+
GammaPreview: PreviewType
|
533
|
+
SpiffPreview: PreviewType
|
534
|
+
DullPreview: PreviewType
|
535
|
+
GrayscalePreview: PreviewType
|
536
|
+
QuantizePreview: PreviewType
|
537
|
+
DespecklePreview: PreviewType
|
538
|
+
ReduceNoisePreview: PreviewType
|
539
|
+
AddNoisePreview: PreviewType
|
540
|
+
SharpenPreview: PreviewType
|
541
|
+
BlurPreview: PreviewType
|
542
|
+
ThresholdPreview: PreviewType
|
543
|
+
EdgeDetectPreview: PreviewType
|
544
|
+
SpreadPreview: PreviewType
|
545
|
+
SolarizePreview: PreviewType
|
546
|
+
ShadePreview: PreviewType
|
547
|
+
RaisePreview: PreviewType
|
548
|
+
SegmentPreview: PreviewType
|
549
|
+
SwirlPreview: PreviewType
|
550
|
+
ImplodePreview: PreviewType
|
551
|
+
WavePreview: PreviewType
|
552
|
+
OilPaintPreview: PreviewType
|
553
|
+
CharcoalDrawingPreview: PreviewType
|
554
|
+
JPEGPreview: PreviewType
|
555
|
+
|
556
|
+
class QuantumExpressionOperator < Enum
|
557
|
+
include _EnumInstanceMethod
|
558
|
+
extend _EnumClassMethod[QuantumExpressionOperator]
|
559
|
+
end
|
560
|
+
|
561
|
+
UndefinedQuantumOperator: QuantumExpressionOperator
|
562
|
+
AddQuantumOperator: QuantumExpressionOperator
|
563
|
+
AndQuantumOperator: QuantumExpressionOperator
|
564
|
+
DivideQuantumOperator: QuantumExpressionOperator
|
565
|
+
LShiftQuantumOperator: QuantumExpressionOperator
|
566
|
+
MaxQuantumOperator: QuantumExpressionOperator
|
567
|
+
MinQuantumOperator: QuantumExpressionOperator
|
568
|
+
MultiplyQuantumOperator: QuantumExpressionOperator
|
569
|
+
OrQuantumOperator: QuantumExpressionOperator
|
570
|
+
RShiftQuantumOperator: QuantumExpressionOperator
|
571
|
+
SubtractQuantumOperator: QuantumExpressionOperator
|
572
|
+
XorQuantumOperator: QuantumExpressionOperator
|
573
|
+
PowQuantumOperator: QuantumExpressionOperator
|
574
|
+
LogQuantumOperator: QuantumExpressionOperator
|
575
|
+
ThresholdQuantumOperator: QuantumExpressionOperator
|
576
|
+
ThresholdBlackQuantumOperator: QuantumExpressionOperator
|
577
|
+
ThresholdWhiteQuantumOperator: QuantumExpressionOperator
|
578
|
+
GaussianNoiseQuantumOperator: QuantumExpressionOperator
|
579
|
+
ImpulseNoiseQuantumOperator: QuantumExpressionOperator
|
580
|
+
LaplacianNoiseQuantumOperator: QuantumExpressionOperator
|
581
|
+
MultiplicativeNoiseQuantumOperator: QuantumExpressionOperator
|
582
|
+
PoissonNoiseQuantumOperator: QuantumExpressionOperator
|
583
|
+
UniformNoiseQuantumOperator: QuantumExpressionOperator
|
584
|
+
CosineQuantumOperator: QuantumExpressionOperator
|
585
|
+
SetQuantumOperator: QuantumExpressionOperator
|
586
|
+
SineQuantumOperator: QuantumExpressionOperator
|
587
|
+
AddModulusQuantumOperator: QuantumExpressionOperator
|
588
|
+
MeanQuantumOperator: QuantumExpressionOperator
|
589
|
+
AbsQuantumOperator: QuantumExpressionOperator
|
590
|
+
ExponentialQuantumOperator: QuantumExpressionOperator
|
591
|
+
MedianQuantumOperator: QuantumExpressionOperator
|
592
|
+
SumQuantumOperator: QuantumExpressionOperator
|
593
|
+
RootMeanSquareQuantumOperator: QuantumExpressionOperator
|
594
|
+
|
595
|
+
class RenderingIntent < Enum
|
596
|
+
include _EnumInstanceMethod
|
597
|
+
extend _EnumClassMethod[RenderingIntent]
|
598
|
+
end
|
599
|
+
|
600
|
+
UndefinedIntent: RenderingIntent
|
601
|
+
SaturationIntent: RenderingIntent
|
602
|
+
PerceptualIntent: RenderingIntent
|
603
|
+
AbsoluteIntent: RenderingIntent
|
604
|
+
RelativeIntent: RenderingIntent
|
605
|
+
|
606
|
+
class ResolutionType < Enum
|
607
|
+
include _EnumInstanceMethod
|
608
|
+
extend _EnumClassMethod[ResolutionType]
|
609
|
+
end
|
610
|
+
|
611
|
+
UndefinedResolution: ResolutionType
|
612
|
+
PixelsPerInchResolution: ResolutionType
|
613
|
+
PixelsPerCentimeterResolution: ResolutionType
|
614
|
+
|
615
|
+
class SparseColorMethod < Enum
|
616
|
+
include _EnumInstanceMethod
|
617
|
+
extend _EnumClassMethod[SparseColorMethod]
|
618
|
+
end
|
619
|
+
|
620
|
+
UndefinedColorInterpolate: SparseColorMethod
|
621
|
+
BarycentricColorInterpolate: SparseColorMethod
|
622
|
+
BilinearColorInterpolate: SparseColorMethod
|
623
|
+
ShepardsColorInterpolate: SparseColorMethod
|
624
|
+
VoronoiColorInterpolate: SparseColorMethod
|
625
|
+
InverseColorInterpolate: SparseColorMethod
|
626
|
+
|
627
|
+
class SpreadMethod < Enum
|
628
|
+
include _EnumInstanceMethod
|
629
|
+
extend _EnumClassMethod[SpreadMethod]
|
630
|
+
end
|
631
|
+
|
632
|
+
UndefinedSpread: SpreadMethod
|
633
|
+
PadSpread: SpreadMethod
|
634
|
+
ReflectSpread: SpreadMethod
|
635
|
+
RepeatSpread: SpreadMethod
|
636
|
+
|
637
|
+
class StorageType < Enum
|
638
|
+
include _EnumInstanceMethod
|
639
|
+
extend _EnumClassMethod[StorageType]
|
640
|
+
end
|
641
|
+
|
642
|
+
UndefinedPixel: StorageType
|
643
|
+
CharPixel: StorageType
|
644
|
+
DoublePixel: StorageType
|
645
|
+
FloatPixel: StorageType
|
646
|
+
LongPixel: StorageType
|
647
|
+
QuantumPixel: StorageType
|
648
|
+
ShortPixel: StorageType
|
649
|
+
|
650
|
+
class StretchType < Enum
|
651
|
+
include _EnumInstanceMethod
|
652
|
+
extend _EnumClassMethod[StretchType]
|
653
|
+
end
|
654
|
+
|
655
|
+
NormalStretch: StretchType
|
656
|
+
UltraCondensedStretch: StretchType
|
657
|
+
ExtraCondensedStretch: StretchType
|
658
|
+
CondensedStretch: StretchType
|
659
|
+
SemiCondensedStretch: StretchType
|
660
|
+
SemiExpandedStretch: StretchType
|
661
|
+
ExpandedStretch: StretchType
|
662
|
+
ExtraExpandedStretch: StretchType
|
663
|
+
UltraExpandedStretch: StretchType
|
664
|
+
AnyStretch: StretchType
|
665
|
+
|
666
|
+
class StyleType < Enum
|
667
|
+
include _EnumInstanceMethod
|
668
|
+
extend _EnumClassMethod[StyleType]
|
669
|
+
end
|
670
|
+
|
671
|
+
NormalStyle: StyleType
|
672
|
+
ItalicStyle: StyleType
|
673
|
+
ObliqueStyle: StyleType
|
674
|
+
AnyStyle: StyleType
|
675
|
+
|
676
|
+
class VirtualPixelMethod < Enum
|
677
|
+
include _EnumInstanceMethod
|
678
|
+
extend _EnumClassMethod[VirtualPixelMethod]
|
679
|
+
end
|
680
|
+
|
681
|
+
UndefinedVirtualPixelMethod: VirtualPixelMethod
|
682
|
+
EdgeVirtualPixelMethod: VirtualPixelMethod
|
683
|
+
MirrorVirtualPixelMethod: VirtualPixelMethod
|
684
|
+
TileVirtualPixelMethod: VirtualPixelMethod
|
685
|
+
TransparentVirtualPixelMethod: VirtualPixelMethod
|
686
|
+
BackgroundVirtualPixelMethod: VirtualPixelMethod
|
687
|
+
DitherVirtualPixelMethod: VirtualPixelMethod
|
688
|
+
RandomVirtualPixelMethod: VirtualPixelMethod
|
689
|
+
MaskVirtualPixelMethod: VirtualPixelMethod
|
690
|
+
BlackVirtualPixelMethod: VirtualPixelMethod
|
691
|
+
GrayVirtualPixelMethod: VirtualPixelMethod
|
692
|
+
WhiteVirtualPixelMethod: VirtualPixelMethod
|
693
|
+
HorizontalTileVirtualPixelMethod: VirtualPixelMethod
|
694
|
+
VerticalTileVirtualPixelMethod: VirtualPixelMethod
|
695
|
+
HorizontalTileEdgeVirtualPixelMethod: VirtualPixelMethod
|
696
|
+
VerticalTileEdgeVirtualPixelMethod: VirtualPixelMethod
|
697
|
+
CheckerTileVirtualPixelMethod: VirtualPixelMethod
|
698
|
+
|
699
|
+
class WeightType < Enum
|
700
|
+
include _EnumInstanceMethod
|
701
|
+
extend _EnumClassMethod[WeightType]
|
702
|
+
end
|
703
|
+
|
704
|
+
AnyWeight: WeightType
|
705
|
+
NormalWeight: WeightType
|
706
|
+
BoldWeight: WeightType
|
707
|
+
BolderWeight: WeightType
|
708
|
+
LighterWeight: WeightType
|
709
|
+
|
710
|
+
class GeometryFlags < Enum
|
711
|
+
include _EnumInstanceMethod
|
712
|
+
extend _EnumClassMethod[GeometryFlags]
|
713
|
+
end
|
714
|
+
|
715
|
+
NoValue: GeometryFlags
|
716
|
+
XValue: GeometryFlags
|
717
|
+
XiValue: GeometryFlags
|
718
|
+
YValue: GeometryFlags
|
719
|
+
PsiValue: GeometryFlags
|
720
|
+
WidthValue: GeometryFlags
|
721
|
+
RhoValue: GeometryFlags
|
722
|
+
HeightValue: GeometryFlags
|
723
|
+
SigmaValue: GeometryFlags
|
724
|
+
ChiValue: GeometryFlags
|
725
|
+
XiNegative: GeometryFlags
|
726
|
+
XNegative: GeometryFlags
|
727
|
+
PsiNegative: GeometryFlags
|
728
|
+
YNegative: GeometryFlags
|
729
|
+
ChiNegative: GeometryFlags
|
730
|
+
PercentValue: GeometryFlags
|
731
|
+
AspectValue: GeometryFlags
|
732
|
+
NormalizeValue: GeometryFlags
|
733
|
+
LessValue: GeometryFlags
|
734
|
+
GreaterValue: GeometryFlags
|
735
|
+
MinimumValue: GeometryFlags
|
736
|
+
CorrelateNormalizeValue: GeometryFlags
|
737
|
+
AreaValue: GeometryFlags
|
738
|
+
DecimalValue: GeometryFlags
|
739
|
+
SeparatorValue: GeometryFlags
|
740
|
+
AllValues: GeometryFlags
|
741
|
+
|
742
|
+
class MorphologyMethod < Enum
|
743
|
+
include _EnumInstanceMethod
|
744
|
+
extend _EnumClassMethod[MorphologyMethod]
|
745
|
+
end
|
746
|
+
|
747
|
+
UndefinedMorphology: MorphologyMethod
|
748
|
+
ConvolveMorphology: MorphologyMethod
|
749
|
+
CorrelateMorphology: MorphologyMethod
|
750
|
+
ErodeMorphology: MorphologyMethod
|
751
|
+
DilateMorphology: MorphologyMethod
|
752
|
+
ErodeIntensityMorphology: MorphologyMethod
|
753
|
+
DilateIntensityMorphology: MorphologyMethod
|
754
|
+
DistanceMorphology: MorphologyMethod
|
755
|
+
OpenMorphology: MorphologyMethod
|
756
|
+
CloseMorphology: MorphologyMethod
|
757
|
+
OpenIntensityMorphology: MorphologyMethod
|
758
|
+
CloseIntensityMorphology: MorphologyMethod
|
759
|
+
SmoothMorphology: MorphologyMethod
|
760
|
+
EdgeInMorphology: MorphologyMethod
|
761
|
+
EdgeOutMorphology: MorphologyMethod
|
762
|
+
EdgeMorphology: MorphologyMethod
|
763
|
+
TopHatMorphology: MorphologyMethod
|
764
|
+
BottomHatMorphology: MorphologyMethod
|
765
|
+
HitAndMissMorphology: MorphologyMethod
|
766
|
+
ThinningMorphology: MorphologyMethod
|
767
|
+
ThickenMorphology: MorphologyMethod
|
768
|
+
VoronoiMorphology: MorphologyMethod
|
769
|
+
IterativeDistanceMorphology: MorphologyMethod
|
770
|
+
|
771
|
+
class KernelInfoType < Enum
|
772
|
+
include _EnumInstanceMethod
|
773
|
+
extend _EnumClassMethod[KernelInfoType]
|
774
|
+
end
|
775
|
+
|
776
|
+
UndefinedKernel: KernelInfoType
|
777
|
+
UnityKernel: KernelInfoType
|
778
|
+
GaussianKernel: KernelInfoType
|
779
|
+
DoGKernel: KernelInfoType
|
780
|
+
LoGKernel: KernelInfoType
|
781
|
+
BlurKernel: KernelInfoType
|
782
|
+
CometKernel: KernelInfoType
|
783
|
+
LaplacianKernel: KernelInfoType
|
784
|
+
SobelKernel: KernelInfoType
|
785
|
+
FreiChenKernel: KernelInfoType
|
786
|
+
RobertsKernel: KernelInfoType
|
787
|
+
PrewittKernel: KernelInfoType
|
788
|
+
CompassKernel: KernelInfoType
|
789
|
+
KirschKernel: KernelInfoType
|
790
|
+
DiamondKernel: KernelInfoType
|
791
|
+
SquareKernel: KernelInfoType
|
792
|
+
RectangleKernel: KernelInfoType
|
793
|
+
OctagonKernel: KernelInfoType
|
794
|
+
DiskKernel: KernelInfoType
|
795
|
+
PlusKernel: KernelInfoType
|
796
|
+
CrossKernel: KernelInfoType
|
797
|
+
RingKernel: KernelInfoType
|
798
|
+
PeaksKernel: KernelInfoType
|
799
|
+
EdgesKernel: KernelInfoType
|
800
|
+
CornersKernel: KernelInfoType
|
801
|
+
DiagonalsKernel: KernelInfoType
|
802
|
+
LineEndsKernel: KernelInfoType
|
803
|
+
LineJunctionsKernel: KernelInfoType
|
804
|
+
RidgesKernel: KernelInfoType
|
805
|
+
ConvexHullKernel: KernelInfoType
|
806
|
+
ThinSEKernel: KernelInfoType
|
807
|
+
SkeletonKernel: KernelInfoType
|
808
|
+
ChebyshevKernel: KernelInfoType
|
809
|
+
ManhattanKernel: KernelInfoType
|
810
|
+
OctagonalKernel: KernelInfoType
|
811
|
+
EuclideanKernel: KernelInfoType
|
812
|
+
UserDefinedKernel: KernelInfoType
|
813
|
+
BinomialKernel: KernelInfoType
|
814
|
+
end
|