C#不使用Photoshop SDK读取PSD长宽
时间: 2023-08-10 08:21:30 浏览: 139
C#读取psd格式图片
5星 · 资源好评率100%
如果你不想使用Photoshop SDK,也可以使用C#内置的System.Drawing.Imaging命名空间来读取PSD文件的长宽。下面是一个示例代码,它演示了如何打开一个PSD文件,读取其长宽,并关闭文件:
```csharp
using System.Drawing;
using System.Drawing.Imaging;
class Program
{
static void Main(string[] args)
{
// Replace "path/to/file.psd" with the actual path to your PSD file.
using (Image image = Image.FromFile("path/to/file.psd"))
{
int width = image.Width;
int height = image.Height;
Console.WriteLine("Width: {0}, Height: {1}", width, height);
}
}
}
```
请注意,在使用这个示例代码之前,你需要添加对System.Drawing.dll程序集的引用。另外,System.Drawing.Imaging命名空间也提供了许多其他有用的类和方法,用于处理图像文件,例如获取像素值、缩放图像等等。
阅读全文