Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Multipage TIF Viewer

0.00/5 (No votes)
26 Nov 2008 2  
A simple and useful viewer of multipage TIF/TIFF images

Introduction

Hi. This is my first article, so it's not so well written, but I hope you'll get the point.

I'll try to show you how to create a simple multipage TIFF, TIF document. It's a sample, so you can edit it by your own wishes and it's functionality can be upgraded endlessly. To give this code a tryout - download the example application and use the example TIFF that's in the folder (it's a US Patent *.tiff file).

So, let's get to the point. You have multipage TIFFs and you can't afford expensive, but useful libraries. Well, this might be just the thing for you. In this sample, you'll meet a few lines of code from GUI+ on how to open and navigate through pages of a multipage TIFF document. And I should not forget to add - the sample includes opening the file, showing it in a picturebox and it has two buttons for navigation (next page, previous page) - but this can be changed on a textbox for realtime change.

Using the Code

The code is quite simple to understand. You use System.Drawing and two Image objects. The code in the sample is well commented so I think you'll understand what's meant by what.

Here is the most important part of the code which operates the whole thing. Everything else is in the sample.

// going to the selected page
myImg.SelectActiveFrame(System.Drawing.Imaging.FrameDimension.Page,int); 

// setting the new page as an image	
myBmp = new Bitmap(myImg,pictureBox1.Width,pictureBox1.Height); 	

Points of Interest

You can check the page navigation buttons, on how they change the current page integer. The loaded document starts with 0. The GUI+ is great.

Conclusion

As this is my first article, I think I shouldn't be judged that much on the spelling, the explanations and the help I'll give as feedback to your questions/remarks/..., which are more than welcome. And please, if you have created any great applications, based on this article - post them here and let us have a look. The last thing I'd like to add is - I'm more a rookie with C# than a senior or an expert which means I've got a lot to learn. I hope you enjoyed this sample and this article.

History

Nothing new, but I think a lot of things should be added in the future... but like I said - it's just a sample to get started.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here