本文整理汇总了Java中org.apache.poi.util.Units类的典型用法代码示例。如果您正苦于以下问题:Java Units类的具体用法?Java Units怎么用?Java Units使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Units类属于org.apache.poi.util包,在下文中一共展示了Units类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: main
import org.apache.poi.util.Units; //导入依赖的package包/类
public static void main(String[] args) throws Exception
{
XWPFDocument doc = new XWPFDocument();
XWPFParagraph p = doc.createParagraph();
String imgFile = "aspose.jpg";
XWPFRun r = p.createRun();
int format = XWPFDocument.PICTURE_TYPE_JPEG;
r.setText(imgFile);
r.addBreak();
r.addPicture(new FileInputStream(imgFile), format, imgFile, Units.toEMU(200), Units.toEMU(200)); // 200x200 pixels
r.addBreak(BreakType.PAGE);
FileOutputStream out = new FileOutputStream("data/Apache_ImagesInDoc.docx");
doc.write(out);
out.close();
System.out.println("Process Completed Successfully");
}
开发者ID:asposemarketplace,项目名称:Aspose_for_Apache_POI,代码行数:21,代码来源:ApacheInsertImage.java
示例2: computeAxisRowIndex
import org.apache.poi.util.Units; //导入依赖的package包/类
public static int computeAxisRowIndex(Sheet sheet, Picture picture) {
// Calculates the dimensions in EMUs for the anchor of the given picture
val dimension = ImageUtils.getDimensionFromAnchor(picture);
val halfHeight = dimension.getHeight() / Units.EMU_PER_POINT / 2;
val clientAnchor = picture.getClientAnchor();
val anchorRow1 = clientAnchor.getRow1();
val fromRowHeight = sheet.getRow(anchorRow1).getHeightInPoints();
val anchorDy1 = clientAnchor.getDy1();
val anchorRow2 = clientAnchor.getRow2();
val y1 = sheet instanceof HSSFSheet
? anchorDy1 / 256.0f * fromRowHeight // refer to HSSFClientAnchor.getAnchorHeightInPoints
: anchorDy1 / Units.EMU_PER_POINT;
var sumHeight = fromRowHeight - y1;
if (sumHeight >= halfHeight) return anchorRow1;
for (var i = anchorRow1 + 1; i < anchorRow2; ++i) {
sumHeight += sheet.getRow(i).getHeightInPoints();
if (sumHeight >= halfHeight) return i;
}
return anchorRow2;
}
开发者ID:bingoohuang,项目名称:excel2javabeans,代码行数:25,代码来源:ExcelImages.java
示例3: computeAxisColIndex
import org.apache.poi.util.Units; //导入依赖的package包/类
public static int computeAxisColIndex(Sheet sheet, Picture picture) {
// Calculates the dimensions in EMUs for the anchor of the given picture
val dimension = ImageUtils.getDimensionFromAnchor(picture); //
val halfWidth = dimension.getHeight() / Units.EMU_PER_PIXEL / 2;
val clientAnchor = picture.getClientAnchor();
val anchorCol1 = clientAnchor.getCol1();
val anchorCol2 = clientAnchor.getCol2();
val anchorDx1 = clientAnchor.getDx1();
val fromColumnWidth = sheet.getColumnWidthInPixels(anchorCol1);
var sumWidth = fromColumnWidth - anchorDx1 / Units.EMU_PER_PIXEL;
if (sumWidth >= halfWidth) return anchorCol1;
for (var i = anchorCol1 + 1; i < anchorCol2; ++i) {
sumWidth += sheet.getColumnWidthInPixels(i);
if (sumWidth >= halfWidth) return i;
}
return anchorCol2;
}
开发者ID:bingoohuang,项目名称:excel2javabeans,代码行数:22,代码来源:ExcelImages.java
示例4: main
import org.apache.poi.util.Units; //导入依赖的package包/类
public static void main(String[] args) throws Exception
{
String dataPath = "src/featurescomparison/workingwithimages/insertimage/data/";
XWPFDocument doc = new XWPFDocument();
XWPFParagraph p = doc.createParagraph();
String imgFile = dataPath + "aspose.jpg";
XWPFRun r = p.createRun();
int format = XWPFDocument.PICTURE_TYPE_JPEG;
r.setText(imgFile);
r.addBreak();
r.addPicture(new FileInputStream(imgFile), format, imgFile, Units.toEMU(200), Units.toEMU(200)); // 200x200 pixels
r.addBreak(BreakType.PAGE);
FileOutputStream out = new FileOutputStream(dataPath + "Apache_ImagesInDoc_Out.docx");
doc.write(out);
out.close();
System.out.println("Process Completed Successfully");
}
开发者ID:asposemarketplace,项目名称:Aspose_Words_for_Apache_POI,代码行数:23,代码来源:ApacheInsertImage.java
注:本文中的org.apache.poi.util.Units类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论