Background:
I'm developing Win 10 Universal App, have list of BitmapImage:
List<BitmapImage> ImagesList = new List<BitmapImage>();
Each list item is created by converting byte[]
to BitmapImage
by this code:
public async Task<BitmapImage> GetBitmapImage(byte[] array)
{
using (InMemoryRandomAccessStream stream = new InMemoryRandomAccessStream())
{
using (DataWriter writer = new DataWriter(stream.GetOutputStreamAt(0)))
{
writer.WriteBytes(array);
await writer.StoreAsync();
}
BitmapImage image = new BitmapImage();
List<BitmapImage> ImagesList = new List<BitmapImage>();
await image.SetSourceAsync(stream);
return image;
}
}
Question:
How to convert this list to single multi-page Tiff file?
Notes:
I've found many related answers like this but all are based on System.Drawing
library which is not supported in Windows 10 Universal Apps, so as you can see in my code, I'm using Windows.Ui.Xaml.Media.Imaging.BitmapImage
object instead of System.Drawing.Bitmap
to get the image.
In UWP app, we can use
BitmapEncoder
to encode a Tiff image file to contain several frames.BitmapEncoder.SetPixelData
method can be used for setting pixel data on one frame and thenBitmapEncoder.GoToNextFrameAsync
can asynchronously commits the current frame data and appends a new empty frame to be edited. So the Tiff image can be created by multiply images.Suppose I want to create a Tiff image file from three images that are located on my local folder, I decode and read pixel data from them and set to the Tiff image. Sample code as follows:
The
temp.tiff
will be created successfully. I'm not sure how you got the image byte array, but BitmapImage cannot be directly written to or updated, you need to got WriteableBitmap object from your byte array. If you don't know how to get theWriteableBitmap
please try to reference the following code or save theBitmapImage
to local folder and using the code I provided above.More details please reference the official sample.