|
|
Tag Browser: addimage
< 1 second(s)
-
Hello Aspose staff,
I am trying to use PdfFileMend.AddImage to add images to pdf-files. The problem is that no matter what coordinates I am using for the upper right corner - the result is ALWAYS the same: The image always covers nearly the whole page.
I attached a sample project in Visual Studio and the output-pdf. What's wrong here?
I am ...
-
Hi ,For Word 2007, insert images from files into docm and docx documents through API DocumentBuilder.insertImage, and then running below macro. The inserted images can not display well, instead display cross marks:ActiveDocument.Fields.UpdateAfter investigation, found that the images were insert into docm and docs files as below fields, not ...
-
here is my code to place a basic image on a pdf:PdfFileMend mendor;mendor = new PdfFileMend(''bpmpe004.pdf'', ''new.pdf'');mendor.AddImage(''TOLOGO.jpg'', 1, 116, 707, 299, 759);mendor.Close();Here is the overload I am using: public bool AddImage(string imageName, int pageNum, float lowerLeftX, float lowerLeftY, float upperRightX, float ...
|
|