3 Cara Menampilkan PDF Kedalam Situs WordPress Kita
Ini 3 cara untuk menampilkan PDF secara keseluruhan (all pages) kedalam postingan atau page atau situs Wordcodess kita.
3 Cara Menampilkan PDF Kedalam Situs Wordcodess
- Iframe
- Menggunakan javascript
- Menggunakan layanan online converter
1. Menggunakan Iframe
Untuk menampilkan PDF kedalam post menggunakan iframe ikuti contoh code dibawah ini:
2. Menggunakan Javascript Library
Salah satu Javascript library yang tekenal untuk menampilkan (render) PDF adalah PDF.js.
function register_my_menu() {
register_nav_menu('header-menu',__( 'Header Menu' ));
}
add_action('init', 'register_my_menu');
PDF.js adalah open source library javascript untuk menampilkan dan memanipulasi (customize) PDF langsung kedalam web browser.
Untuk menggunakan PDF.js Anda harus menyertakan library ini kedalam tag HTML Anda lalu membuat instance ‘PDFViewe’ object. Contoh:
<!-- Include the PDF.js library -->
<script src="https://cdn.jsdelivr.net/npm/pdfjs-dist@2.7.7/build/pdf.min.js"></script>
<!-- Create a container element for the PDF viewer -->
<div id="pdfViewer"></div>
<script>
// Initialize the PDF viewer
const pdfViewer = new PDFJS.PDFViewer({
container: document.getElementById('pdfViewer'),
});
// Load a PDF file
PDFJS.getDocument('https://example.com/path/to/document.pdf').then(function(pdf) {
// Display the PDF file in the viewer
pdfViewer.setDocument(pdf);
});
</script>
Anda dapat menyesuaikan tampilan dan perilaku penampil PDF dengan menyetel berbagai opsi di konstruktor PDFViewer. Misalnya, Anda dapat menyetel opsi halaman untuk menentukan halaman awal yang akan ditampilkan, atau opsi defaultZoomValue untuk menentukan tingkat zoom default.
Klik link ini untuk melihat contohnya.
3. Menggunakan Converter PDF to HTML
Tool | Harga | OS | Rating | Format Support |
UPDF | 29.99USD/yr | Win, Mac, iOS, Android | 4.8 | PDF to HTML, Word, Excel, PowerPoint, Text, XML, PDF/A, OCR, CSV |
Khisoft | Free | Win | 3.2 | PDF to HTML |
PDFOnline (Xodo) | Xodo Pro: $9/Annually | Online Tool | 3.5 | PDF to HTML, Word, Excel, PowerPoint, Text, XML, PDF/A |
Weeny PDF to HTML Converter | Free | Windows | 3.9 | PDF to HTML |
PDF2Go | Free | Online Tool | 3.5 | PDF to HTML, Word, Excel, PowerPoint, Text, Images |
Adobe Acrobat (Windows) | Acrobat Pro: $239.88/Year | Windows | 4.7 | PDF to HTML, Word, Excel, PowerPoint, Text, XML, PDF/A, CSV, Images |
PDFMate | Ebook Converter Pro: $14.95/Month | Windows | 4 | PDF to EPUB, Text, Word, Image, HTML, SWF |
Convert PDF to HTML | Free | Online Tool | 3.7 | PDF to HTML |
Investintech | Free | Online Tool | 3.2 | PDF to HTML, Word, Excel, PowerPoint, Text, XML, PDF/A, DWG |