How to insert picture at given position?

Hi,Support,
I want to insert a picture at a given position of a given page, with the inserted picture behind text and the new position is as (0,0), how to perform it?
-----------VB.Net 2008 Codes------------
Builder.InsertImage(PicFile,Builder.PageSetup.PageWidth,Builder.PageSetup.PageHeight,0,0,Builder.PageSetup.PageWidth,Builder.PageSetup.PageHeight,Drawing.WrapType.none)

But in the output, the left position of the inserted pic is not the correct one (0,0), may be the one (50,40). How to fix it?

Thanks for your help!

Ducaisoft

@ducaisoft,

Please check if the following code helps to achieve what you are looking for?

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

PageSetup ps = builder.PageSetup;

builder.MoveToDocumentEnd();
Shape img = builder.InsertImage("E:\\Temp\\Aspose.Words.jpg");

img.Left = 0;
img.Top = 0;

img.RelativeHorizontalPosition = RelativeHorizontalPosition.Page;
img.RelativeVerticalPosition = RelativeVerticalPosition.Page;

img.WrapType = WrapType.None;
img.BehindText = true;

doc.Save("E:\\Temp\\19.10.docx");

Thank you very much!

It perfectly work!