Changeset 7665
- Timestamp:
- 04/26/12 07:30:17 (14 months ago)
- Location:
- ImageMagick/trunk/MagickWand
- Files:
-
- 4 edited
-
drawing-wand.c (modified) (15 diffs)
-
drawing-wand.h (modified) (1 diff)
-
pixel-wand.c (modified) (1 diff)
-
wand-view.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/MagickWand/drawing-wand.c
r7580 r7665 256 256 void (*DrawSetTextUnderColor)(DrawingWand *,const PixelWand *); 257 257 void (*DrawTranslate)(DrawingWand *,const double,const double); 258 void (*DrawSetViewbox)(DrawingWand *, size_t,size_t,259 size_t,size_t);258 void (*DrawSetViewbox)(DrawingWand *,const double,const double, 259 const double,const double); 260 260 void (*PeekDrawingWand)(DrawingWand *); 261 261 MagickBooleanType (*PopDrawingWand)(DrawingWand *); … … 1595 1595 % The format of the DrawGetFontResolution method is: 1596 1596 % 1597 % DrawBooleanType DrawGetFontResolution(const DrawingWand *wand,1597 % MagickBooleanType DrawGetFontResolution(const DrawingWand *wand, 1598 1598 % double *x,double *y) 1599 1599 % … … 1875 1875 % 1876 1876 % void DrawGetStrokeColor(const DrawingWand *wand, 1877 $PixelWand *stroke_color)1877 % PixelWand *stroke_color) 1878 1878 % 1879 1879 % A description of each parameter follows: … … 2181 2181 % The format of the DrawGetTextAlignment method is: 2182 2182 % 2183 % AlignType DrawGetTextAlignment( DrawingWand *wand)2183 % AlignType DrawGetTextAlignment(const DrawingWand *wand) 2184 2184 % 2185 2185 % A description of each parameter follows: … … 2245 2245 % The format of the DrawGetTextDecoration method is: 2246 2246 % 2247 % DecorationType DrawGetTextDecoration( DrawingWand *wand)2247 % DecorationType DrawGetTextDecoration(const DrawingWand *wand) 2248 2248 % 2249 2249 % A description of each parameter follows: … … 2333 2333 % % 2334 2334 % % 2335 % D r a w G e t T e x t I n t e r Li n e S p a c i n g %2336 % % 2337 % % 2338 % % 2339 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2340 % 2341 % DrawGetTextInter wordSpacing() gets the spacing between lines in text.2342 % 2343 % The format of the Draw SetFontKerning method is:2344 % 2345 % double DrawGetTextInter wordSpacing(DrawingWand *wand)2335 % D r a w G e t T e x t I n t e r l i n e S p a c i n g % 2336 % % 2337 % % 2338 % % 2339 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 2340 % 2341 % DrawGetTextInterlineSpacing() gets the spacing between lines in text. 2342 % 2343 % The format of the DrawGetTextInterlineSpacing method is: 2344 % 2345 % double DrawGetTextInterlineSpacing(DrawingWand *wand) 2346 2346 % 2347 2347 % A description of each parameter follows: … … 2408 2408 % The format of the DrawGetVectorGraphics method is: 2409 2409 % 2410 % char *DrawGetVectorGraphics( constDrawingWand *wand)2410 % char *DrawGetVectorGraphics(DrawingWand *wand) 2411 2411 % 2412 2412 % A description of each parameter follows: … … 3111 3111 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 3112 3112 % 3113 % DrawPathCurveToQuadraticBezierSmooth Absolute() draws a quadratic Bezier3113 % DrawPathCurveToQuadraticBezierSmoothRelative() draws a quadratic Bezier 3114 3114 % curve (using relative coordinates) from the current point to (x,y). The 3115 3115 % control point is assumed to be the reflection of the control point on the … … 3169 3169 % 3170 3170 % void DrawPathCurveToSmoothAbsolute(DrawingWand *wand, 3171 % const double x2 const double y2,const double x,const double y)3171 % const double x2,const double y2,const double x,const double y) 3172 3172 % 3173 3173 % A description of each parameter follows: … … 3552 3552 % The format of the DrawPathLineToHorizontalAbsolute method is: 3553 3553 % 3554 % void DrawPathLineToHorizontalAbsolute(DrawingWand *wand, 3555 % const PathMode mode,const double x) 3554 % void DrawPathLineToHorizontalAbsolute(DrawingWand *wand,const double x) 3556 3555 % 3557 3556 % A description of each parameter follows: … … 4760 4759 % The format of the DrawSetFontResolution method is: 4761 4760 % 4762 % DrawBooleanType DrawSetFontResolution(DrawingWand *wand,4763 % const double x_resolution,const doub tly_resolution)4761 % MagickBooleanType DrawSetFontResolution(DrawingWand *wand, 4762 % const double x_resolution,const double y_resolution) 4764 4763 % 4765 4764 % A description of each parameter follows: … … 5974 5973 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 5975 5974 % 5976 % DrawSetTextInter wordSpacing() sets the spacing between line in text.5977 % 5978 % The format of the DrawSetInter wordSpacing method is:5979 % 5980 % void DrawSetTextInter wordSpacing(DrawingWand *wand,5975 % DrawSetTextInterlineSpacing() sets the spacing between line in text. 5976 % 5977 % The format of the DrawSetInterlineSpacing method is: 5978 % 5979 % void DrawSetTextInterlineSpacing(DrawingWand *wand, 5981 5980 % const double interline_spacing) 5982 5981 % … … 6524 6523 % The format of the DrawSetViewbox method is: 6525 6524 % 6526 % void DrawSetViewbox(DrawingWand *wand, size_t x1,6527 % size_t y1,size_t x2,size_ty2)6525 % void DrawSetViewbox(DrawingWand *wand,const double x1,const double y1, 6526 % const double x2,const double y2) 6528 6527 % 6529 6528 % A description of each parameter follows: … … 6540 6539 % 6541 6540 */ 6542 WandExport void DrawSetViewbox(DrawingWand *wand,ssize_t x1,ssize_t y1, 6543 ssize_t x2,ssize_t y2) 6544 { 6545 assert(wand != (DrawingWand *) NULL); 6546 assert(wand->signature == WandSignature); 6547 if (wand->debug != MagickFalse) 6548 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name); 6549 (void) MvgPrintf(wand,"viewbox %.20g %.20g %.20g %.20g\n",(double) x1, 6550 (double) y1,(double) x2,(double) y2); 6541 WandExport void DrawSetViewbox(DrawingWand *wand,const double x1, 6542 const double y1,const double x2,const double y2) 6543 { 6544 assert(wand != (DrawingWand *) NULL); 6545 assert(wand->signature == WandSignature); 6546 if (wand->debug != MagickFalse) 6547 (void) LogMagickEvent(WandEvent,GetMagickModule(),"%s",wand->name); 6548 (void) MvgPrintf(wand,"viewbox %.20g %.20g %.20g %.20g\n",x1,y1,x2,y2); 6551 6549 } 6552 6550 … … 6600 6598 % The format of the NewDrawingWand method is: 6601 6599 % 6602 % DrawingWand NewDrawingWand(void)6600 % DrawingWand *NewDrawingWand(void) 6603 6601 % 6604 6602 */ -
ImageMagick/trunk/MagickWand/drawing-wand.h
r6226 r7665 207 207 DrawSetTextEncoding(DrawingWand *,const char *), 208 208 DrawSetTextUnderColor(DrawingWand *,const PixelWand *), 209 DrawSetViewbox(DrawingWand *,ssize_t,ssize_t,ssize_t,ssize_t), 209 DrawSetViewbox(DrawingWand *,const double,const double,const double, 210 const double), 210 211 DrawSkewX(DrawingWand *,const double), 211 212 DrawSkewY(DrawingWand *,const double), -
ImageMagick/trunk/MagickWand/pixel-wand.c
r7656 r7665 2099 2099 % The format of the PixelSetPixelColor method is: 2100 2100 % 2101 % PixelSetPixelColor(PixelWand *wand,const PixelInfo *color)2101 % void PixelSetPixelColor(PixelWand *wand,const PixelInfo *color) 2102 2102 % 2103 2103 % A description of each parameter follows: -
ImageMagick/trunk/MagickWand/wand-view.c
r7577 r7665 398 398 % The format of the GetWandViewException method is: 399 399 % 400 % char *GetWandViewException(const PixelWand*wand_view,400 % char *GetWandViewException(const WandView *wand_view, 401 401 % ExceptionType *severity) 402 402 %
Note: See TracChangeset
for help on using the changeset viewer.
