Image: Scale by Percent : Image Scale « PDF RTF « Java






Image: Scale by Percent

Image: Scale by Percent
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();
  }
}

           
       








itext.zip( 1,748 k)

Related examples in the same category

1.Image: Scale to FitImage: Scale to Fit
2.Image: Scale AbsoluteImage: Scale Absolute
3.Image: Scale Percent Two AxisImage: Scale Percent Two Axis