I have 4 small tiff images and I would like to generate a big one by merging the 4 single one. Does anyone know how to do it directly with Delphi or some good component that could do it?
+4
A:
You could use GraphicEx by Mike Lischke to load the Tiff images:
http://www.soft-gems.net/index.php?option=com_content&task=view&id=13&Itemid=33
PetriW
2009-02-06 09:57:06
Good but it doesn't seem to be able to save tiff files. It just can read them.
Name
2009-02-06 13:11:40
Ah, you're right. I've never actually needed to save a tiff image so never noticed. :(
PetriW
2009-02-06 13:35:39
+1
A:
Another excellent graphics library for Delphi is Graphics32
Edit: As Vegar said, it looks that Graphics32 cannot be used to load TIFF format.
zendar
2009-02-06 10:03:29
It's a good library, yes, but AFIK you want be able to load tiff-files with it. You would need other code, e.g. GraphicsEX, to load your graphic files.
Vegar
2009-02-06 11:34:02
Yeah, it looks that you are right. I used Graphics32 for jpg files, and I did not check if it supports TIFF.
zendar
2009-02-06 12:15:38
And the jpg-support don't come from Graphics32, but from Delphi itself. But its still a good library :-)
Vegar
2009-02-06 12:31:35
+2
A:
ImageMagick is a command line application that can do such kind of operations on different image file formats including tiff.
The API seems to be usable from Delphi, see PascalMagick.
Name
2009-02-06 15:03:13
A:
ImageEn one of the best Image libraries for Delphi, and it's native VCL ;-)
Mohammed Nasman
2009-02-07 10:31:46