Merge 2 tiff file

want to add second tiff file into first tiff file in first page in windows application

Hi there,

Thank you for considering Aspose products.

Please note, Tiff images can be considered as collection of Tiff Frames, that you may copy from one Tiff image to another as per your requirement. Below provided source sample exhibits the usage of TiffFrame.CopyFrame method for your need.

C#


//Create an instance of TiffImage and load the destination image
using (TiffImage image = (TiffImage)Aspose.Imaging.Image.Load(myDir + “mytiff2.tif”))
{
//Create an instance of TiffImage and load the source image
using (TiffImage image1 = (TiffImage)Aspose.Imaging.Image.Load(myDir + “girl.tif”))
{
// Create an instance of TIffFrame and copy active frame of source image
TiffFrame frame = TiffFrame.CopyFrame(image1.ActiveFrame);
// Add copied frame to destination image
image.AddFrame(frame);
// save the image with changes
image.Save();
}
}

Please feel free to write back in case you find any difficulties.

Hi,


After using this i merge tiff files ,but there is a note of “Evaluation …”.

how ds remove?

i hv to buy ds dll or wht ?

waiting 4 ur reply?
sikha

Hi Sikha,

Thank you for writing back.

This is due to the Evaluation Limitation that Aspose.Imaging component adds watermark on every image processed by it. At the time of purchase we provide a license file via email that will allow the component to work in its full capacity. If you would like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

Once you receive the license file, please follow the instruction provided here to set the license accordingly.