Page 2 of 3
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T12:43:20-07:00
by RetroJ
In the type signature of MagickSetImageExtent, the type given for 'rows' is 'const unsigned'; it should be 'const size_t'.
http://imagemagick.org/api/magick-image ... mageExtent
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T13:00:09-07:00
by RetroJ
In the type signature of MagickSetImageResolution there is a typo, 'doubtl' instead of 'double'.
http://imagemagick.org/api/magick-image ... Resolution
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T13:27:24-07:00
by RetroJ
The type signature of MagickShearImage has a typo in the type of y_shear; it reads 'onst' instead of 'const'.
http://imagemagick.org/api/magick-image ... ShearImage
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T14:15:33-07:00
by RetroJ
The type signature of ClearPixelIterator gives the return type as PixelIterator*, but it should be void.
http://imagemagick.org/api/pixel-iterat ... elIterator
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T14:21:22-07:00
by RetroJ
The type signature for PixelIteratorClearException uses the variable name 'wand', but it was probably intended to be 'iterator'.
http://imagemagick.org/api/pixel-iterat ... rException
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T14:23:46-07:00
by RetroJ
The type signature of NewPixelRegionIterator gives the return type as 'PixelIterator', but it should be 'PixelIterator *'.
http://imagemagick.org/api/pixel-iterat ... onIterator
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T14:28:32-07:00
by RetroJ
In the type signature of PixelGetIteratorExceptionType, the type of the first argument is given as 'const PixelWand *'; it should be 'const PixelIterator *'.
http://imagemagick.org/api/pixel-iterat ... eptionType
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T16:58:31-07:00
by RetroJ
The type signature for PixelSetColorFromWand does not give a return type; it should be 'void'.
http://imagemagick.org/api/pixel-wand.p ... orFromWand
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T17:26:05-07:00
by RetroJ
The type signature of PixelSetMagickColor has no return type; it should be 'void'. This function is also not in doxygen.
http://imagemagick.org/api/pixel-wand.p ... agickColor
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T17:29:31-07:00
by RetroJ
The type signature for PixelSetQuantumColor gives no return type; it should be 'void'.
http://imagemagick.org/api/pixel-wand.p ... antumColor
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T18:49:06-07:00
by RetroJ
In the type signature for DrawGetFontResolution, the return type is given as 'DrawBooleanType'; it should be 'MagickBooleanType'.
http://imagemagick.org/api/drawing-wand ... Resolution
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T18:59:41-07:00
by RetroJ
There is an errant '$' in the type signature of DrawGetStrokeColor
http://imagemagick.org/api/drawing-wand ... trokeColor
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T19:10:56-07:00
by RetroJ
In the type signature for DrawGetTextAlignment, the keyword 'const' is missing before the first argument.
http://imagemagick.org/api/drawing-wand ... tAlignment
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T19:14:20-07:00
by RetroJ
In the type signature for DrawGetTextDecoration, the keyword 'const' is missing from the first argument.
http://imagemagick.org/api/drawing-wand ... Decoration
Re: MagickGetImageProfiles documentation error
Posted: 2012-04-25T19:21:22-07:00
by RetroJ