0

Can someone share an example of how to edit an existing TIFF image using LibTiff in C#. For example, how can I add the current date on the top right corner to each page in a multi-page TIFF image?

Chris
  • 44,602
  • 16
  • 137
  • 156
mcpunjabi
  • 1
  • 1

1 Answers1

0

Neither libtiff nor LibTiff.Net are capable of doing that. These libraries are not general purpose imaging ones.

You might be better served by a general-purpose library like FreeImage.

And of course you could decode a TIFF image, process decoded raster and then encode the raster back. But it might be too much work.

Bobrovsky
  • 13,789
  • 19
  • 80
  • 130