如何用C#编程改变图片压缩?

问题描述 投票:0回答:1

如何在C#中以程序化的方式实现这个功能? 我在使用 MS Office Professional 2016

enter image description here.

要插入一个图像,我用这个代码。

        DialogResult result;
        OpenFileDialog ofd = new OpenFileDialog();
        ofd.Title = "Choose image file";
        result = ofd.ShowDialog();

        if (result == DialogResult.OK)
        {
            //GetInstance().ActiveSheet.Shapes.AddPicture(ofd.FileName, MsoTriState.msoFalse, MsoTriState.msoCTrue, 10, 10, -1, -1);
            GetInstance().ActiveSheet.Shapes.AddPicture2(ofd.FileName, MsoTriState.msoFalse, MsoTriState.msoCTrue, 10, 10, -1, -1, 1);
            Excel.Shape newShape = GetInstance().ActiveSheet.Shapes.Item(GetInstance().ActiveSheet.Shapes.Count);
            newShape.ZOrder(MsoZOrderCmd.msoSendToBack);
            newShape.Placement = Excel.XlPlacement.xlMoveAndSize;
        }

然后我的图片就变成了形状 也许有一种方法可以对形状进行图片压缩?

c# excel vsto
1个回答
0
投票

有几种方法可以完成这项工作。

  1. 请在此输入链接描述 提供最后一个参数 compress 允许指定插入图片时是否要压缩。您可以使用以下值。

    • msoPictureCompressDocDefault - 图片是否被压缩取决于文档的设置。
    • msoPictureCompressFalse - 图片不被压缩。
    • msoPictureCompressTrue - 图片将被压缩。
  2. 您可以使用.net BCL类在将图片添加到Excel文档之前缩小图片的大小。

/// <summary>
/// Resize the image to the specified width and height.
/// </summary>
/// <param name="image">The image to resize.</param>
/// <param name="width">The width to resize to.</param>
/// <param name="height">The height to resize to.</param>
/// <returns>The resized image.</returns>
public static Bitmap ResizeImage(Image image, int width, int height)
{
    var destRect = new Rectangle(0, 0, width, height);
    var destImage = new Bitmap(width, height);

    destImage.SetResolution(image.HorizontalResolution, image.VerticalResolution);

    using (var graphics = Graphics.FromImage(destImage))
    {
        graphics.CompositingMode = CompositingMode.SourceCopy;
        graphics.CompositingQuality = CompositingQuality.HighQuality;
        graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
        graphics.SmoothingMode = SmoothingMode.HighQuality;
        graphics.PixelOffsetMode = PixelOffsetMode.HighQuality;

        using (var wrapMode = new ImageAttributes())
        {
            wrapMode.SetWrapMode(WrapMode.TileFlipXY);
            graphics.DrawImage(image, destRect, 0, 0, image.Width,image.Height, GraphicsUnit.Pixel, wrapMode);
        }
    }

    return destImage;
}

你可以找到更多的方法和信息。

© www.soinside.com 2019 - 2024. All rights reserved.