當前位置: 首頁>>代碼示例>>Java>>正文


Java XWPFDocument.PICTURE_TYPE_PNG屬性代碼示例

本文整理匯總了Java中org.apache.poi.xwpf.usermodel.XWPFDocument.PICTURE_TYPE_PNG屬性的典型用法代碼示例。如果您正苦於以下問題:Java XWPFDocument.PICTURE_TYPE_PNG屬性的具體用法?Java XWPFDocument.PICTURE_TYPE_PNG怎麽用?Java XWPFDocument.PICTURE_TYPE_PNG使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在org.apache.poi.xwpf.usermodel.XWPFDocument的用法示例。


在下文中一共展示了XWPFDocument.PICTURE_TYPE_PNG屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: suggestFileType

private int suggestFileType(String imgFile) {
	int format = 0;

	if (imgFile.endsWith(".emf")) format = XWPFDocument.PICTURE_TYPE_EMF;
	else if (imgFile.endsWith(".wmf")) format = XWPFDocument.PICTURE_TYPE_WMF;
	else if (imgFile.endsWith(".pict")) format = XWPFDocument.PICTURE_TYPE_PICT;
	else if (imgFile.endsWith(".jpeg") || imgFile.endsWith(".jpg"))
		format = XWPFDocument.PICTURE_TYPE_JPEG;
	else if (imgFile.endsWith(".png")) format = XWPFDocument.PICTURE_TYPE_PNG;
	else if (imgFile.endsWith(".dib")) format = XWPFDocument.PICTURE_TYPE_DIB;
	else if (imgFile.endsWith(".gif")) format = XWPFDocument.PICTURE_TYPE_GIF;
	else if (imgFile.endsWith(".tiff")) format = XWPFDocument.PICTURE_TYPE_TIFF;
	else if (imgFile.endsWith(".eps")) format = XWPFDocument.PICTURE_TYPE_EPS;
	else if (imgFile.endsWith(".bmp")) format = XWPFDocument.PICTURE_TYPE_BMP;
	else if (imgFile.endsWith(".wpg")) format = XWPFDocument.PICTURE_TYPE_WPG;
	else {
		logger.error("Unsupported picture: " + imgFile
				+ ". Expected emf|wmf|pict|jpeg|png|dib|gif|tiff|eps|bmp|wpg");
	}
	return format;
}
 
開發者ID:Sayi,項目名稱:poi-tl,代碼行數:21,代碼來源:PictureRenderPolicy.java

示例2: getImageType

private static Integer getImageType(String type) {
    if (type.equalsIgnoreCase("JPG") || type.equalsIgnoreCase("JPEG")) {
        return XWPFDocument.PICTURE_TYPE_JPEG;
    }
    if (type.equalsIgnoreCase("GIF")) {
        return XWPFDocument.PICTURE_TYPE_GIF;
    }
    if (type.equalsIgnoreCase("BMP")) {
        return XWPFDocument.PICTURE_TYPE_GIF;
    }
    if (type.equalsIgnoreCase("PNG")) {
        return XWPFDocument.PICTURE_TYPE_PNG;
    }
    return XWPFDocument.PICTURE_TYPE_JPEG;
}
 
開發者ID:rushingpig,項目名稱:poix,代碼行數:15,代碼來源:PoiPublicUtil.java


注:本文中的org.apache.poi.xwpf.usermodel.XWPFDocument.PICTURE_TYPE_PNG屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。