PDF Export: ColorSpace and BitsPerComponent
- Fabio Pagano
- Posts: 355
- Joined: Mon Apr 16, 2007 12:38 pm
- Location: Bari (Italy)
PDF Export: ColorSpace and BitsPerComponent
I need to create a PDF with following specifications for images:
/ColorSpace /DeviceGray
/BitsPerComponent 1
Actually, when i export pdf, in the pdf text (i see it opening the pdf with notepad) i see:
/ColorSpace /DeviceRGB
/BitsPerComponent 8
for each image.
Is it possible to create a PDF with ColorSpace=DeviceGray and BitsPerComponent=1 in its images?
Thank you.
/ColorSpace /DeviceGray
/BitsPerComponent 1
Actually, when i export pdf, in the pdf text (i see it opening the pdf with notepad) i see:
/ColorSpace /DeviceRGB
/BitsPerComponent 8
for each image.
Is it possible to create a PDF with ColorSpace=DeviceGray and BitsPerComponent=1 in its images?
Thank you.
PDF Export: ColorSpace and BitsPerComponent
Hello, Fabio.
Do you wish to export all images as monochrome?
Thank you.
Do you wish to export all images as monochrome?
Thank you.
- Fabio Pagano
- Posts: 355
- Joined: Mon Apr 16, 2007 12:38 pm
- Location: Bari (Italy)
PDF Export: ColorSpace and BitsPerComponent
Dear Fabio,
We have added this to our to-do list.
Thank you.
We have added this to our to-do list.
Thank you.
PDF Export: ColorSpace and BitsPerComponent
hi
I have a similar request - for TIFF format.
we are exporting documents into e-archive and we want to reduce the file-size as much as possible. so TIFF with monochrome option would be very helpful.
btw we also use PDF with monochrome with some other clients, so fabio's request will also be helpful.
thank you
I have a similar request - for TIFF format.
we are exporting documents into e-archive and we want to reduce the file-size as much as possible. so TIFF with monochrome option would be very helpful.
btw we also use PDF with monochrome with some other clients, so fabio's request will also be helpful.

thank you
PDF Export: ColorSpace and BitsPerComponent
Hello,
Export to Tiff format support monochrome mode start from 2009.3 version.
Thank you.
Export to Tiff format support monochrome mode start from 2009.3 version.
Thank you.
- Fabio Pagano
- Posts: 355
- Joined: Mon Apr 16, 2007 12:38 pm
- Location: Bari (Italy)
PDF Export: ColorSpace and BitsPerComponent
In update of 9 february 2010 i read:
"Upd: Some improvements in the PDF export."
Is this the possibility to export all images as monochrome in a pdf file, as i requested?
Thank you.
"Upd: Some improvements in the PDF export."
Is this the possibility to export all images as monochrome in a pdf file, as i requested?
Thank you.
PDF Export: ColorSpace and BitsPerComponent
Hello,
No sorry. This is some fixes in export to pdf. Your request in our todo list.
Thank you.
No sorry. This is some fixes in export to pdf. Your request in our todo list.
Thank you.
PDF Export: ColorSpace and BitsPerComponent
Hello,
We made some improvements in export to PDF.
Now you can export images as monochrome.
You can use following code, for example:
Also you can select monochrome mode in export setup form, in ImageCompressionMethod combobox.
The patch will be available in the next prerelease build from 9-Mar-2010.
Thank you.
We made some improvements in export to PDF.
Now you can export images as monochrome.
You can use following code, for example:
Code: Select all
Stimulsoft.Report.Export.StiPdfExportSettings exportSettings = new Stimulsoft.Report.Export.StiPdfExportSettings();
exportSettings.ImageFormat = Stimulsoft.Report.Export.StiImageFormat.Monochrome;
exportSettings.DitheringType = Stimulsoft.Report.Export.StiMonochromeDitheringType.FloydSteinberg;
report.ExportDocument(StiExportFormat.Pdf, @"d:\test.pdf", exportSettings);
The patch will be available in the next prerelease build from 9-Mar-2010.
Thank you.
- Fabio Pagano
- Posts: 355
- Joined: Mon Apr 16, 2007 12:38 pm
- Location: Bari (Italy)
PDF Export: ColorSpace and BitsPerComponent
Thank you very much.