class InfoImage
{
public int Width { get; set; }
public int Height { get; set; }
public string PathToImage { get; set; }
}
class GetImage
{
public void Get()
{
string path = @"D:/picts";
var listImage = Directory.GetFiles(path);
List<InfoImage> lst = new List<InfoImage>();
foreach(string pathImage in listImage)
{
Image img = Image.FromFile(pathImage);
InfoImage infoImage = new InfoImage()
{
Width = img.Width,
Height = img.Height,
PathToImage = pathImage
};
lst.Add(infoImage);
}
}
}