i am using pdfsharp in a 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 the pdf gets generated, i see an error on the pdf saying "Image not found"
has anyone else seen this issue?