import java.io.FileOutputStream;
import com.lowagie.text.Document;
import com.lowagie.text.Image;
import com.lowagie.text.pdf.PdfWriter;
public class ImageScalingPercentTwoAxisPDF {
public static void main(String[] args) {
Document document = new Document();
try {
PdfWriter.getInstance(document, new FileOutputStream("ImageScalingPercentTwoAxisPDF.pdf"));
document.open();
Image png = Image.getInstance("logo.png");
png.scalePercent(100, 50);
document.add(png);
} catch (Exception e) {
System.err.println(e.getMessage());
}
document.close();
}
}
|