Windows Phone 7(WP7)開發 圖片緩衝

來源:互聯網
上載者:User

最近在做一個WP7的用戶端,中間涉及到了從互連網上擷取圖片,而手機的無線網路其實很慢的(哪怕是聯通的3G我也沒感覺有多麼快),所以緩衝我想還是必不可少的吧。

其實做在WP7上面做緩衝很容易,直接上代碼了:

<Image Height="150" Canvas.Left="8" Canvas.Top="8" Width="150" Source="{Binding PicID, Converter={StaticResource ImageConverter}, Mode=OneWay}"/> 

 圖片Image控制項主要就是Source屬性的設定,綁定圖片的ID,並且設定好Converter。

 

public class ImageConverter : IValueConverter
    {

        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {

            ImageSource source = ImageCache.GetImage(value.ToString());

            return source;
        }

        public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            return "";
        }

    } 

 Converter中其實沒什麼太多內容,主要是把PICID傳遞給緩衝類,下面是緩衝代碼:

 

 public class ImageCache

    {
        public static Dictionary<string, ImageSource> ImageSources = new Dictionary<string, ImageSource>();

        static ImageCache()
        {
            ImageSources.Add("", new BitmapImage(new Uri(StaticResource.PathNoImage, UriKind.Relative))); 
        }

        public static ImageSource GetImage(string imageId)
        {
            if (!ImageSources.ContainsKey(imageId))
            {
                ImageSource source = new BitmapImage(new Uri(StaticResource.UrlPicture + imageId));
                ImageSources.Add(imageId, source);
            }

            return ImageSources[imageId];
        }
    }


 我的這個緩衝只是在記憶體中開了一個Dictionary<string, ImageSource>來進行緩衝的,當然大家有興趣還可以使用隔離儲存空間來儲存圖片。

 

 

再補充一點:在mango裡(之前版本沒試過呢),從網路上擷取圖片不用很費勁的去寫Http請求了,直接

ImageSource source = new BitmapImage(new Uri("圖片的http地址")); 

就可以啦。 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.