Rotate 30 degrees : Image « PDF « Java Tutorial






import java.io.FileOutputStream;

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

public class MainClass {
  public static void main(String[] args) throws Exception {
    Document document = new Document();
    PdfWriter.getInstance(document, new FileOutputStream("2.pdf"));
    document.open();
    Image jpg1 = Image.getInstance("dog.jpg");
    jpg1.scalePercent(80);
    jpg1.setRotation((float) Math.PI / 6);
    document.add(new Paragraph("rotate 30 degrees"));
    document.add(jpg1);
    document.close();
  }
}








29.35.Image
29.35.1.Add image to an existing Pdf document
29.35.2.Image transition
29.35.3.Create chunk from Image
29.35.4.Scale Absolute
29.35.5.Scale Percent
29.35.6.Scale Percent: 100, 50
29.35.7.Image Wrapping
29.35.8.Image Alignment
29.35.9.Image Mask
29.35.10.Convert java.awt.Image to com.lowagie.text.Image
29.35.11.Black and White
29.35.12.Red and Yellow
29.35.13.Rotate 30 degrees
29.35.14.Get Image height and width
29.35.15.Rotate 45 degreesRotate 45 degrees
29.35.16.Image Absolute Position
29.35.17.Pattern Matrix for an image