Multipage tiff
C / C++ / MFC
3
Posts
2
Posters
1
Views
1
Watching
-
Hi How to make multipage tiff file ?? Thanks :zzz:
-
Hi How to make multipage tiff file ?? Thanks :zzz:
Check out: http://freeimage.sourceforge.net/[^]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Peter Weyzen Staff Engineer [SoonR Inc -- PC Power delivered to your phone](http://www.soonr.com)
-
Hi How to make multipage tiff file ?? Thanks :zzz:
Thanks for your replay ...
CBitmap pBitmap[2]; pBitmap[0].LoadBitmap(L"1.tif"); pBitmap[1].LoadBitmap(L"2.tif"); CImageList imgl; imgl.Create(500, 600, ILC_MASK | ILC_COLOR32, 0, 0); imgl.Add(&pBitmap[0],RGB(0,0,0)); imgl.Add(&pBitmap[1],RGB(0,0,0));
where i am going to right path ??