zoukankan      html  css  js  c++  java
  • WPF Image动态加载图片终极办法

    //Createsource BitmapImagemyBitmapImage= new BitmapImage(); 
    //BitmapImage.UriSourcemustbeinaBeginInit/EndInitblock 
    myBitmapImage.BeginInit(); myBitmapImage.UriSource= new 
    Uri(str,UriKind.Absolute); 
    //Tosavesignificantapplicationmemory,settheDecodePixelWid

    // Create source BitmapImage myBitmapImage = new BitmapImage(); // BitmapImage.UriSource must be in a BeginInit/EndInit block myBitmapImage.BeginInit(); myBitmapImage.UriSource = new Uri(str, UriKind.Absolute); // To save significant application memory, set the DecodePixelWidth or // DecodePixelHeight of the BitmapImage value of the image source to the desired // height or width of the rendered image. If you don't do this, the application will // cache the image as though it were rendered as its normal size rather then just // the size that is displayed. // Note: In order to preserve aspect ratio, set DecodePixelWidth // or DecodePixelHeight but not both. myBitmapImage.DecodePixelWidth = 2048; myBitmapImage.EndInit(); //set image source Image img = new Image(); img.Source = myBitmapImage;

    // Create source   
    BitmapImage myBitmapImage = new BitmapImage();   
       
       
    // BitmapImage.UriSource must be in a BeginInit/EndInit block   
    myBitmapImage.BeginInit();   
    myBitmapImage.UriSource = new Uri(str, UriKind.Absolute);   
       
       
    // To save significant application memory, set the DecodePixelWidth or     
    // DecodePixelHeight of the BitmapImage value of the image source to the desired    
    // height or width of the rendered image. If you don't do this, the application will    
    // cache the image as though it were rendered as its normal size rather then just    
    // the size that is displayed.   
    // Note: In order to preserve aspect ratio, set DecodePixelWidth   
    // or DecodePixelHeight but not both.   
    myBitmapImage.DecodePixelWidth = 2048;   
    myBitmapImage.EndInit();   
    //set image source   


    Image img = new Image(); 
    img.Source = myBitmapImage;

  • 相关阅读:
    redis-LinkedList
    Jedis(java操作redis数据库技术)
    jquery判断表单内容是否为空
    jQuery单选框的回显
    使用jQuery重置(reset)表单的方法
    BootstrapValidator 解决多属性被同时校验问题
    模态框被遮罩层遮挡
    python 高阶函数
    python 函数式编程
    python 生成器
  • 原文地址:https://www.cnblogs.com/leelike/p/2420149.html
Copyright © 2011-2022 走看看