- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSheet.removePictureRelation()
方法的一些代码示例,展示了XSLFSheet.removePictureRelation()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XSLFSheet.removePictureRelation()
方法的具体详情如下:
包路径:org.apache.poi.xslf.usermodel.XSLFSheet
类名称:XSLFSheet
方法名:removePictureRelation
[英]Helper method for sheet and group shapes
[中]板材和组形状的辅助方法
代码示例来源:origin: org.apache.poi/poi-ooxml
} else if (obj instanceof CTPicture) {
XSLFPictureShape ps = (XSLFPictureShape)xShape;
removePictureRelation(ps);
spTree.getPicList().remove(obj);
} else {
代码示例来源:origin: org.apache.poi/poi-ooxml
/**
* Remove the specified shape from this group
*/
@Override
public boolean removeShape(XSLFShape xShape) {
XmlObject obj = xShape.getXmlObject();
CTGroupShape grpSp = (CTGroupShape)getXmlObject();
getSheet().deregisterShapeId(xShape.getShapeId());
if(obj instanceof CTShape){
grpSp.getSpList().remove(obj);
} else if (obj instanceof CTGroupShape){
XSLFGroupShape gs = (XSLFGroupShape)xShape;
new ArrayList<>(gs.getShapes()).forEach(gs::removeShape);
grpSp.getGrpSpList().remove(obj);
} else if (obj instanceof CTConnector){
grpSp.getCxnSpList().remove(obj);
} else if (obj instanceof CTGraphicalObjectFrame) {
grpSp.getGraphicFrameList().remove(obj);
} else if (obj instanceof CTPicture) {
XSLFPictureShape ps = (XSLFPictureShape)xShape;
XSLFSheet sh = getSheet();
if (sh != null) {
sh.removePictureRelation(ps);
}
grpSp.getPicList().remove(obj);
} else {
throw new IllegalArgumentException("Unsupported shape: " + xShape);
}
return _shapes.remove(xShape);
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
} else if (obj instanceof CTPicture) {
XSLFPictureShape ps = (XSLFPictureShape)xShape;
removePictureRelation(ps);
spTree.getPicList().remove(obj);
} else {
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
/**
* Remove the specified shape from this group
*/
@Override
public boolean removeShape(XSLFShape xShape) {
XmlObject obj = xShape.getXmlObject();
CTGroupShape grpSp = (CTGroupShape)getXmlObject();
getSheet().deregisterShapeId(xShape.getShapeId());
if(obj instanceof CTShape){
grpSp.getSpList().remove(obj);
} else if (obj instanceof CTGroupShape){
XSLFGroupShape gs = (XSLFGroupShape)xShape;
new ArrayList<>(gs.getShapes()).forEach(gs::removeShape);
grpSp.getGrpSpList().remove(obj);
} else if (obj instanceof CTConnector){
grpSp.getCxnSpList().remove(obj);
} else if (obj instanceof CTGraphicalObjectFrame) {
grpSp.getGraphicFrameList().remove(obj);
} else if (obj instanceof CTPicture) {
XSLFPictureShape ps = (XSLFPictureShape)xShape;
XSLFSheet sh = getSheet();
if (sh != null) {
sh.removePictureRelation(ps);
}
grpSp.getPicList().remove(obj);
} else {
throw new IllegalArgumentException("Unsupported shape: " + xShape);
}
return _shapes.remove(xShape);
}
我得到了带有简单演示的 pptx 文件。它有背景图像,上面有白色文本,并且该文本有阴影。我需要简化演示并删除所有这些内容(将背景设置为白色,将字体颜色设置为黑色并删除阴影) 更改 bachground
我正在使用 Apache POI 库通过 Java 创建 powerpoint 幻灯片。我们的客户对嵌入文本、图像和视频感兴趣。没有花哨现在需要图表等东西。据我了解 XSLF 仍然正在开发中,尚未成为
我使用 Apache POI 作为一种模板化布局的方式,其中的占位符形状将替换为从 Restful 调用中检索到的内容。 所有这些工作正常,但我找不到用另一个图像替换图像的方法。 我知道可以使用以下代
我正在努力在 apache POI 中创建部分。我希望能够用幻灯片定义部分,我该如何做到这一点?到目前为止,我可以毫无问题地添加幻灯片。 这是保存为 XML 的演示文稿的 PowerPoint 部分,
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideLayout类的一些代码示例,展示了XSLFSlideLayout类的具体用法。这些代码示例主要来源于
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFTextParagraph类的一些代码示例,展示了XSLFTextParagraph类的具体用法。这些代码示例主
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFTextRun类的一些代码示例,展示了XSLFTextRun类的具体用法。这些代码示例主要来源于Github/S
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideMaster类的一些代码示例,展示了XSLFSlideMaster类的具体用法。这些代码示例主要来源于
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFTableCell类的一些代码示例,展示了XSLFTableCell类的具体用法。这些代码示例主要来源于Gith
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFTableRow类的一些代码示例,展示了XSLFTableRow类的具体用法。这些代码示例主要来源于Github
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFNotes类的一些代码示例,展示了XSLFNotes类的具体用法。这些代码示例主要来源于Github/Stack
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFPictureShape类的一些代码示例,展示了XSLFPictureShape类的具体用法。这些代码示例主要来
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSheet类的一些代码示例,展示了XSLFSheet类的具体用法。这些代码示例主要来源于Github/Stack
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFHyperlink类的一些代码示例,展示了XSLFHyperlink类的具体用法。这些代码示例主要来源于Gith
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideShow类的一些代码示例,展示了XSLFSlideShow类的具体用法。这些代码示例主要来源于Gith
当我使用 POI XSLF 创建 PPTX 时,我得到一张空白幻灯片: XMLSlideShow ppt = new XMLSlideShow(); XSLFSlide slide = ppt.cre
我正在制作一个应用程序来创建幻灯片放映。我设法在每张幻灯片上放置一个图像,但它覆盖了书面文本。如何将文字放在图片前面? 这是我的代码。 public void createNewSlide() thr
我需要在使用 Apache POI API 创建的 PowerPoint 演示文稿中创建一个具有水平或垂直渐变填充的矩形。 我正在为矩形使用 XSLFFreeformShape: XSLFGr
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideLayout.getName()方法的一些代码示例,展示了XSLFSlideLayout.getNam
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSlideLayout.getBackground()方法的一些代码示例,展示了XSLFSlideLayout.
我是一名优秀的程序员,十分优秀!