get image in pdf.



import java.io.*;
import com.lowagie.text.*;
import com.lowagie.text.pdf.*;

public class imagesPdf
{
public static void main(String arg[])throws Exception
{
  Document document=new Document();
  PdfWriter.getInstance(document,new FileOutputStream("imagesPDF.pdf"));
  document.open();
  Image image = Image.getInstance ("s.jpg");
  document.add(new Paragraph("MRS.NAVEEN RAJPUT"));
  document.add(image);
  document.close();
}
}

Popular posts from this blog

Simple Sign up design. Android.

Cart page design in android.

Set Date on jDateChooser and retrieve record from database.