Right thanks.
I have another problem :)
Do you know how to resize a picture before insert it in the document.
I used that but it cuts my picture and not resize it :
---------------------------------------------------------------------------------------
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.InsertImage("MyImage.jpg", RelativeHorizontalPosition.Margin, 100,
RelativeVerticalPosition.Margin, 100, 200, 100, WrapType.Square);
---------------------------------------------------------------------------------------
Thank you ;)
Yohann