3

我正在尝试将位图图像转换为字节数组。我已经使用MediaLibrary类选择了所有图像并将其添加到位图图像列表中。这是我的代码

using (IsolatedStorageFile store = IsolatedStorageFile.GetUserStoreForApplication())
        {
            if (!store.DirectoryExists("ImagesZipFolder"))
            {
                store.CreateDirectory("ImagesZipFolder");
                for (int i = 0; i < imgname.Count(); i++)
                {
                    using (IsolatedStorageFileStream stream = new IsolatedStorageFileStream(@"ImagesZipFolder\" + imgname[i], System.IO.FileMode.CreateNew, store))
                    {
                            byte[] bytes = null;
                            using (MemoryStream ms = new MemoryStream())
                            {
                                WriteableBitmap wBitmap = new WriteableBitmap(ImgCollection[i]);
                                wBitmap.SaveJpeg(ms, wBitmap.PixelWidth, wBitmap.PixelHeight, 0, 100);
                                stream.Seek(0, SeekOrigin.Begin);
                                bytes = ms.GetBuffer();
                                stream.Write(bytes, 0, bytes.Length);
                            }
                    //    byte[] bytes = Encoding.UTF8.GetBytes(imgname[i]);//new byte[ImgCollection[i].PixelWidth * ImgCollection[i].PixelHeight * 4];                           
                    //    stream.Write(bytes, 0, bytes.Length);
                    }
                }
            }
            else {
                directory = true;
            }
          }

基本上我想做的是,从设备中选择所有图像或照片并创建这些图像的 zip 文件。我成功地创建了图像的 zip 文件。当我提取该文件时,有一些图像,但问题是当我双击图像时,我看不到该图像。我认为问题在于读取图像的字节。我不明白怎么了?我的代码是否正确?

4

2 回答 2

3

也许你可以试试下面的。我知道这段代码维护了图像,所以如果你没有运气使用它,你可能会遇到不同的问题。

    // Convert the new image to a byte[]
    ImageConverter converter = new ImageConverter();
    byte[] newBA = (byte[])converter.ConvertTo(newImage, typeof(byte[]));

ImageConverter 属于 System.Drawing 命名空间。


更新:

http://msdn.microsoft.com/en-GB/library/system.windows.media.imagesourceconverter.convertto.aspx

您应该可以使用它来代替我建议的 System.Drawing 类型。

于 2013-07-29T13:24:37.463 回答
0

无需将 WriteableBitmap 保存到 MemoryStream,然后将其复制到 IsolatedStorageFileStream。只需将位图直接保存到 IsolatedStorageFileStream。

using (IsolatedStorageFileStream stream = new IsolatedStorageFileStream(@"ImagesZipFolder\" + imgname[i], System.IO.FileMode.CreateNew, store))
{
    WriteableBitmap wBitmap = new WriteableBitmap(ImgCollection[i]);
    wBitmap.SaveJpeg(stream, wBitmap.PixelWidth, wBitmap.PixelHeight, 0, 100);
}

这也可以让您节省内存。如果你真的想节省内存,你可以重用 WriteableBitmap。

于 2013-07-30T18:02:40.003 回答