Hi
Compression only applies to images in the PDF document, not the document as a whole.
You can use the JPEG_* properties to configure the compression level:
// Convert full color PNG to PDF
ImageEnView1.IO.LoadFromFile('D:\input.png');
ImageEnView1.IO.Params.PDF_PaperSize := iepA4;
ImageEnView1.IO.Params.PDF_Compression := ioPDF_Jpeg;
ImageEnView1.IO.Params.JPEG_Quality := 90;
ImageEnView1.IO.Write('D:\out.pdf');
Nigel
Xequte Software
www.imageen.com