如何在 JSP 页中显示 PDF 缩略图
How to display PDF thumbnails in JSP pages
我试过用下面的js,好像不可行。
PDF.js 'Hello, world!' example
我该如何解决?
function dispPhoto(file,suffix) {
var $thumbArea = $('#thumbnail'+suffix);
$thumbArea.empty();
$('#fileName'+suffix).html( "" );
$('#MSG_SHOKEN'+suffix).html("");
if(!file || !file.type.match(/^image\/(jpeg|jpg|jpe|png)$|application\/pdf/)) {
return false;
}
var isPdf = Boolean(file.type.match(/application\/pdf/));
var reader = new FileReader();
if (isPdf) {
/*
*
*/
}
将 ES6 转换为 Es5 并使用您想要的字符集
我试过用下面的js,好像不可行。 PDF.js 'Hello, world!' example
我该如何解决?
function dispPhoto(file,suffix) {
var $thumbArea = $('#thumbnail'+suffix);
$thumbArea.empty();
$('#fileName'+suffix).html( "" );
$('#MSG_SHOKEN'+suffix).html("");
if(!file || !file.type.match(/^image\/(jpeg|jpg|jpe|png)$|application\/pdf/)) {
return false;
}
var isPdf = Boolean(file.type.match(/application\/pdf/));
var reader = new FileReader();
if (isPdf) {
/*
*
*/
}
将 ES6 转换为 Es5 并使用您想要的字符集