110,041
社区成员




List <Bitmap> BitmapList = new List<Bitmap> ();
try
{
IList<string> imagelist = 图片路径;
foreach (string imagefile in imagelist)
{
Bitmap bitmap = new Bitmap(imagefile);
BitmapList.Add((Bitmap)bitmap.Clone());
bitmap.Dispose();
}
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
return BitmapList;