Changeset 7665


Ignore:
Timestamp:
04/26/12 07:30:17 (14 months ago)
Author:
cristy
Message:
 
Location:
ImageMagick/trunk/MagickWand
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ImageMagick/trunk/MagickWand/drawing-wand.c

    r7580 r7665  
    256256  void (*DrawSetTextUnderColor)(DrawingWand *,const PixelWand *); 
    257257  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); 
    260260  void (*PeekDrawingWand)(DrawingWand *); 
    261261  MagickBooleanType (*PopDrawingWand)(DrawingWand *); 
     
    15951595%  The format of the DrawGetFontResolution method is: 
    15961596% 
    1597 %      DrawBooleanType DrawGetFontResolution(const DrawingWand *wand, 
     1597%      MagickBooleanType DrawGetFontResolution(const DrawingWand *wand, 
    15981598%        double *x,double *y) 
    15991599% 
     
    18751875% 
    18761876%      void DrawGetStrokeColor(const DrawingWand *wand, 
    1877 $        PixelWand *stroke_color) 
     1877%        PixelWand *stroke_color) 
    18781878% 
    18791879%  A description of each parameter follows: 
     
    21812181%  The format of the DrawGetTextAlignment method is: 
    21822182% 
    2183 %      AlignType DrawGetTextAlignment(DrawingWand *wand) 
     2183%      AlignType DrawGetTextAlignment(const DrawingWand *wand) 
    21842184% 
    21852185%  A description of each parameter follows: 
     
    22452245%  The format of the DrawGetTextDecoration method is: 
    22462246% 
    2247 %      DecorationType DrawGetTextDecoration(DrawingWand *wand) 
     2247%      DecorationType DrawGetTextDecoration(const DrawingWand *wand) 
    22482248% 
    22492249%  A description of each parameter follows: 
     
    23332333%                                                                             % 
    23342334%                                                                             % 
    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 %  DrawGetTextInterwordSpacing() gets the spacing between lines in text. 
    2342 % 
    2343 %  The format of the DrawSetFontKerning method is: 
    2344 % 
    2345 %      double DrawGetTextInterwordSpacing(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) 
    23462346% 
    23472347%  A description of each parameter follows: 
     
    24082408%  The format of the DrawGetVectorGraphics method is: 
    24092409% 
    2410 %      char *DrawGetVectorGraphics(const DrawingWand *wand) 
     2410%      char *DrawGetVectorGraphics(DrawingWand *wand) 
    24112411% 
    24122412%  A description of each parameter follows: 
     
    31113111%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    31123112% 
    3113 %  DrawPathCurveToQuadraticBezierSmoothAbsolute() draws a quadratic Bezier 
     3113%  DrawPathCurveToQuadraticBezierSmoothRelative() draws a quadratic Bezier 
    31143114%  curve (using relative coordinates) from the current point to (x,y). The 
    31153115%  control point is assumed to be the reflection of the control point on the 
     
    31693169% 
    31703170%      void DrawPathCurveToSmoothAbsolute(DrawingWand *wand, 
    3171 %        const double x2const double y2,const double x,const double y) 
     3171%        const double x2,const double y2,const double x,const double y) 
    31723172% 
    31733173%  A description of each parameter follows: 
     
    35523552%  The format of the DrawPathLineToHorizontalAbsolute method is: 
    35533553% 
    3554 %      void DrawPathLineToHorizontalAbsolute(DrawingWand *wand, 
    3555 %        const PathMode mode,const double x) 
     3554%      void DrawPathLineToHorizontalAbsolute(DrawingWand *wand,const double x) 
    35563555% 
    35573556%  A description of each parameter follows: 
     
    47604759%  The format of the DrawSetFontResolution method is: 
    47614760% 
    4762 %      DrawBooleanType DrawSetFontResolution(DrawingWand *wand, 
    4763 %        const double x_resolution,const doubtl y_resolution) 
     4761%      MagickBooleanType DrawSetFontResolution(DrawingWand *wand, 
     4762%        const double x_resolution,const double y_resolution) 
    47644763% 
    47654764%  A description of each parameter follows: 
     
    59745973%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 
    59755974% 
    5976 %  DrawSetTextInterwordSpacing() sets the spacing between line in text. 
    5977 % 
    5978 %  The format of the DrawSetInterwordSpacing method is: 
    5979 % 
    5980 %      void DrawSetTextInterwordSpacing(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, 
    59815980%        const double interline_spacing) 
    59825981% 
     
    65246523%  The format of the DrawSetViewbox method is: 
    65256524% 
    6526 %      void DrawSetViewbox(DrawingWand *wand,size_t x1, 
    6527 %        size_t y1,size_t x2,size_t y2) 
     6525%      void DrawSetViewbox(DrawingWand *wand,const double x1,const double y1, 
     6526%        const double x2,const double y2) 
    65286527% 
    65296528%  A description of each parameter follows: 
     
    65406539% 
    65416540*/ 
    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); 
     6541WandExport 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); 
    65516549} 
    65526550 
     
    66006598%  The format of the NewDrawingWand method is: 
    66016599% 
    6602 %      DrawingWand NewDrawingWand(void) 
     6600%      DrawingWand *NewDrawingWand(void) 
    66036601% 
    66046602*/ 
  • ImageMagick/trunk/MagickWand/drawing-wand.h

    r6226 r7665  
    207207  DrawSetTextEncoding(DrawingWand *,const char *), 
    208208  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), 
    210211  DrawSkewX(DrawingWand *,const double), 
    211212  DrawSkewY(DrawingWand *,const double), 
  • ImageMagick/trunk/MagickWand/pixel-wand.c

    r7656 r7665  
    20992099%  The format of the PixelSetPixelColor method is: 
    21002100% 
    2101 %      PixelSetPixelColor(PixelWand *wand,const PixelInfo *color) 
     2101%      void PixelSetPixelColor(PixelWand *wand,const PixelInfo *color) 
    21022102% 
    21032103%  A description of each parameter follows: 
  • ImageMagick/trunk/MagickWand/wand-view.c

    r7577 r7665  
    398398%  The format of the GetWandViewException method is: 
    399399% 
    400 %      char *GetWandViewException(const PixelWand *wand_view, 
     400%      char *GetWandViewException(const WandView *wand_view, 
    401401%        ExceptionType *severity) 
    402402% 
Note: See TracChangeset for help on using the changeset viewer.