WHen I insert a Image into a existing PDF whis CFPDF or directely whis iText, the size of my image is increased by 1.5.

How to control the image size ?

my code are inspired from :
http://stackoverflow.com/questions/697122/adding-a-dynamic-image-to-a-pdf-using-coldfusion-and-itext

link|improve this question
That example is not scaling. Can you post your code? – Leigh Feb 11 '10 at 16:59
Huu ... finaly, no error of scaling.... sorry for this – Alain Feb 12 '10 at 8:47
feedback

1 Answer

up vote 0 down vote accepted

If you are doing a catalogue type PDF it will be best to ensure your images are manually sized in the cfml to a certain height and width.

I have printed tons of images in Coldfusion into a pdf before and come across a few things, you might have one of the following:

1) Image resolution is higher than screen. I had a case, a while ago that the image was set to 300 dpi and the document wasn't. It was with a third party PDF creator however.

2) You might want to check the resolution of the pdf you're printing to (whether it's screen (72 dpi) vs. print (150+ dpi)) and see if there's something there.

3) If you can, size the images manually to have a maximum

link|improve this answer
tanks to you for this response – Alain Feb 14 '10 at 19:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.