为了账号安全,请及时绑定邮箱和手机立即绑定

将图像添加到 C# 中的对象列表

将图像添加到 C# 中的对象列表

C#
忽然笑 2021-11-28 20:18:42
我正在尝试在 C# 中创建图像列表。我的问题是我不确定如何引用图像以将其添加到列表中。我已经尝试在括号中添加文件路径,但它抛出错误“无法创建抽象类或接口‘Image’的实例”。下面是我尝试过的示例。我对此很陌生,所以如果有明显的错误或解决方案,我深表歉意。谢谢!:)private void button1_Click(object sender, EventArgs e){    imageList = new List<Image>();    imageOne = new Image("image.jpg");}
查看完整描述

2 回答

?
慕妹3242003

TA贡献1824条经验 获得超6个赞

Image是一个抽象类。这意味着你不能new

尝试从文件

imageOne = Image.FromFile("image.jpg");

它返回一个Image对象,您可以将其添加到列表中


查看完整回答
反对 回复 2021-11-28
?
婷婷同学_

TA贡献1844条经验 获得超8个赞

如果要从文件加载图像,可以使用FromFile 方法。


来自 msdn 的例子:


private void Button2_Click(System.Object sender, System.EventArgs e)

{

    try

    {

        Bitmap image1 = (Bitmap) Image.FromFile(@"C:\Documents and Settings\" +

            @"All Users\Documents\My Music\music.bmp", true);


        TextureBrush texture = new TextureBrush(image1);

        texture.WrapMode = System.Drawing.Drawing2D.WrapMode.Tile;

        Graphics formGraphics = this.CreateGraphics();

        formGraphics.FillEllipse(texture, 

            new RectangleF(90.0F, 110.0F, 100, 100));

        formGraphics.Dispose();


    }

    catch(System.IO.FileNotFoundException)

    {

        MessageBox.Show("There was an error opening the bitmap." +

            "Please check the path.");

    }


}

如果要从流加载图像,也可以使用FromStream 方法。


查看完整回答
反对 回复 2021-11-28
  • 2 回答
  • 0 关注
  • 300 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信