WPF 实现图像放大镜

实现思路:截取Image控件中要放大的部分,并将其显示出来

核心代码:CroppedBitmap chained = new CroppedBitmap((BitmapSource)img1.Source, new Int32Rect(50,50,50,50));//截取图片

img2.Source=chained;//显示被截取的部分

源代码://files.cnblogs.com/files/GongYao/WpfApp19.rar

posted @ 2021-07-26 13:48  奇迹之耀  阅读(135)  评论(0编辑  收藏  举报