public void GraphicProject( string strFullLinkFileName, string strImagePath, Export.Format imageFormat, int iColorDepth, int iWidth, Export.Compression imageCompression, bool bBlackAndWhite )
public: void GraphicProject( String^ strFullLinkFileName, String^ strImagePath, Export.Format imageFormat, int iColorDepth, int iWidth, Export.Compression imageCompression, bool bBlackAndWhite )
Parameters
- strFullLinkFileName
- Full link file name of the project to be exported.
- strImagePath
- Directory to which the image files will be written. If the folder does not exist, it will be created. If the user does not have the necessary rights to access the file system, an exception will be thrown. A sub\-folder named after the project will be created in which the images will be stored.
- imageFormat
- Image format\: Supported export formats are\:
* BMP: available color depth: 1, 4, 8, 16, 24 and 32 * TIF: available color depth: 1, 4, 8, 24 and 32 * GIF: color depth is irrelevant * PNG: available color depth: 1, 4, 8, 16, 24 and 32 * JPG: available color depth: 1, 4, 8, 16, 24 and 32. The enum IMAGE_FORMAT defines the necessary values. If an invalid format is set, the page will be exported as Tiff.
- iColorDepth
- Color depth of the image\: Allowed values are 1, 4, 8, 16, 24, and 32. If an invalid value is set, a color depth of 24 bit us used.
- iWidth
- Width of the image in pixels.The height is calculated automatically to keep the aspect ratio of the page.
- imageCompression
- Sets the image compression for the Tiff export. This parameter has no influence on other export formats. For the compression according\: CCITT3, CCITT4, and RLE the color depth always is 1, i.e. a binary image is created.
- bBlackAndWhite
- If set to true b/w images will be created. This does not influence the image format or the image size.