web page header logo


ODB_RIP Data Structures

this list is not complete until the library has been completed and tested.

ODB_RipOpenODB

struct ODBRIP_DLL_SPEC sODBSTEPS{
  string mName;
  double mExtent[4];

  vector <string> mChildList;
};
struct ODBRIP_DLL_SPEC sODBLAYERS{
  string mName;
  int mType;
};

Function ODB_RipFreeInfo

struct ODBRIP_DLL_SPEC sODBTREE{
  vector <struct sODBSTEPS> mStepList;
  vector <struct sODBLAYERS> mLayerList;
};

ODB_RipGetImage

struct ODBRIP_DLL_SPEC sIMAGEDESC{
  int mImageHeight;	            //Band height in pixels
  int mImageWidth;	            //Band width in pixels
  int mBandNumber;                  //Band sequence number
  int mRowAdjust;
  int mScanlines;
  double mImageUserExtents[4];
  int mRipDirection;                //RIP_DIR_STD or RIP_DIR_VERT
  int mRipIncrement;                //Value that determines where to split the band.
};