• taler6868 (7/22/2013)


    Not natively.

    If you can find a C#/VB solution, we can probably shoehorn it into SSIS somehow.

    that's true ,here I would like share with u C# solution .check merge two tiff files sample codes[/url] for C#

    using RasterEdge.Imaging.TIFF;

    using RasterEdge.Imaging.Basic.Core;

    using RasterEdge.Imaging.Basic;

    namespace WindowsApplication1

    {

    public partial class Form1 : Form

    {

    public Form1()

    {

    InitializeComponent();

    }

    public static string FolderName = "c:/";

    private void button1_Click(object sender, EventArgs e)

    {

    string fileName1 = FolderName + "Sample1.tif";

    string fileName2 = FolderName + "Sample2.tif";

    string fileNameMerged = FolderName + "Merged.tif";

    REDocument doc1 = REFile.OpenDocumentFile(fileName1, new TIFDecoder());//use TIFDecoder open one tif file

    REDocument doc2 = REFile.OpenDocumentFile(fileName2, new TIFDecoder());//use TIFDecoder open another tif file

    BaseDocument docMerged = doc1.MergeDocument(doc2);//merge two tif

    REFile.SaveDocumentFile((REDocument)docMerged, fileNameMerged, new TIFEncoder());//save new tif

    }

    }

    }

    thanks for sharing, that's awesome but somewhat overpriced for me who will just use it only once, do you have some cheaper or even free versions, any suggestion will be appreciated!