当我们在演示文稿中添加商标、版权或其他符号时,我们可能希望该符号出现在某个文本的上方或下方。在 Microsoft PowerPoint 中,我们可以通过对符号应用上标或下标格式来实现这种效果。在这篇文章中,我们将演示如何在 Java 中使用 Spire.Presentation for Java 以编程的方式实现这一任务。
安装 Spire.Presentation for Java
首先,你需要在你的 Java 程序中添加 Spire.Presentation.jar 文件作为一个依赖项。该JAR文件可以从这个链接下载。如果你使用 Maven,则可以通过在 pom.xml 文件中添加以下代码轻松导入该 JAR 文件。
<repositories>
<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url>https://repo.e-iceblue.cn/repository/maven-public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.presentation</artifactId>
<version>9.11.3</version>
</dependency>
</dependencies>
添加上标和下标
Spire.Presentation for Java 提供了 PortionEx.getFormat().setScriptDistance(float value) 方法来应用上标或下标格式到文本。该值可以被设置为正值或负值。正值越大,上标将在你的文本上方越高的位置出现。负值越小,下标就会在你的文本下方越低的地方出现。
以下是在 PowerPoint 文档中添加上标或下标的步骤。
- 创建一个 Presentation 实例,并使用 Presentation.loadFromFile() 方法加载一个 PowerPoint 文档。
- 使用 Presentation.getSlides().get() 方法获得想要的幻灯片。
- 使用 ISlide.getShapes().appendShape() 方法在幻灯片上添加一个形状,并设置形状的填充类型和线条颜色。
- 使用 IAutoShape.getTextFrame() 方法访问形状的文本框,然后使用 ITextFrameProperties.getParagraphs().clear() 方法清除文本框中的默认段落。
- 使用 ParagraphEx 类创建一个段落,并使用 ParagraphEx.setText() 方法向该段落添加正常文本。
- 使用 PortionEx 类创建一个带有文本的部分,然后使用 PortionEx.getFormat().setScriptDistance(float value) 方法将上标或下标格式化到文本中。
- 为正常文本和上标或下标文本设置文本颜色、字体和字体大小。
- 使用 ITextFrameProperties.getParagraphs().append() 方法将段落附加到形状的文本框中。
- 使用 Presentation.saveToFile() 方法保存结果文档。
- Java
import com.spire.presentation.*;
import com.spire.presentation.drawing.*;
import java.awt.*;
public class AddSuperscriptAndSubscript {
public static void main(String []args) throws Exception {
//加载一个PowerPoint文档
Presentation presentation = new Presentation();
presentation.loadFromFile("template.pptx");
//得到第一张幻灯片
ISlide slide = presentation.getSlides().get(0);
//在幻灯片上添加一个形状
IAutoShape shape = slide.getShapes().appendShape(ShapeType.RECTANGLE, new Rectangle(150, 100, 200, 50));
shape.getFill().setFillType(FillFormatType.NONE);
shape.getShapeStyle().getLineColor().setColor(Color.white);
//访问形状的文本框
ITextFrameProperties textFrame = shape.getTextFrame();
//清除文本框中的默认段落
textFrame.getParagraphs().clear();
//创建一个段落并添加正常文本
ParagraphEx para = new ParagraphEx();
para.setText("s=πr");
//创建带有上标文本的部分
PortionEx tr = new PortionEx("2");
tr.getFormat().setScriptDistance(40);
//添加这个部分到段落中
para.getTextRanges().append(tr);
para.getTextRanges().append(new PortionEx("\n"));
//为正常文本设置文本颜色,字体,字体大小
tr = para.getTextRanges().get(0);
tr.getFill().setFillType(FillFormatType.SOLID);
tr.getFill().getSolidColor().setColor(new Color(128,0,128));
tr.setFontHeight(20);
tr.setLatinFont(new TextFont("Arial"));
//为上标文本设置文本颜色以及字体
tr = para.getTextRanges().get(1);
tr.getFill().setFillType(FillFormatType.SOLID);
tr.getFill().getSolidColor().setColor(Color.BLUE);
tr.setLatinFont(new TextFont("Arial"));
//添加段落到形状的文本框
textFrame.getParagraphs().append(para);
//使用正常文本创建另一个段落
para = new ParagraphEx();
para.setText("h");
//创建带有下标文本的部分
tr = new PortionEx("1");
tr.getFormat().setScriptDistance(-25);
//添加这个部分到段落中
para.getTextRanges().append(tr);
//为正常文本设置文本颜色,字体,字体大小
tr = para.getTextRanges().get(0);
tr.getFill().setFillType(FillFormatType.SOLID);
tr.getFill().getSolidColor().setColor(new Color(128,0,128));
tr.setFontHeight(20);
tr.setLatinFont(new TextFont("Arial"));
//为下标文本设置文本颜色以及字体
tr = para.getTextRanges().get(1);
tr.getFill().setFillType(FillFormatType.SOLID);
tr.getFill().getSolidColor().setColor(Color.BLUE);
tr.setLatinFont(new TextFont("Arial"));
//添加这个段落到形状的文本框
textFrame.getParagraphs().append(para);
//保存结果文档
presentation.saveToFile("AddSuperscriptAndSubscript.pptx", FileFormat.PPTX_2013);
}
}
申请临时 License
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该Email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用JavaScript。获取有效期 30 天的临时许可证。