如何在 C# (Aspose) 中设置 PPT 中的图像位置和图像大小?

How to set image position and image size in PPT in C# (Aspose)?

提问人:Heggadal 提问时间:5/11/2020 最后编辑:halferHeggadal 更新时间:5/11/2020 访问量:742

问:

我想移动图像位置并想在使用 Aspose.slides 的 C# 中设置 PPT 中的图像大小。如何解决此问题?

C# aspose-slides

评论

0赞 halfer 5/11/2020
请阅读 在什么情况下,我可以在我的问题中添加“紧急”或其他类似短语,以便更快地获得答案? - 总而言之,这不是解决志愿者问题的理想方式,并且可能适得其反地获得答案。请不要将其添加到您的问题中。
0赞 Joshua 5/11/2020
你好 Sagar,欢迎来到 SO。请编辑您的问题,以包括您尝试过的代码的引用,以及您在尝试这些方法时收到的错误消息或意外结果。

答:

1赞 Daniel 5/11/2020 #1

我将引用文档

// The path to the documents directory.
string dataDir = RunExamples.GetDataDir_Shapes();

// Create directory if it is not already present.
bool IsExists = System.IO.Directory.Exists(dataDir);
if (!IsExists)
    System.IO.Directory.CreateDirectory(dataDir);

// Instantiate Presentation class that represents the PPTX
using (Presentation pres = new Presentation())
{

    // Get the first slide
    ISlide sld = pres.Slides[0];

    // Instantiate the ImageEx class
    System.Drawing.Image img = (System.Drawing.Image)new Bitmap(dataDir+ "aspose-logo.jpg");
    IPPImage imgx = pres.Images.AddImage(img);

    // Add Picture Frame with height and width equivalent of Picture
    IPictureFrame pf = sld.Shapes.AddPictureFrame(ShapeType.Rectangle, 50, 150, imgx.Width, imgx.Height, imgx);

    // Apply some formatting to PictureFrameEx
    pf.LineFormat.FillFormat.FillType = FillType.Solid;
    pf.LineFormat.FillFormat.SolidFillColor.Color = Color.Blue;
    pf.LineFormat.Width = 20;
    pf.Rotation = 45;

    //Write the PPTX file to disk
    pres.Save(dataDir + "RectPicFrameFormat_out.pptx", SaveFormat.Pptx);
}