logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

icetImageGetWidth,icetImageGetHeight,icetImageGetNumPixels-- get dimensions of an image

Bugs

       None known.

Description

icetImageGetWidth,icetImageGetHeight,and  icetImageGetNumPixelsallow  you  to  query the size of an image
       with  respect  to  the  number  of  pixels.  These  functions  define  the  buffer   size   returned   by
       icetImageGetColor and icetImageGetDepth.

Errors

       None.

Name

icetImageGetWidth,icetImageGetHeight,icetImageGetNumPixels-- get dimensions of an image

Return Value

icetImageGetWidthreturns   the   number   of   pixels   along  the  horizontal  axis  of  the  image  and
       icetImageGetHeightreturns  the   number   of   pixels   along   the   vertical   axis   of   the   image.
       icetImageGetNumPixelsis  a  convenience  function  that  returns the total number of pixels in image (the
       width times the height).

See Also

icetImageGetColor(3), icetImageGetDepth(3)

IceT Reference                                   August  9, 2010                        icetImageGetNumPixels(3)

Synopsis

       #include <IceT.h>

       IceTSizeType   icetImageGetWidth       (  const IceTImageimage   );
       IceTSizeType   icetImageGetHeight      (  const IceTImageimage   );
       IceTSizeType   icetImageGetNumPixels   (  const IceTImageimage   );

Warnings

       None.

See Also