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.
myImg.SelectActiveFrame(System.Drawing.Imaging.FrameDimension.Page,int);
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.