Share

AcGiImageOrient

C++

typedef enum {
  kAcGiXLeftToRightTopFirst,
  kAcGiXLeftToRightBottomFirst,
  kAcGiXRightToLeftTopFirst,
  kAcGiXRightToLeftBottomFirst,
  kAcGiYTopToBottomLeftFirst,
  kAcGiYTopToBottomRightFirst,
  kAcGiYBottomToTopLeftFirst,
  kAcGiYBottomToTopRightFirst
} AcGiImageOrient;

File

acgidefs.h

Members

Members Description
kAcGiXLeftToRightTopFirst Scan lines are rows from the top first, with each pixel row progressing from left to right.
kAcGiXLeftToRightBottomFirst Scan lines are rows from the bottom first, with each pixel row progressing from left to right.
kAcGiXRightToLeftTopFirst Scan lines are rows from the top first, with each pixel row progressing from right to left.
kAcGiXRightToLeftBottomFirst Scan lines are rows from the bottom first, with each pixel row progressing from right to left.
kAcGiYTopToBottomLeftFirst Scan lines are columns starting from the left, with each pixel column progressing from top to bottom.
kAcGiYTopToBottomRightFirst Scan lines are columns starting from the right, with each pixel column progressing from top to bottom.
kAcGiYBottomToTopLeftFirst Scan lines are columns starting from the left, with each pixel column progressing from bottom to top.
kAcGiYBottomToTopRightFirst Scan lines are columns starting from the right, with each pixel column progressing from bottom to top.

Description

Description

Was this information helpful?