Here is my code. i want to save the image in pdf file and how to save that pdf file in server map path or any location using .net mvc3
PdfDocument doc = new PdfDocument();
PdfPage page = doc.Pages.Add();
PdfGraphics graphics = page.Graphics;
string ImageFilePath = Server.MapPath("Chart.png");
PdfImage pdfimage = PdfImage.FromFile(ImageFilePath);
graphics.DrawImage(pdfimage, 10, 10);
Any one help me..
Thanks, Bharathi.