web-dev-qa-db-ja.com

リソースから画像を読み込む

このような画像をロードしたい:

void info(string channel)
{
    //Something like that
    channelPic.Image = Properties.Resources.+channel
}

やりたくないから

void info(string channel)
{
    switch(channel)
    {
        case "chan1":
            channelPic.Image = Properties.Resources.chan1;
            break;
        case "chan2":
            channelPic.Image = Properties.Resources.chan2;
            break;
    }
}

このようなことは可能ですか?

29
a1204773

このクラスで使用されるキャッシュされたResourceManagerを返す_System.Resources.ResourceManager_をいつでも使用できます。 _chan1_と_chan2_は2つの異なる画像を表すため、System.Resources.ResourceManager.GetObject(string name)を使用して、プロジェクトリソースと入力に一致するオブジェクトを返すことができます

_object O = Resources.ResourceManager.GetObject("chan1"); //Return an object from the image chan1.png in the project
channelPic.Image = (Image)O; //Set the Image property of channelPic to the returned object as Image
_

注意Resources.ResourceManager.GetObject(string name)は、指定された文字列がプロジェクトリソースで見つからなかった場合、nullを返す場合があります。

おかげで、
これが役立つことを願っています:)

48

これは ResourceManager を使用して実行できます。

public bool info(string channel)
{
   object o = Properties.Resources.ResourceManager.GetObject(channel);
   if (o is Image)
   {
       channelPic.Image = o as Image;
       return true;
   }
   return false;
}
10
huysentruitw

WPFでこれを試してください

StreamResourceInfo sri = Application.GetResourceStream(new Uri("pack://application:,,,/WpfGifImage001;Component/Images/Progess_Green.gif"));
picBox1.Image = System.Drawing.Image.FromStream(sri.Stream);
6
Roopsundar

画像がリソースファイルにある場合、ResourceManagerは機能します。プロジェクト内の単なるファイル(ルートとしましょう)の場合は、次のようなものを使用して取得できます。

System.Reflection.Assembly assembly = System.Reflection.Assembly.GetExecutingAssembly();
System.IO.Stream file = Assembly .GetManifestResourceStream("AssemblyName." + channel);
this.pictureBox1.Image = Image.FromStream(file);

または、WPFを使用している場合:

    private ImageSource GetImage(string channel)
    {
        StreamResourceInfo sri = Application.GetResourceStream(new Uri("/TestApp;component/" + channel, UriKind.Relative));
        BitmapImage bmp = new BitmapImage();
        bmp.BeginInit();
        bmp.StreamSource = sri.Stream;
        bmp.EndInit();

        return bmp;
    }
3
xr280xr
    this.toolStrip1 = new System.Windows.Forms.ToolStrip();
    this.toolStrip1.Location = new System.Drawing.Point(0, 0);
    this.toolStrip1.Name = "toolStrip1";
    this.toolStrip1.Size = new System.Drawing.Size(444, 25);
    this.toolStrip1.TabIndex = 0;
    this.toolStrip1.Text = "toolStrip1";
    object O = global::WindowsFormsApplication1.Properties.Resources.ResourceManager.GetObject("best_robust_ghost");

    ToolStripButton btn = new ToolStripButton("m1");
    btn.DisplayStyle = ToolStripItemDisplayStyle.Image;
    btn.Image = (Image)O;
    this.toolStrip1.Items.Add(btn);

    this.Controls.Add(this.toolStrip1);
0
IR.Programmer