这段时间做了些silverlight方面的项目,遇到了一些问题,但是磕磕绊绊的还是都解决了。今天先贴一个出来。
当我们用WebClIEnt 从网络上获取图片流然后用BitmAPImage绑定到前端的的Image的时候也许会遇到些意想不到的问题。
先给出些示例代码:
1 public MainPage()2 {
3 InitializeComponent();
4
5
6 Uri uri = new Uri("http://localhost:2587/fileHandle/displayImage/569p.jpg" );
7 WebClIEnt cilent = new WebClIEnt();
8 cilent.OpenReadCompleted += new OpenReadCompletedEventHandler(cilent_OpenReadCompleted);
9 cilent.OpenReadAsync(uri);
10
11 }
12
13 voID cilent_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e)
14 {
15 if (e.Error == null && e.Result != null )
16 {
17 Stream stream = e.Result;
18 BitmAPImage bitmap = new BitmAPImage();
19
20
21 try
22 {
23 bitmap.SetSource(stream);
24 }
25 catch (Exception ex)
26 {
27 }
28 this.img.source = bitmap;
29 }
30 } @H_419_332@ 复制代码 这个 http://localhost:2587/fileHandle/displayImage/569p.jpg URL其实是mvc端,fileHandle是controller,displayImage是Action,569p.jpg是参数。图片是用mvc生成的图片流, public ActionResult displayImage(string filename)
{
if (String.IsNullOrEmpty(filename))
{
return new EmptyResult();
}
string extname = Path.GetExtension(filename);
string ContentType = GetContentType(extname);
if (String.IsNullOrEmpty(ContentType))
{
return new EmptyResult();
}
StringBuilder sbfileFullPath = new StringBuilder();
sbfileFullPath.Append(mConfiguration.fileSharePath);
sbfileFullPath.Append(@"\" );
sbfileFullPath.Append(filename);
if (! System.IO.file.Exists(sbfileFullPath.ToString()))
{
return new EmptyResult();
}
Bitmap bitMap = new Bitmap(sbfileFullPath.ToString());
byte[] fileBytes = null ;
using (MemoryStream ms = new MemoryStream())
{
bitMap.Save(ms, GetimageFormat(extname));
fileBytes = ms.ToArray();
}
return file(fileBytes, ContentType);
} @H_419_332@ 复制代码
服务器端的Bitmap对象的Save(Stream stream,ImageFormat format);一定要注意第二个参数ImageFormat format,如果这个格式设置出错的话,就算你把服务器端的这个Action的url放到浏览器里图片正常显示,但是在silverlight也不会正常的。当silverlight执行到bitmap.SetSource(stream);就会报致命错误了。所以格式一定要匹配对。这个也许是silverlight的BUG,无非是图片的格式不匹配,无法转换,最起码也不应该出致命性错误啊。
还有的如果在服务端把一个其他格式的图片文件后缀改成jpg格式的,也会出这样问题的。
4YEAR MVC SILVERliGHT 总结以上是内存溢出为你收集整理的Silverlight BitmapImage的SetSource(Stream streamSource)致命性错误的解决办法全部内容,希望文章能够帮你解决Silverlight BitmapImage的SetSource(Stream streamSource)致命性错误的解决办法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)