I am writing some data to the pdf using itextsharp. I am adding 2 images. I used this code:
iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance(System.Windows.Forms.Application.StartupPath + "\\t.jpg");
iTextSharp.text.Image img2 = iTextSharp.text.Image.GetInstance(System.Windows.Forms.Application.StartupPath + "\\teiasLogo.jpg");
pdfDocCreatePDF.Add(img);
pdfDocCreatePDF.Add(img2);
I want to see them like that :

As a result I don’t want new line ( \n ) between the images, I want spaces. How can I do that? Thanks..
You can produce that by using PdfPTable. Create a new table. Then you can assign your images to each cell (with border=0).