Hi
If the Han Soft component gives you a bitmap, why not use use TCanvas.CopyRect to draw it onto the TIFF.
E.g.
X, Y: Destination position of the barcode
MyTiffIEBitmap.Read('D:\MyTiff.tiff');
MyTiffIEBitmap.Canvas.CopyRect(
Rect(X, Y, X + BarCodeBmp.Width, Y + BarCodeBmp.Height),
BarCodeBmp.Canvas,
Rect(0, 0, BarCodeBmp.Width, BarCodeBmp.Height));
MyTiffIEBitmap.Write('D:\MyTiffWithBarcode.tiff');
Nigel
Xequte Software
www.xequte.com
nigel@xequte.com