Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个显示大缩略图的 Web 应用程序。布局建立在服务器上。当我想根据图像的累积宽度调整行布局时,服务器端将图像加载到内存中的最佳方式是什么?我只需要知道宽度,但这会因图像而异吗?
我在想,创建控件,加载图像,获取宽度,然后清除内存?
想法?
您应该能够从文件中加载它。无需创建控件。请参阅此位图构造函数。
例如:
int width; using (Bitmap bmp = new Bitmap(filename)) { width = bmp.Width; }