Something Useful/또 다른 정보
PDF 미리보기 / iframe과 embed
레오나르도 다빈츠
2022. 2. 21. 14:05

◽ <iframe>
툴바를 숨기는 경우 '#toolbar=0&navpanes=0&scrollbar=0'를 뒤에 추가한다.
<iframe src="/assets/test.pdf"></iframe>
<!-- 툴바숨기기 -->
<iframe src="/assets/test.pdf#toolbar=0&navpanes=0&scrollbar=0"></iframe>
◽ <embed>
<embed src="/assets/test.pdf" type="application/pdf" />
출처 및 참조
Javascript - PDF 뷰어 처리하기(웹 페이지 pdf파일 읽기)
사실 단순한 pdf파일을 보이게만 하는건 몇몇 태그를 활용하여 쉽게 처리가 가능합니다. iframe IE를 제외하고 firefox, chrome, edge등 모두 정상적으로 뷰어 동작을 하는것을 볼 수 있습니다. IE에서는
myhappyman.tistory.com
Hiding the toolbars surrounding an embedded pdf?
Though I think the answer maybe in this other question's answer concerning the pdf specification, is it possible to not display the adobe acrobat toolbars in an embedded pdf document?
stackoverflow.com