I am processing a crystal report on RAS server,and exporting it to PDF, using the RAS Dlls.
Dim Report As ReportClientDocument
Dim crExportData As New ByteArray
Dim crExportType As CrReportExportFormatEnum
crExportType = CrReportExportFormatEnum.crReportExportFormatPDF
crExportData = Report.PrintOutputController.Export(crExportType)
A gray background is applied to an object in crystal report, with RGB color code (216,216,216).
On exporting this report to pdf, the color appears as required.
However, when printing this PDF in a digital printer (uses CMYK color format), the color changes to Pinkish Gray.
The color remains gray as required, in other printers.
Is there any way to make the exported PDF CMYK compliant?
Please help.