gpt4 book ai didi

c# - 如何将资源文件夹中的图像放入数组中?

转载 作者:行者123 更新时间:2023-11-30 20:14:35 25 4
gpt4 key购买 nike

我想从我的资源文件夹中将 52 张 gif 格式的图像(一副纸牌)加载到 C# 中的 Image[] 中。有什么想法吗?

谢谢,乔恩

最佳答案

您可以像这样从文件中读取位图;

  public static Bitmap GetBitmap( string filename )
{
Bitmap retBitmap = null;
string path = String.Concat( BitmapDir, filename );
if ( File.Exists( path ) )
{
try
{
retBitmap = new Bitmap( path, true );
}
catch { }
}
return retBitmap;
}

你可以像这样得到一个资源目录下的文件列表;

string[] files = Directory.GetFiles( BitmapDir, "*.gif" );

只需遍历调用 GetBitmap( file ) 的文件并填充您的数组。 BitmapDir 显然是您的 GIF 文件所在的目录。

关于c# - 如何将资源文件夹中的图像放入数组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/315590/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com