Image: Scale Absolute : Image Scale « PDF RTF « Java






Image: Scale Absolute

Image: Scale Absolute
import java.io.FileOutputStream;
import java.io.IOException;

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

public class ImageScalingAbsolutePDF {
  public static void main(String[] args) {
    Document document = new Document();
    try {
      PdfWriter.getInstance(document, new FileOutputStream("ImageScalingAbsolutePDF.pdf"));
      document.open();
      Image png = Image.getInstance("logo.png");
      png.scaleAbsolute(160, 120);
      
      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 by PercentImage: Scale by Percent
3.Image: Scale Percent Two AxisImage: Scale Percent Two Axis