Page 1 of 1

Resolution

Posted: Fri Sep 26, 2008 4:37 pm
by Newbie
Hi

I've just downloaded the free version of the PDF Printer for evaluation and have a problem setting the Resolution of the PDF - no matter what I set Res or ResX/ResY to, the quality of the PDF doesn't change (and the file size is identical).

Anyone come across this before - my code is pasted below.

Any help gratefully received.

Bullzip.PDFPrinterSettings bullZip = new PDFPrinterSettings();

bullZip.SetValue("output", outFile);
bullZip.SetValue("ShowSettings", "never");
bullZip.SetValue("ShowPDF", "no");
bullZip.SetValue("ShowSaveAS", "nofile");
bullZip.SetValue("ConfirmOverwrite", "no");
bullZip.SetValue("Res", "1000");
//or
// bullZip.SetValue("ResX", "1000");
// bullZip.SetValue("ResY", "1000");

bullZip.WriteSettings(true);

Re: Resolution

Posted: Sat Sep 27, 2008 3:06 pm
by jr
Does your PDF contain any graphics? Is the graphics bitmap images or vector based images?

Regards,
Jacob

Re: Resolution

Posted: Tue Sep 30, 2008 9:53 am
by Newbie
Hi Jacob

I have bitmap images in the PDF.

Regards