CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 2001
    Posts
    22

    TIFF image and MFC

    Where can I find some simple source code to read/write/display a TIFF image without the overhead of using the likes of pianlib ect.


  2. #2
    Join Date
    Apr 1999
    Posts
    27,449

    Re: TIFF image and MFC

    Where can I find some simple source code to read/write/display a TIFF image without the overhead of using the likes of pianlib ect.

    There is no such thing as "simple" source code to read/write/and display TIFF files. TIFF files *are* a lot of overhead, since there are so many different versions of TIFF, so expect the code to reflect the different types.

    The source code that you are looking for is LibTiff, which you can find on the Internet. Check out the size of the source in LibTiff and the number of functions. It isn't small, is it?

    PaintLib is based on this source code, and it simplifies handling of LibTiff, so paintlib was a very good choice.

    Regards,

    Paul McKenzie


  3. #3
    Join Date
    Jun 2013
    Posts
    1

    Re: TIFF image and MFC

    that's right, you can find a lot source codes about how to read tiff files vb.net on the internet. but there is such thing as simplicity. image reader present you many functions and types.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured