- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.poi.xslf.usermodel.XSLFSheet.getDrawing()
方法的一些代码示例,展示了XSLFSheet.getDrawing()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XSLFSheet.getDrawing()
方法的具体详情如下:
包路径:org.apache.poi.xslf.usermodel.XSLFSheet
类名称:XSLFSheet
方法名:getDrawing
暂无
代码示例来源:origin: org.apache.poi/poi-ooxml
@Override
public XSLFTextBox createTextBox(){
XSLFTextBox sh = getDrawing().createTextBox();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.apache.poi/poi-ooxml
@Override
public XSLFAutoShape createAutoShape(){
XSLFAutoShape sh = getDrawing().createAutoShape();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.apache.poi/poi-ooxml
public XSLFTable createTable(){
XSLFTable sh = getDrawing().createTable();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.apache.poi/poi-ooxml
@Override
public XSLFFreeformShape createFreeform(){
XSLFFreeformShape sh = getDrawing().createFreeform();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.apache.poi/poi-ooxml
@Override
public XSLFConnectorShape createConnector(){
XSLFConnectorShape sh = getDrawing().createConnector();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.apache.poi/poi-ooxml
@Override
public XSLFGroupShape createGroup(){
XSLFGroupShape sh = getDrawing().createGroup();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.apache.poi/poi-ooxml
@Override
public XSLFTable createTable(int numRows, int numCols){
if (numRows < 1 || numCols < 1) {
throw new IllegalArgumentException("numRows and numCols must be greater than 0");
}
XSLFTable sh = getDrawing().createTable();
getShapes().add(sh);
sh.setParent(this);
for (int r=0; r<numRows; r++) {
XSLFTableRow row = sh.addRow();
for (int c=0; c<numCols; c++) {
row.addCell();
}
}
return sh;
}
代码示例来源:origin: org.apache.poi/poi-ooxml
@Override
public XSLFPictureShape createPicture(PictureData pictureData){
if (!(pictureData instanceof XSLFPictureData)) {
throw new IllegalArgumentException("pictureData needs to be of type XSLFPictureData");
}
RelationPart rp = addRelation(null, XSLFRelation.IMAGES, (XSLFPictureData)pictureData);
XSLFPictureShape sh = getDrawing().createPicture(rp.getRelationship().getId());
new DrawPictureShape(sh).resize();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.apache.poi/poi-ooxml
@Override
public XSLFObjectShape createOleShape(PictureData pictureData) {
if (!(pictureData instanceof XSLFPictureData)) {
throw new IllegalArgumentException("pictureData needs to be of type XSLFPictureData");
}
RelationPart rp = addRelation(null, XSLFRelation.IMAGES, (XSLFPictureData)pictureData);
XSLFObjectShape sh = getDrawing().createOleShape(rp.getRelationship().getId());
CTOleObject oleObj = sh.getCTOleObject();
Dimension dim = pictureData.getImageDimension();
oleObj.setImgW(Units.toEMU(dim.getWidth()));
oleObj.setImgH(Units.toEMU(dim.getHeight()));
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev
public XSLFAutoShape createAutoShape(){
List<XSLFShape> shapes = getShapeList();
XSLFAutoShape sh = getDrawing().createAutoShape();
shapes.add(sh);
return sh;
}
代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev
public XSLFFreeformShape createFreeform(){
List<XSLFShape> shapes = getShapeList();
XSLFFreeformShape sh = getDrawing().createFreeform();
shapes.add(sh);
return sh;
}
代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev
public XSLFTextBox createTextBox(){
List<XSLFShape> shapes = getShapeList();
XSLFTextBox sh = getDrawing().createTextBox();
shapes.add(sh);
return sh;
}
代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev
public XSLFGroupShape createGroup(){
List<XSLFShape> shapes = getShapeList();
XSLFGroupShape sh = getDrawing().createGroup();
shapes.add(sh);
return sh;
}
代码示例来源:origin: org.openl.rules/org.openl.lib.poi.dev
public XSLFTable createTable(){
List<XSLFShape> shapes = getShapeList();
XSLFTable sh = getDrawing().createTable();
shapes.add(sh);
return sh;
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
@Override
public XSLFFreeformShape createFreeform(){
XSLFFreeformShape sh = getDrawing().createFreeform();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
@Override
public XSLFTextBox createTextBox(){
XSLFTextBox sh = getDrawing().createTextBox();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
@Override
public XSLFConnectorShape createConnector(){
XSLFConnectorShape sh = getDrawing().createConnector();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
public XSLFTable createTable(){
XSLFTable sh = getDrawing().createTable();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
@Override
public XSLFAutoShape createAutoShape(){
XSLFAutoShape sh = getDrawing().createAutoShape();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.poi
@Override
public XSLFGroupShape createGroup(){
XSLFGroupShape sh = getDrawing().createGroup();
getShapes().add(sh);
sh.setParent(this);
return sh;
}
谁能告诉我使用 getDrawable() 的正确方法,我记得上次我使用它时只有一个参数就好了,但现在我得到了这个方法已弃用的错误,有人吗?波纹管是我正在尝试使用的 fragment private
我对这两个 API 有点困惑。 ResourcesCompat.getDrawable(Resources res, int id, Resources.Theme theme) Return a d
只是好奇——表面上看起来更尴尬,更不容易被发现,但有充分的理由吗? 最佳答案 我认为它是有意混淆了一点,因为大多数时候你不应该直接摆弄可视化树,符合“框架设计指南”“常用类应该遵循基本场景”的理念。
当我想输入数据但我没有在我的代码中使用任何可绘制对象时,我发现了这个错误。而我只是使用一个简单的 EditText 来读取数据。我在这个论坛中提到了许多其他解决方案,但它没有帮助。 Drawable
我是编程新手。我想构建一个可以保存或下载 QR 码的 QR 码生成器。 这是我的生成器代码: public class GeneratorActivity extends AppCompatA
如果我使用 ldpi 设备,是否可以从 res/drawable-xxxdpi 获取图像?也就是说,R.drawable.sunmsg 为我提供了当前 dpi 的图像链接。我不想将资源从 res/dr
private int ServiceLeft; private int ServiceRight; private int Services; final TextView countTextVie
我想将当前图像设置为 Android 设备中的墙纸,并在缩放后将其设置为列表中的 ImageView 。我在做什么: final WallpaperManager wm = WallpaperMana
我根据另一篇文章在 setOnClickListener 中使用它 here 像这样: start.setOnClickListener(new View.OnClickListener() {
由于发布的代码与有关该问题的代码不同,我已经解决了关于此事的最后一个问题,因此我将使用正确的代码重试... 事情是这样的,我一直在使用适用于 Android 的 GoogleMaps API 运行一些
我正在使用 glide 进行 ImageView ,我想从该 ImageView 中获取位图-- ImageView imageView = (ImageView) findViewById(R.id
我有一个加载三个 png 图像的 Activity 。在 hdpi 上,它们分别是 20kb、148kb 和 190kb。这是我加载它们的代码: Drawable bronzePlaque = res
我有一个包含以下代码的 fragment : final MyActivity activity = (MyActivity )getActivity(); 然后稍后: Drawable d = (D
我需要将 edittext 中的字符串转换为位图,但我没有得到字符串,而是得到了这个(见图) 我的代码如下 Canvas c=new Canvas(); MainActivity.edit
我需要访问 ClipDrawable设置剪辑电平。这是可绘制对象: @drawable/left_arrow: @drawable/rotated_square:
我一直在使用 GoogleMaps API 并偶然发现了这个错误,我正在尝试使用 CustomItemizedOverlay 在我的 map 上设置标记...当我尝试从我的项目资源访问我的其中一张图像
所以我今天刚刚发布了一个新的测试版,没有对这段代码进行任何更改。奇怪的是,我在 Crashlytics 上报告了一个以前从未见过的新崩溃。它只发生在来自两个不同制造商的 Android 6 和 7 的
在 MainActivity 中调用 getDrawable() 时遇到问题,我已经完成了 activity_main.xml,但它显示此警告“类型资源中的方法 getDrawable(int) 已弃
我被这个看似简单的问题困住了。我做错了什么? ImageView mImageView; @Override protected void onCreate(Bundle savedI
我在我的项目中使用过这样的 context.getDrawable(): Drawable greenProgressbar = context.getDrawable(R.drawable.cust
我是一名优秀的程序员,十分优秀!