开发者

PDFsharp can't find image (image not found)

I am using PDFsharp in an ASP.NET MVC application. I want to add an image but no matter what directory I put it in, it can't seem to find it. I have code like this as I am trying to copy the sample application

 Section section = document.AddSection();
 Image image13 = section.AddImage("../../images/logo.png");

No matter what directory I put this image in, when开发者_如何学Python the PDF gets generated, I see an error on the PDF saying "Image not found"

Has anyone else seen this issue?


It might be looking for a full path?

Try

Image image13 = section.AddImage(Server.MapPath("~/images/logo.png"));


i am using pdfsharp in a asp.net mvc application.

BTW: You are not using PDFsharp, you are using MigraDoc.

MigraDoc searches the images relative to the current directory. ASPX pages are compiled to and are executed from a temporary directory, not from the project directory. Therefore relative paths will not work as expected.

Assembly.CodeBase might help to locate the images; Assembly.Location indicates the temporary directory.

Assembly.CodeBase can be used in code that is shared between ASP.NET and .NET. Server.MapPath can also be used (as suggested by Marko), but it works in ASP.NET only.


The MigraDoc Document object has an ImagePath property that allows you to specify the directories that will be searched for images (separate multiple directories with semikola).

If images can be found relative to the location of the assembly, then Assembly.CodeBase can be used to locate the assembly (as mentioned in my earlier answer).


Old thread but might come in handy for someone

This worked for me:

Document doc = new Document();
doc.ImagePath = Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().CodeBase).Replace("file:\\", "");

I then set my image to copy always and added it with its relative path by bin directory in my Web project.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜