簡體   English   中英

如何在C#(Aspose)的PPT中設置圖像position和圖像大小?

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

我想移動圖像 position 並想在使用 Aspose.slides 的 C# 中的 PPT 中設置圖像大小。 我該如何解決這個問題?

我要引用文檔

// 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);
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM