Hello,
Using CorelDRAW X3, I need to export my drawing as an RGB TIFF, however, I need a specific ICC Profile applied before or during export.
There is the "UseColorProfile" option, which I have set to "true", but how would I programmatically set or specify that a specific color profile be used before export (and reset it afterwords)?
Any code examples would be helpful.
This is what I have so far:
Code:
Dim filter As CorelDRAW.ExportFilter = objCorel.ActiveDocument.ExportBitmap(srcFile, CorelDRAW.cdrFilter.cdrTIFF, CorelDRAW.cdrExportRange.cdrSelection, CorelDRAW.cdrImageType.cdrRGBColorImage, width * 144, height * 144, 144, 144, CorelDRAW.cdrAntiAliasingType.cdrSupersampling, False, False, True, False, CorelDRAW.cdrCompressionType.cdrCompressionLZW, Nothing)
filter.Finish()