ImageScalingByPercentPDF.java Source code

Java tutorial

Introduction

Here is the source code for ImageScalingByPercentPDF.java

Source

import java.io.FileOutputStream;

import com.lowagie.text.Document;
import com.lowagie.text.Image;
import com.lowagie.text.pdf.PdfWriter;

public class ImageScalingByPercentPDF {
    public static void main(String[] args) {
        Document document = new Document();
        try {
            PdfWriter.getInstance(document, new FileOutputStream("ImageScalingByPercentPDF.pdf"));
            document.open();
            Image png = Image.getInstance("logo.png");
            png.scalePercent(50);

            document.add(png);

        } catch (Exception e) {
            System.err.println(e.getMessage());
        }
        document.close();
    }
}