I want to add an image over the hole area of a pdf file (pdf file is landscape).
For Portrait pdf-files (pdf width: 595 / height: 842) this works fine:
mendor.AddImage(inImgStream, imgC, 0, 0, 595, 842);
The image is perfectly added to the pdf, but for Landscape pdf-files (pdf width: 842 / height: 595) I couldn’t.
mendor.AddImage(inImgStream, imgC, 0, 0, 842, 595);
What is wrong?
I added the base page to which I add the image.
Regards, John