I am trying to use image1.Picture.LoadFromFile(MyTiffFile)
to load tiff file into Timage
, but tiff is not supported.
Is there any way to achieve this without using a any third party libraries?
I am trying to use image1.Picture.LoadFromFile(MyTiffFile)
to load tiff file into Timage
, but tiff is not supported.
Is there any way to achieve this without using a any third party libraries?
How to convert tiff image to
TImage
in Delphi 2007 without using any third party libraries?
Delphi 2007 does not ship with support for tiff images. Since you do not wish to use third party libraries, you must write your own tiff decoder.
Start by reading the tiff format documentation. Once you've done that you'll realise the magnitude of the task and elect to use a third party library.