Hi Dwight,
Thanks for sharing the details.
In order to get the dimensions for Title of Image file, please try using following code snippet. In case you still face any issue, please share your sample Image file and code snippet which you are using, so that we can test the scenario in our environment.
[C#]
Document pdfDocument = new Document();<o:p></o:p>
Aspose.Pdf.Image
image = new Aspose.Pdf.Image();
image.Title = new TextFragment("Large
Title for Image file ");
Console.WriteLine("Title
Height = " +image.Title.Rectangle.Height + ", Title Width = " + image.Title.Rectangle.Width
);
image.File = "c:/pdftest/Screen
Shot 2013-11-18 at 9.23.20 PM.png";
pdfDocument.Pages.Add();
pdfDocument.Pages[1].Paragraphs.Add(image);
pdfDocument.Save(@“C:\pdftest\ImageFileTEst.pdf”);