博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(4)[wp7数据存储] WP7 IsolatedStorage系列篇--读取、保存图片文件 [复制链接]
阅读量:5310 次
发布时间:2019-06-14

本文共 1615 字,大约阅读时间需要 5 分钟。

 

本帖最后由 agameboy 于 2012-5-17 17:08 编辑
对于很多应用,向隔离存储空间读取、保存图片文件是很常见的任务。在中,你还可以保存、读取媒体库中的图片。更多的文章请参考!
引用命名空间:
using System.IO;
using System.IO.IsolatedStorage;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using Microsoft.Phone.Tasks;
using Microsoft.Xna.Framework.Media;
关心:Microsoft.Xna.Framework.Media;仅当你要把图片保存到库的时候才需要添加引用。
一般情况下我们使用类进行读、写、创建文件等操作。对于图片,最大的不同就是使用类BitmapImage和类WriteableBitmap.
保存Image:
  1. private void btSaveImage_Click(object sender, RoutedEventArgs e)
  2.         {
  3.             String strTempJPEG = "iamge111.png";  
  4.             using(IsolatedStorageFile iso=IsolatedStorageFile.GetUserStoreForApplication ())
  5.             {
  6.                 if (iso.FileExists (strTempJPEG ))
  7.                 {
  8.                     iso.DeleteFile(strTempJPEG );
  9.                 }
  10.                 using(IsolatedStorageFileStream isostream=iso.CreateFile(strTempJPEG))
  11.                 {
  12.                     StreamResourceInfo sri = null;
  13.                     Uri uri = new Uri(strTempJPEG ,UriKind.Relative);
  14.                     sri = Application.GetResourceStream(uri);
  15.                     BitmapImage bitmap = new BitmapImage();
  16.                     bitmap.SetSource(sri.Stream );
  17.                     WriteableBitmap wb = new WriteableBitmap(bitmap);
  18.                     Extensions.SaveJpeg(wb ,isostream,wb.PixelWidth,wb.PixelHeight,0,85);
  19.                     isostream.Close();
  20.                 }
  21.             }
  22.         }
复制代码
读取Image:
  1. private void btScanImage_Click(object sender, RoutedEventArgs e)
  2.         {
  3.             BitmapImage bitmap = new BitmapImage();
  4.             using(IsolatedStorageFile iso=IsolatedStorageFile.GetUserStoreForApplication ())
  5.             {
  6.                 using(IsolatedStorageFileStream isostream=iso.OpenFile ("iamge111.png",FileMode.Open ,FileAccess.Read ))
  7.                 {
  8.                     bitmap.SetSource(isostream);
  9.                     this.image.Height = bitmap.PixelHeight;
  10.                     this.image.Width = bitmap.PixelWidth;
  11.                 }
  12.             }
  13.             this.image.Source = bitmap;
  14.         }
复制代码

转载于:https://www.cnblogs.com/Belling/archive/2012/11/29/2794598.html

你可能感兴趣的文章
iOS UIAlertView添加输入框
查看>>
第十次作业
查看>>
洛谷 5290 [十二省联考2019]春节十二响——堆
查看>>
洛谷 2038 无线网络发射器选址——枚举
查看>>
安卓环境home assistant搭建
查看>>
react 避免重复渲染
查看>>
Struts2搭建demo
查看>>
codeforces 668C - Little Artem and Random Variable
查看>>
build-your-microservices-api-with-swagger
查看>>
CF807
查看>>
第一个内核模块,Hello Kernel的编写历程
查看>>
解决Get请求的长度限制
查看>>
Java:并发不易,先学会用
查看>>
JavaScritp设计模式1 ----- 单件模式
查看>>
弄个知乎的粒子动态背景_实践particles.js
查看>>
js定时器
查看>>
完美解决linux系统sublime不能输入中文
查看>>
数据结构算法 (树 的基本算法)
查看>>
smb
查看>>
Oracle中的SQL分页查询原理和方法详解
查看>>