import java.io.*; import com.lowagie.text.*; import com.lowagie.text.pdf.*; public class imagesWrapPDF { public static void main(String arg[])throws Exception { Document document=new Document(); PdfWriter.getInstance(document,new FileOutputStream("imagesWrapPDF.pdf")); document.open(); Image image = Image.getInstance ("devi.jpg"); Paragraph para=new Paragraph("RoseIndia.net is a global services company that ensures maximum returns by providing quality software solutions and services. The Indian based company provides services to several reputed institutional clients, in the domain of IT and IT enabled Technologies. We help in understanding the client requirements and offer customized solutions in various specialized areas like Web based Technologies , Database Systems , Client Server Architecture , E-commerce Solutions and Consultancy Services . Other services offered include Online Technical Tutorials , Content Development and Generation , Web solutions for B2B, B2C, C2C and Travel portals , Web Development, Promotion and Hosting, and Applications Service Provider Solutions . With expertise and skilled human resource, we also provide assistance for offshore development of projects. "); document.add(para); document.add(image); document.close(); } }