AWARE [SYSTEMS] Imaging expertise for the Delphi developer
AWare Systems, Imaging expertise for the Delphi developer, Home TIFF and LibTiff Mailing List Archive

LibTiff Mailing List

TIFF and LibTiff Mailing List Archive
October 2008

Previous Thread
Next Thread

Previous by Thread
Next by Thread

Previous by Date
Next by Date

Contact

The TIFF Mailing List Homepage
This list is run by Frank Warmerdam
Archive maintained by AWare Systems



Valid HTML 4.01!



Thread

2008.10.15 06:51 "manipulating TIFF images", by Rajmohan Banavi
2008.10.15 09:33 "Re: manipulating TIFF images", by Gerben Vos
2008.10.15 09:39 "Re: manipulating TIFF images", by Rajmohan Banavi
2008.10.15 14:49 "Re: manipulating TIFF images", by Bob Friesenhahn
2008.10.16 10:12 "Re: manipulating TIFF images", by Rajmohan Banavi

2008.10.15 09:33 "Re: manipulating TIFF images", by Gerben Vos

Rajmohan Banavi wrote:

> I have seen many examples in the documentation of using libTIFF to
> read and write B&W, grey and color images. But have not come across
> anything on how to manipulate or change the image contents? are there
> any elsewhere?

Those manipulations are are generic and don't depend on the
image being a TIFF. So libtiff doesn't provide anything for this.
Try http://www.faqs.org/faqs/graphics/algorithms-faq/ or
http://www.faqs.org/faqs/graphics/faq/ for starters. They contain
pointers to books, too.

> Further, how does one go ahead with manipulating the image?

You read the image into memory using libtiff, then apply your changes
to the memory buffer, then use libtiff to write the image from memory
to file. If the image is exceedingly large, you can process by strip
or tile instead of the whole image at once.

					Gerben.