Package com.lowagie.text

Examples of com.lowagie.text.ImgEMF


    Document document = new Document();
    FileOutputStream os = new FileOutputStream("target/test.rtf");
    RtfWriter2 writer = RtfWriter2.getInstance(document, os);
   
    byte[] bytes = IOUtils.getFileBytes(new File("src/test/resources/test.emf"));
    Image image = new ImgEMF(bytes, 500, 500);
   
    document.open();
    document.add(new Paragraph("Hello World"));
    document.add(image);
    writer.close();
View Full Code Here

TOP

Related Classes of com.lowagie.text.ImgEMF

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.