views:

1128

answers:

3

I'mt tring to edit multipage tiff by creating Graphics from the image, but i encountered the error message: “A Graphics object cannot be created from an image that has an indexed pixel format.”

How can i edit multipage tiff?

A: 

Here is a link to a CodeProject sample that includes code for converting a TIFF file to a normal Bitmap, which you can then work with like any other Bitmap:

http://www.codeproject.com/KB/GDI-plus/BitonalImageConverter.aspx

MusiGenesis
A: 

I once wrote little utility to create encrypted pdfs from tiff images. Here is a piece of code to get pages from tiff image:

var bm= new System.Drawing.Bitmap('tif path');
var total = bm.GetFrameCount(System.Drawing.Imaging.FrameDimension.Page);
for(var x=0;x<total;x++)
{
 bm.SelectActiveFrame(System.Drawing.Imaging.FrameDimension.Page,x);
 var img=Image.GetInstance(bm,null,false);

 //do what ever you want with img object
}
TheVillageIdiot
I can't find GetInstance method from Image?
Tamir
A: 

I wrote something to extract single pages from a multipage tiff file.

// Load as Bitmap
using (Bitmap bmp = new Bitmap(file))
{
    // Get pages in bitmap
    int frames = bmp.GetFrameCount(System.Drawing.Imaging.FrameDimension.Page);
    bmp.SelectActiveFrame(System.Drawing.Imaging.FrameDimension.Page, tiffpage);
    if (bmp.PixelFormat != PixelFormat.Format1bppIndexed)
    {
        using (Bitmap bmp2 = new Bitmap(bmp.Width, bmp.Height))
        {
            bmp2.Palette = bmp.Palette;
            bmp2.SetResolution(bmp.HorizontalResolution, bmp.VerticalResolution);
            // create graphics object for new bitmap
            using (Graphics g = Graphics.FromImage(bmp2))
            {
                // copy current page into new bitmap
                g.DrawImageUnscaled(bmp, 0, 0);

        // do whatever you migth to do
                ...

            }
        }
    }
}

The snippet loads the tif file and extracts the one page (number in variable tiffpage) into a new bitmap. This is not indexed and an graphics object can be created.

Christian13467