其他分享
首页 > 其他分享> > 潜移默化学会WPF--绘图 学习(一) - AYUI框架 - 博客园

潜移默化学会WPF--绘图 学习(一) - AYUI框架 - 博客园

作者:互联网

原文:潜移默化学会WPF--绘图 学习(一) - AYUI框架 - 博客园

指定图片资源

<Image x:Name="IconImage" Source="Res/0.png" Stretch="Fill"/>

 

后台

private int _iconindex = 1;

        public int IconIndex

        {

            get { return _iconindex; }

            set

            {

                _iconindex = value;

                var uri = new Uri("/AppleMenu;component/Res/" + value + ".png", UriKind.Relative);

                IconImage.Source = new System.Windows.Media.Imaging.BitmapImage(uri);

            }

        }

 

只看红色那一段

/程序集名称;component/具体目录/图片名称,UriKind.Relative

 

 

 

 

现在教你怎样教image上的图片另存为

复制代码
      //imgShow为Image控件
           BitmapSource bsrc = (BitmapSource)ImgShow.Source; System.Windows.Forms.SaveFileDialog sf = new System.Windows.Forms.SaveFileDialog(); sf.DefaultExt = ".png"; sf.Filter = "png (.png)|*.png"; if (System.Windows.Forms.DialogResult.OK == sf.ShowDialog()) { PngBitmapEncoder pngE = new PngBitmapEncoder(); pngE.Frames.Add(BitmapFrame.Create(bsrc)); using (Stream stream = File.Create(sf.FileName)) { pngE.Save(stream); } }
复制代码

标签:Windows,博客园,System,pngE,new,WPF,AYUI,sf,png
来源: https://www.cnblogs.com/lonelyxmas/p/10459153.html