PDF.js
https://mozilla.github.io/pdf.js/
Chrome, FireFox - DEMO
http://mozilla.github.io/pdf.js/web/viewer.html
IE - DEMO
http://mozilla.github.io/pdf.js/es5/web/viewer.html
PDF 파일 열기
var loadingTask = pdfjsLib.getDocument('helloworld.pdf');
loadingTask.promise.then(function(pdf) {
// you can now use *pdf* here
});
PDF 특정 페이지로 열기
var num = 1;
pdf.getPage(num).then(function(page) {
// you can now use *page* here
});
'DEV' 카테고리의 다른 글
FP(Function Point,기능점수) 작성 중 헷갈리던 것 정리 (0) | 2020.07.27 |
---|---|
[JAVA] XSS 필터 (0) | 2020.06.29 |
[eclipse] 심각: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener (0) | 2020.06.29 |
sitemesh 설정 (exclude 처리 포함) (0) | 2020.06.18 |
[PostgreSQL] 정규식으로 문자 제거 (0) | 2020.06.18 |