Hello Rakesh,
Please try the following code snippet,
Pdf pdf1 = new Pdf();
//////Create a section in the Pdf instance
Aspose.Pdf.Section sec1 = pdf1.Sections.Add();
////Create a Table object
Aspose.Pdf.Table pdfCurrentTable = new Aspose.Pdf.Table(sec1);
//Set default cell border using BorderInfo object
pdfCurrentTable.DefaultCellBorder = new BorderInfo((int)BorderSide.All, 0.1F);
Aspose.Pdf.Row row0, row1, row2, row3;
row0 = pdfCurrentTable.Rows.Add();
Aspose.Pdf.Cell cell0, cell1;
cell0 = row0.Cells.Add();
//Create an image object
Aspose.Pdf.Image image1 = new Aspose.Pdf.Image();
//Set the path of image file
image1.ImageInfo.File = @"C:\Temp\Aspose.JPG";
//Set the type of image using ImageFileType enumeration
image1.ImageInfo.ImageFileType = ImageFileType.Jpeg;
// Add image to paragraph collection of cell
row0.Cells[0].Paragraphs.Add(image1);
sec1.Paragraphs.Add(pdfCurrentTable);
// Create and save the pdf document
pdf1.Save(@"c:\Temp\FontVerdanaIssue.pdf");
Incase of any further issue, please feel free to share.