本文整理匯總了Java中org.apache.poi.ss.usermodel.Workbook.PICTURE_TYPE_PNG屬性的典型用法代碼示例。如果您正苦於以下問題:Java Workbook.PICTURE_TYPE_PNG屬性的具體用法?Java Workbook.PICTURE_TYPE_PNG怎麽用?Java Workbook.PICTURE_TYPE_PNG使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.apache.poi.ss.usermodel.Workbook
的用法示例。
在下文中一共展示了Workbook.PICTURE_TYPE_PNG屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: buildImageFormat
private int buildImageFormat(Image img){
int type=Workbook.PICTURE_TYPE_PNG;
String path=img.getPath();
if(path==null){
return type;
}
path=path.toLowerCase();
if(path.endsWith("jpg") || path.endsWith("jpeg")){
type=Workbook.PICTURE_TYPE_JPEG;
}
return type;
}
示例2: buildImageFormat
protected int buildImageFormat(Image img){
int type=Workbook.PICTURE_TYPE_PNG;
String path=img.getPath();
if(path==null){
return type;
}
path=path.toLowerCase();
if(path.endsWith("jpg") || path.endsWith("jpeg")){
type=Workbook.PICTURE_TYPE_JPEG;
}
return type;
}