ImageSize

ImageSize class

包含有关图像大小和分辨率的信息。

要了解更多信息,请访问处理图像文档文章。

public class ImageSize

构造函数

姓名描述
ImageSize(int, int)将宽度和高度初始化为给定值(以像素为单位)。将分辨率初始化为 96 dpi.
ImageSize(int, int, double, double)将宽度、高度和分辨率初始化为给定值。

特性

姓名描述
HeightPixels { get; }获取图像的高度(以像素为单位)。
HeightPoints { get; }获取图像的高度(以磅为单位)。 1 点为 1/72 英寸。
HorizontalResolution { get; }获取水平分辨率(以 DPI 为单位)。
VerticalResolution { get; }获取垂直分辨率(以 DPI 为单位)。
WidthPixels { get; }获取图像的宽度(以像素为单位)。
WidthPoints { get; }获取图像的宽度(以磅为单位)。 1 点为 1/72 英寸。

例子

演示如何使用图像调整形状的大小。

#if NET48 || JAVA
            Image image = Image.FromFile(ImageDir + "Logo.jpg");

            Assert.AreEqual(400, image.Size.Width);
            Assert.AreEqual(400, image.Size.Height);
#elif NET5_0_OR_GREATER
            SKBitmap image = SKBitmap.Decode(ImageDir + "Logo.jpg");

            Assert.AreEqual(400, image.Width);
            Assert.AreEqual(400, image.Height);
#endif

            // 当我们使用“InsertImage”方法插入图像时,构建器会缩放显示图像的形状,以便,
            // 当我们在 Microsoft Word 中使用 100% 缩放查看文档时,形状以其实际大小显示图像。
            Document doc = new Document();
            DocumentBuilder builder = new DocumentBuilder(doc);
            Shape shape = builder.InsertImage(ImageDir + "Logo.jpg");

            // 400x400 图像将创建图像大小为 300x300pt 的 ImageData 对象。
            ImageSize imageSize = shape.ImageData.ImageSize;

            Assert.AreEqual(300.0d, imageSize.WidthPoints);
            Assert.AreEqual(300.0d, imageSize.HeightPoints);

            // 如果形状的尺寸与图像数据的尺寸匹配,
            // 然后形状以其原始大小显示图像。
            Assert.AreEqual(300.0d, shape.Width);
            Assert.AreEqual(300.0d, shape.Height);

             // 将形状的整体尺寸减小 50%。
            shape.Width *= 0.5;

             // 缩放因子同时应用于宽度和高度以保留形状的比例。
            Assert.AreEqual(150.0d, shape.Width);
            Assert.AreEqual(150.0d, shape.Height);

            // 当我们调整形状大小时,图像数据的大小保持不变。
            Assert.AreEqual(300.0d, imageSize.WidthPoints);
            Assert.AreEqual(300.0d, imageSize.HeightPoints);

            // 我们可以引用图像数据尺寸来根据图像的大小应用缩放。
            shape.Width = imageSize.WidthPoints * 1.1;

            Assert.AreEqual(330.0d, shape.Width);
            Assert.AreEqual(330.0d, shape.Height);

            doc.Save(ArtifactsDir + "Image.ScaleImage.docx");

也可以看看