Images: Default WRAP In a New Line
import java.io.FileOutputStream; import com.lowagie.text.Chunk; import com.lowagie.text.Document; import com.lowagie.text.Image; import com.lowagie.text.Phrase; import com.lowagie.text.pdf.PdfWriter; public class ImagesDefaultWRAPInANewLinePDF { public static void main(java.lang.String[] args) { Document document = new Document(); try { PdfWriter.getInstance(document, new FileOutputStream("ImagesDefaultWRAPInANewLinePDF.pdf")); document.open(); Image imageRight = Image.getInstance("logo.png"); imageRight.setAlignment(Image.LEFT); for (int i = 0; i < 100; i++) { document.add(new Phrase("Text ")); } document.add(Chunk.NEWLINE); document.add(imageRight); for (int i = 0; i < 100; i++) { document.add(new Phrase("Text ")); } } catch (Exception e) { System.err.println(e.getMessage()); } document.close(); } }
1. | Strict Image Sequence | ![]() | |
2. | Images: TEXTWRAP | ![]() | |
3. | Images: UNDERLYING | ![]() | |
4. | Images Alignment with Text | ![]() | |
5. | Image Absolute Positions | ![]() | |
6. | Image Alignment in PDF document | ![]() | |
7. | Images Default WRAP | ![]() | |
8. | Image Sequence Demo | ![]() |