123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- {
- Copyright 1999-2005 ImageMagick Studio LLC, a non-profit organization
- dedicated to making software imaging solutions freely available.
-
- You may not use this file except in compliance with the License.
- obtain a copy of the License at
-
- http://www.imagemagick.org/script/license.php
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- ImageMagick drawing methods.
- }
- //#include "magick/type.h"
- type
- AlignType = (
- UndefinedAlign,
- LeftAlign,
- CenterAlign,
- RightAlign
- );
- type
- ClipPathUnits = (
- UndefinedPathUnits,
- UserSpace,
- UserSpaceOnUse,
- ObjectBoundingBox
- );
- type
- DecorationType = (
- UndefinedDecoration,
- NoDecoration,
- UnderlineDecoration,
- OverlineDecoration,
- LineThroughDecoration
- );
- type
- FillRule = (
- UndefinedRule,
- //#undef EvenOddRule
- EvenOddRule,
- NonZeroRule
- );
- type
- GradientType = (
- UndefinedGradient,
- LinearGradient,
- RadialGradient
- );
- type
- LineCap = (
- UndefinedCap,
- ButtCap,
- RoundCap,
- SquareCap
- );
- type
- LineJoin = (
- UndefinedJoin,
- MiterJoin,
- RoundJoin,
- BevelJoin
- );
- type
- PaintMethod = (
- UndefinedMethod,
- PointMethod,
- ReplaceMethod,
- FloodfillMethod,
- FillToBorderMethod,
- ResetMethod
- );
- type
- PrimitiveType = (
- UndefinedPrimitive,
- PointPrimitive,
- LinePrimitive,
- RectanglePrimitive,
- RoundRectanglePrimitive,
- ArcPrimitive,
- EllipsePrimitive,
- CirclePrimitive,
- PolylinePrimitive,
- PolygonPrimitive,
- BezierPrimitive,
- ColorPrimitive,
- MattePrimitive,
- TextPrimitive,
- ImagePrimitive,
- PathPrimitive
- );
- type
- ReferenceType = (
- UndefinedReference,
- GradientReference
- );
- type
- SpreadMethod = (
- UndefinedSpread,
- PadSpread,
- ReflectSpead,
- RepeatSpread
- );
- type
- GradientInfo = record
- type_: GradientType;
- color: PixelPacket;
- stop: SegmentInfo;
- length: Cardinal;
- spread: SpreadMethod;
- debug: MagickBooleanType;
- signature: Cardinal;
- previous, next: Pointer;
- { struct _GradientInfo
- *previous,
- *next;}
- end;
- type
- ElementReference = record
- id: PChar;
- type_: ReferenceType;
- gradient: GradientInfo;
- signature: Cardinal;
- previous, next: Pointer;
- { struct _ElementReference
- *previous,
- *next;}
- end;
- type
- DrawInfo = record
- primitive,
- geometry: PChar;
- viewbox: RectangleInfo;
- affine: AffineMatrix;
- gravity: GravityType;
- fill,
- stroke: PixelPacket;
- stroke_width: double;
- gradient: GradientInfo;
- fill_pattern,
- tile,
- stroke_pattern: PImage;
- stroke_antialias,
- text_antialias: MagickBooleanType;
- fill_rule: FillRule;
- linecap_: LineCap;
- linejoin_: LineJoin;
- miterlimit: Cardinal;
- dash_offset: double;
- decorate: DecorationType;
- compose: CompositeOperator;
- text: PChar;
- face: Cardinal;
- font,
- metrics,
- family: PChar;
- style: StyleType;
- stretch: StretchType;
- weight: Cardinal;
-
- encoding: PChar;
- pointsize: double;
- density: PChar;
- align: AlignType;
- undercolor,
- border_color: PixelPacket;
- server_name: PChar;
- dash_pattern: Pdouble;
- clip_path: PChar;
- bounds: SegmentInfo;
- clip_units: ClipPathUnits;
- opacity: Quantum;
- render: MagickBooleanType;
- element_reference: ElementReference;
- debug: MagickBooleanType;
- signature: Cardinal;
- end;
-
- PDrawInfo = ^DrawInfo;
-
- PPDrawInfo = ^PDrawInfo;
- type
- PointInfo = record
- x, y: double;
- end;
-
- PPointInfo = ^PointInfo;
- type
- PrimitiveInfo = record
- point: PointInfo;
- coordinates: Cardinal;
- primitive: PrimitiveType;
- method: PaintMethod;
- text: PChar;
- end;
- type
- TypeMetric = record
- pixels_per_em: PointInfo;
- ascent,
- descent,
- width,
- height,
- max_advance,
- underline_position,
- underline_thickness: double;
- bounds: SegmentInfo;
- end;
- {extern MagickExport DrawInfo
- *CloneDrawInfo(const ImageInfo *,const DrawInfo *),
- *DestroyDrawInfo(DrawInfo *);
- extern MagickExport MagickBooleanType
- DrawAffineImage(Image *,const Image *,const AffineMatrix *),
- DrawClipPath(Image *,const DrawInfo *,const char *),
- DrawImage(Image *,const DrawInfo *),
- DrawPatternPath(Image *,const DrawInfo *,const char *,Image **),
- DrawPrimitive(Image *,const DrawInfo *,const PrimitiveInfo *);
- extern MagickExport void
- GetAffineMatrix(AffineMatrix *),
- GetDrawInfo(const ImageInfo *,DrawInfo *);}
|