首页 > 解决方案 > 使用openxml的ppt中的段落没有更改为所需的格式

问题描述

我正在尝试通过更改文本、字体大小、字体样式和对齐方式来编辑 pptx 中的段落。

这是我到目前为止所做的:

  **this is the method im using to call the update paragraph**

    public static void Main(string[] args)
    {
       
        using (PresentationDocument presentationDocument = PresentationDocument.Open("ppturl", true))
        {
            // Get the presentation part of the presentation document.
            PresentationPart presentationPart = presentationDocument.PresentationPart;

            // Verify that the presentation part and presentation exist.
            if (presentationPart != null && presentationPart.Presentation != null)
            {
                // Get the Presentation object from the presentation part.
                Presentation presentation = presentationPart.Presentation;

                // Verify that the slide ID list exists.
                if (presentation.SlideIdList != null)
                {
     
                        SlideId sourceSlide = presentation.SlideIdList.ChildElements[0] as SlideId;
                        SlidePart slidePart = presentationPart.GetPartById(sourceSlide.RelationshipId) as SlidePart;

                    updateParagraph(slidePart);
                }
            }
        }

        Console.ReadLine();

        CreateHostBuilder(args).Build().Run();
    }
   
**Here im extracting the title in the slide because this is what i need.**

    public static void updateParagraph(SlidePart slidePart)
    {
        if (slidePart == null)
        {
            throw new ArgumentNullException("presentationDocument");
        }

        if (slidePart.Slide != null)
        {
            // Find all the title shapes.
            var shapes = from shape in slidePart.Slide.Descendants<Shape>()
                         where IsTitleShape(shape)
                         select shape;
            foreach (P.Shape shape in shapes)
            {
                D.Paragraph paragraph = shape.TextBody.Elements<D.Paragraph>().FirstOrDefault();
                shape.TextBody.RemoveAllChildren<D.Paragraph>();
                AddNewParagraph(shape, "This is a new Slide");

            }
           
        }
    }


  **This is where i am trying to add a new paragraph with specific style**

    public static void AddNewParagraph(this P.Shape shape, string NewText)
    {

        D.Paragraph p = new D.Paragraph();

        P.TextBody docBody = shape.TextBody;
        Justification justification1 = new Justification() { Val = JustificationValues.Center };
        p.ParagraphProperties=new D.ParagraphProperties(justification1);
        D.Run run = new D.Run(new D.Text(NewText));
        D.RunProperties runProp = new D.RunProperties() { Language = "en-US", FontSize = 9, Dirty = false };
        run.AppendChild(runProp);
        D.Text newText = new D.Text(NewText);
        run.AppendChild(newText);
        Console.WriteLine("--------------------------------------------------------------");
        Console.WriteLine(runProp.FontSize.ToString());
        Console.WriteLine("--------------------------------------------------------------");
        p.Append(run);
        docBody.Append(p);

    }

每当我尝试打开 pptx“修复 pptx 错误”时,这都会给我一个错误。有人可以提供一个特定于 pptx 而不是 doc. 的明确解决方案吗?

谢天谢地..

标签: c#xmlerror-handlingpowerpointopenxml

解决方案


您可以尝试使用Aspose.Slides for .NET。以下代码示例向您展示了如何使用此库更改某些段落属性:

using (var presentation = new Presentation("example.pptx"))
{
    var firstShape = (IAutoShape) presentation.Slides[0].Shapes[0];
    var firstParagraph = firstShape.TextFrame.Paragraphs[0];
    var firstPortion = firstParagraph.Portions[0];

    firstPortion.Text = "New text.";
    firstPortion.PortionFormat.FontHeight = 24;
    firstPortion.PortionFormat.FontBold = NullableBool.True;

    firstParagraph.ParagraphFormat.Alignment = TextAlignment.Center;

    presentation.Save("example.pptx", SaveFormat.Pptx);
}

您还可以评估Aspose.Slides Cloud SDK for .NET。这个基于 REST 的 API 允许您每月进行 150 次免费 API 调用,用于 API 学习和演示处理。以下代码示例向您展示了如何使用 Aspose.Slides Cloud 更改段落设置:

var slidesApi = new SlidesApi("my_client_id", "my_client_key");

var fileName = "example.pptx";
var slideIndex = 1;
var shapeIndex = 1;
var paragraphIndex = 1;
var portionIndex = 1;

var firstPortion = slidesApi.GetPortion(
    fileName, slideIndex, shapeIndex, paragraphIndex, portionIndex);

firstPortion.Text = "New text.";
firstPortion.FontHeight = 24;
firstPortion.FontBold = Portion.FontBoldEnum.True;

slidesApi.UpdatePortion(
    fileName, slideIndex, shapeIndex, paragraphIndex, portionIndex, firstPortion);

var firstParagraph = slidesApi.GetParagraph(
    fileName, slideIndex, shapeIndex, paragraphIndex);

firstParagraph.Alignment = Paragraph.AlignmentEnum.Center;

slidesApi.UpdateParagraph(
    fileName, slideIndex, shapeIndex, paragraphIndex, firstParagraph);

我在 Aspose 担任支持开发人员。


推荐阅读