Click here to Skip to main content
Click here to Skip to main content

Using ASP.NET Charting with Image Maps in MVC

By , 13 Dec 2011
 
MVCChart.zip
MVCChart
Lib
itextsharp.dll
itextsharp.xtra.dll
MVCChart
bin
Content
Controllers
Global.asax
Models
MVCChart.csproj.user
obj
Debug
Properties
Utilities
ChartUtilities
Views
Home
using System.IO;
using iTextSharp.text;
using iTextSharp.text.pdf;

namespace MVCChart.Utilities
{
    public class PdfUtility
    {
        // Create a simple Pdf document and add an image to it.
        public static MemoryStream GetSimplePdf(MemoryStream chartImage)
        {
            const int documentMargin = 10;

            var pdfStream = new MemoryStream();
            var pdfDocument = new Document(PageSize.LETTER);
            pdfDocument.SetMargins(documentMargin, documentMargin, documentMargin, documentMargin);
            PdfWriter pdfWriter = PdfWriter.GetInstance(pdfDocument, pdfStream);

            Image image = Image.GetInstance(chartImage.GetBuffer());
            image.SetAbsolutePosition(documentMargin
                , pdfDocument.PageSize.Height - documentMargin - image.ScaledHeight);

            pdfDocument.Open();
            pdfDocument.Add(image);
            pdfDocument.Close();
            pdfWriter.Flush();

            return pdfStream;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Dr. Song Li
United States United States
Member
I have been working in the IT industry for some time. It is still exciting and I am still learning. I am a happy and honest person, and I want to be your friend.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 13 Dec 2011
Article Copyright 2011 by Dr. Song Li
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid