Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any simple way to open and display multipage .tif files? I want to write a simple winForm application to open multiple page .tif file and scrolling around these pages? I want to add next and previous buttons to my project to scroll around them. Any suggestions or examples?

share|improve this question
Actually, what you want is to give you the complete program ? – Jaroslaw Waliszko Nov 23 '12 at 14:02
Start out by learning about the TIFF-format (remotesensing.org/libtiff might be a good start) so you can parse the files and load the different images, then you can quite easily find a tutorial on panning an image and then you could improve your accept rate a bit. – Karl-Johan Sjögren Nov 23 '12 at 14:06
Of course no Jaroslaw, Thanks Karl I'll check it out – cihata87 Nov 23 '12 at 14:57

2 Answers

Try the free DotImage Photo SDK by Atalasoft. Though it is not open source, it is free and a very good choice for viewing images.

Meanwhile I will have a look if AForge.Net and EmguCV can open Multipage TIFF images and let you know. These frameworks are open source and include very powerful SDKs for image processing.

share|improve this answer

I know an SDK named leadtools that has the ability to load and display multipage TIF files using .NET. For a sample code, see the following link: http://www.leadtools.com/help/leadtools/v175/dh/to/leadtools.topics~leadtools.topics.loadingsavingtutorials.html

share|improve this answer
Lone link is considered a poor answer (see faq) since it is meaningless by itself and target resource is not guaranteed to be alive in the future. It would be preferable to include the essential parts of the answer here, and provide the link for reference. – j0k Feb 5 at 8:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.