且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

单张图像图片清单

更新时间:2023-11-09 22:12:04

imageList是图像列表,因此您可以使用List< Image>或List< Bitmap>存储一些全尺寸或重新采样(缩略图)的图像.

well an imageList is a List of images, so you could use a List<Image> or a List<Bitmap> to store a few fullsized or resampled (thumbnail) images.

如果要将列表显示为目录的缩略图视图,我建议使用数据库来存储缩略图,因为重新加载比重新处理目录中的所有图像以获得拇指大小要快得多.要存储在列表中的图像 或DisplayControl.

If you want to display the list as a view of thumbnails of a directory, I recommend using a DataBase to store the thumbnails, since reloading then would be much faster than re-processing all images in a directory to get thumb-sized images to store in a List or a DisplayControl.

此致

  Thorsten

  Thorsten