3

I would need to insert images in a pdf and then put text on top of the image at certain coordinates.

Is this possible with iTextSharp?

Bobrovsky
  • 13,789
  • 19
  • 80
  • 130
Lieven Cardoen
  • 25,140
  • 52
  • 153
  • 244

1 Answers1

8

Yes you can.

The key is to set your iTextSharp.text.Image Alignment property to iTextSharp.text.Image.UNDERLYING.

This page on mikesdotnetting.com has an example.

Jay Riggs
  • 53,046
  • 9
  • 139
  • 151
  • Could you explain it in more detail? I have a Image which represents the Background of the PDF. Now i would like to add text on this Background. How could i do this? – Lukas Hieronimus Adler Oct 31 '19 at 14:01