vote up 2 vote down star
1

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?

flag

69% accept rate

5 Answers

vote up 0 vote down

ImageEn one of the best Image libraries for Delphi, and it's native VCL ;-)

link|flag
vote up 0 vote down

Another library you can use is FreeImage. It supports loading and writing of TIFF files. Beware: the Delphi wrapper is not actively maintained, but it works. We use it in our software to display previews of images.

link|flag
vote up 2 vote down check

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.

link|flag
Oooo, this looks very nice! +1! ;) – PetriW Feb 6 at 15:21
vote up 1 vote down

Another excellent graphics library for Delphi is Graphics32

Edit: As Vegar said, it looks that Graphics32 cannot be used to load TIFF format.

link|flag
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 Feb 6 at 11:34
Yeah, it looks that you are right. I used Graphics32 for jpg files, and I did not check if it supports TIFF. – zendar Feb 6 at 12:15
And the jpg-support don't come from Graphics32, but from Delphi itself. But its still a good library :-) – Vegar Feb 6 at 12:31
vote up 4 vote down

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

link|flag
Good but it doesn't seem to be able to save tiff files. It just can read them. – Name Feb 6 at 13:11
Ah, you're right. I've never actually needed to save a tiff image so never noticed. :( – PetriW Feb 6 at 13:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.