A few days ago I saw a script on here that would take multiple images and combine them and number them for trading forums.
I can't for the life of me find it now, anybody have the link?
A few days ago I saw a script on here that would take multiple images and combine them and number them for trading forums.
I can't for the life of me find it now, anybody have the link?
Blizzhackers • View topic - [Source] Item screenshot montage generator From Blizzhackers.
i have find ways to combine multiple tiff files with these codes, please have a look.
/// <summary>
/// Combine a list of TIFF document into a single one and save it to file
/// </summary>
/// <param name="s"></param>
/// <param name="docList"></param>
public void CombineDocumentAndSaveItToFile(String filePath,String[] docList)
{
TIFFDocument.Combine(filePath, docList);
}