简体   繁体   中英

How to add a TIFF image to the bottom of another one in C#?

I scan a two-sided image with TWAIN and it gets me an Array of pictures and I can save them separately. I need to combine these two images side-by-side and save it as a single TIFF file.

Could you please tell me how to open to TIFF images and save them as a single file which contains both of them side by side?

Are you writing your own app based on the TWAIN Specification? If yes, you can use TWFF_TIFFMULTI to get multi-page TIFF file.

var tmpFolder = _configManager.TmpFolder;
bool isUnHandleException;
//tranfer each image that's scann0ed and insert him to array,also dialogbox for a progress bar Indication  
ArrayList pics = tw.TransferPictures(out isUnHandleException);
EndingScan(); tw.CloseSrc();
if (isUnHandleException)   ShowException(Consts.RestartWIA);

string strFileName = "";
// join all the images that's scanned  to one image tiff file
var encoder = new TiffBitmapEncoder();
BitmapFrame frame=null;
Bitmap bp = null;
IntPtr bmpptr,pixptr;
if (!(pics != null && pics.Count != 0))
{
    ShowException("No Has Any pages");
    return;
}
// create temp folder 
CreateDirectory(tmpFolder);
int picsCount = pics.Count;
for (int i = 0; i < pics.Count; i++)
{
    IntPtr img = (IntPtr)pics[i];
    //Locks a global memory object and returns a pointer to the first byte of the object's memory block 
    bmpptr = Twain.GlobalLock(img);
    //Get Pixel Info by handle
    pixptr = GdiWin32.GetPixelInfo(bmpptr);
    // create bitmap type
    bp = GdiWin32.BitmapFromDIB(bmpptr, pixptr);

    // get bitmap frame for insert him TiffBitmapEncoder
    frame = Imaging.GetBitmapFrame(bp);
    if (frame != null)
        encoder.Frames.Add(frame);
    //decease pointer reference so the gc will see there is no refernce to this obj and realse him from memory
    Twain.GlobalUnlock(img);
    // Get the last error and display it.
    //int error = Marshal.GetLastWin32Error();

    GC.Collect();
    GC.WaitForPendingFinalizers();
}
// genrate file name to temp folder 
strFileName = GenerateFileTemp(tmpFolder);
string strNewFileName = strFileName;
_output = new FileStream(strNewFileName, FileMode.OpenOrCreate);
encoder.Save(_output);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM