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.
如何在控制台应用程序(不是表单应用程序)中获取特定的图像大小? 我发现的大多数答案都是使用 System.Drawing ,它不适用于控制台应用程序......
通过右键单击您的项目添加引用 System.Drawing,然后添加引用。然后,您可以using System.Drawing;像在整个 .NET 中添加任何其他引用一样添加。
using System.Drawing;
然后您可以使用 Image 类
System.Drawing.Image image = System.Drawing.Image.FromFile("filePath"); Int32 w = image.Width; Int32 h = image.Height;