第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

設(shè)置畫布上加載的圖像的分辨率 wpf c#

設(shè)置畫布上加載的圖像的分辨率 wpf c#

C#
月關(guān)寶盒 2023-07-23 16:51:16
我正在畫布上工作并在其上加載圖像。如何將圖像分辨率設(shè)置為 640X480 像素?解碼像素高度和解碼像素寬度不起作用。   ImageBrush brush = new ImageBrush();        BitmapImage src = new BitmapImage(new Uri(("C:\\Users\\i2v\\Desktop\\GoogleMapTA.jpg"), UriKind.Relative));        src.DecodePixelHeight = 480;        src.DecodePixelWidth = 640;        brush.ImageSource = src;     //   brush.Stretch = Stretch.None;        canvas.Background = brush;        canvas.Height = src.Height;        canvas.Width = src.Width;
查看完整描述

1 回答

?
精慕HU

TA貢獻(xiàn)1845條經(jīng)驗(yàn) 獲得超8個(gè)贊

BitmapImage 實(shí)現(xiàn)該System.ComponentModel.ISupportInitialize接口。BeginInit這意味著它的屬性只能在其和方法的調(diào)用之間設(shè)置EndInit:


var src = new BitmapImage();

src.BeginInit();

src.UriSource = new Uri(@"C:\Users\i2v\Desktop\GoogleMapTA.jpg");

src.DecodePixelHeight = 480;

src.DecodePixelWidth = 640;

src.EndInit();


canvas.Background = new ImageBrush(src);

請(qǐng)注意,您通常不會(huì)同時(shí)設(shè)置DecodePixelWidth和,因?yàn)檫@可能會(huì)破壞圖像的原始寬高比。DecodePixelHeight設(shè)置其中之一或另一個(gè)。


查看完整回答
反對(duì) 回復(fù) 2023-07-23
  • 1 回答
  • 0 關(guān)注
  • 163 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)