First download pdf.js and pdf.workder.js from here or use direct link //mozilla.github.io/pdf.js/build/pdf.js and //mozilla.github.io/pdf.js/build/pdf.worker.js. |
<script src="pdf.js"></script> <title>PDF.js 'Hello, world!' example</title> <h1>PDF.js 'Hello, world!' example</h1> <canvas id="the-canvas" style="border:1px solid red;"></canvas> <script type="text/javascript"> var url = './sample2.pdf'; // Loaded via <script> tag, create shortcut to access PDF.js exports. var pdfjsLib = window['pdfjs-dist/build/pdf']; // The workerSrc property shall be specified. pdfjsLib.GlobalWorkerOptions.workerSrc = 'pdf.worker.js'; // Asynchronous download of PDF var loadingTask = pdfjsLib.getDocument(url); loadingTask.promise.then(function(pdf) { console.log('PDF loaded, total pages = ' + pdf.numPages); // Fetch the first page var pageNumber = 1; pdf.getPage(pageNumber).then(function(page) { console.log('Page loaded'); var scale = 1.5; var viewport = page.getViewport({scale: scale}); // Prepare canvas using PDF page dimensions var canvas = document.getElementById('the-canvas'); var context = canvas.getContext('2d'); canvas.height = viewport.height; canvas.width = viewport.width; // Render PDF page into canvas context var renderContext = { canvasContext: context, viewport: viewport }; var renderTask = page.render(renderContext); renderTask.promise.then(function () { console.log('Page rendered'); }); }); }, function (reason) { // PDF loading error console.error(reason); }); </script> |
Showing posts with label PDF to Image. Show all posts
Showing posts with label PDF to Image. Show all posts
Saturday, May 25, 2019
jQuery convert PDF to Images Page by Page using pdfjsLib from Mozilla Foundation
Tuesday, February 21, 2017
Create Thubmnail / Image From Each Page of a PDF Using Java
It is very important to make some thumbnails from pdf in our application. Using java it is now very easy to do this task. You have to open your pdf using java program then you can set which page (0...n) you want to make to thumbnail. Then you can save that as image to your server or desktop machine.
To complete this task you need to download PDFRenderer-0.9.1.jar.
You can download whole package from here.
Sample java code:
Sample output would be like something depends on your pdf file:
To complete this task you need to download PDFRenderer-0.9.1.jar.
You can download whole package from here.
Sample java code:
package com.pkm;
import com.sun.pdfview.PDFFile;
import com.sun.pdfview.PDFPage;
import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.RenderedImage;
import java.io.File;
import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
/**
* Created by pritom on 26/12/2016.
*/
public class ThumbnailFromPdf {
public static void main(String[] args) throws Exception {
File file = new File("src/com/pkm/PDF.pdf");
RandomAccessFile randomAccessFile = new RandomAccessFile(file, "r");
FileChannel fileChannel = randomAccessFile.getChannel();
ByteBuffer byteBuffer = fileChannel.map(FileChannel.MapMode.READ_ONLY, 0, fileChannel.size());
PDFFile pdfFile = new PDFFile(byteBuffer);
PDFPage pdfPage = pdfFile.getPage(0);
Rectangle rectangle = new Rectangle(0, 0, (int) pdfPage.getBBox().getWidth(), (int) pdfPage.getBBox().getHeight());
Image image = pdfPage.getImage(rectangle.width, rectangle.height, rectangle, null, true, true);
ImageIO.write((RenderedImage) image, "png", new File("src/com/pkm/PDF.png"));
}
}
Sample output would be like something depends on your pdf file:
Subscribe to:
Posts (Atom)