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

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

如何加載圖像并從任何地方訪問(wèn)它?

如何加載圖像并從任何地方訪問(wèn)它?

C#
慕標(biāo)琳琳 2023-07-09 17:26:56
我想從表單窗口瀏覽圖像。我還創(chuàng)建了一個(gè)類并創(chuàng)建了一些過(guò)濾器。我可以從表格中讀取這張圖片。我的目標(biāo)是在課堂上宣布它。并在任何地方使用這個(gè)圖像。但我不知道我該怎么做。private void btn_BROWSE_Click(object sender, EventArgs e){    OpenFileDialog imge = new OpenFileDialog();     imge.Filter = "Extensions |*.bmp;*.jpg;*.jpeg;*.png;*.tif;*.tiff|"                  + "BMP|*.bmp|GIF|*.gif|JPG|*.jpg;*.jpeg|PNG|*.png|TIFF|*.tif;*.tiff|"                  + "Zip Files|*.zip;*.rar";    imge.ShowDialog();     string imgepath = imge.FileName;    pBox_SOURCE.ImageLocation = imgepath;//i'm browsing an image}private void sliderKernel_MouseUp(object sender, MouseEventArgs e){    Bitmap OriginalImage = new Bitmap(pBox_SOURCE.Image);} class Filters{     // (i would like to initialize my image in here not in form :) ) }
查看完整描述

2 回答

?
慕運(yùn)維8079593

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

我將定義一個(gè)抽象類 Filter 并將每個(gè)過(guò)濾器實(shí)現(xiàn)為該類的繼承人。


public abstract class Filter

{   

    public Bitmap Image { get; set; }


    public abstract void Apply();

}

一個(gè)實(shí)現(xiàn)是:


public class SliderKernel : Filter

{   

    public overrides void Apply()

    {

        //manipulates the Image property

    }

}

如果您想在任何地方使用該圖像,您應(yīng)該將其聲明為類的靜態(tài)成員:


public static class ImageContainer

{

     public static Bitmap Image { get; set; }

}

您可以在表單代碼中使用所有這些,如下所示:


private void btn_BROWSE_Click(object sender, EventArgs e)

{

    OpenFileDialog imge = new OpenFileDialog(); 

    imge.Filter = "Extensions |*.bmp;*.jpg;*.jpeg;*.png;*.tif;*.tiff|"

                  + "BMP|*.bmp|GIF|*.gif|JPG|*.jpg;*.jpeg|PNG|*.png|TIFF|*.tif;*.tiff|"

                  + "Zip Files|*.zip;*.rar";

    imge.ShowDialog(); 

    string imgepath = imge.FileName;

    pBox_SOURCE.ImageLocation = imgepath;//i'm browsing an image


    //save the image to the container

    ImageContainer.Image = new Bitmap(pBox_SOURCE.Image);

}


private void sliderKernel_MouseUp(object sender, MouseEventArgs e)

{

    Filter filter = new SliderKernel () { Image = ImageContainer.Image };

    filter.Apply();


查看完整回答
反對(duì) 回復(fù) 2023-07-09
?
慕俠2389804

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

我認(rèn)為你應(yīng)該將圖像轉(zhuǎn)換為字節(jié)數(shù)組


使用以下代碼并將其存儲(chǔ)在靜態(tài)類中


public byte[] ImageToByteArray(System.Drawing.Image imageIn)

{

   using (var ms = new MemoryStream())

   {

      imageIn.Save(ms,imageIn.RawFormat);

      return  ms.ToArray();

   }

}

https://www.codeproject.com/Articles/15460/C-Image-to-Byte-Array-and-Byte-Array-to-Image-Conv


并使用此代碼轉(zhuǎn)為圖形顯示在pictureBox中


public Image byteArrayToImage(byte[] byteArrayIn)

{

     MemoryStream ms = new MemoryStream(byteArrayIn);

     Image returnImage = Image.FromStream(ms);

     return returnImage;

}


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

添加回答

舉報(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)