|
We need to check that the dimensions of the image weren't too big
for our document so we use the GetInfo function to get the natural
dimensions of the image.
theID2 = theDoc.GetInfo(theID1, "XObject")
theWidth = theDoc.GetInfo(theID2, "Width")
theHeight = theDoc.GetInfo(theID2, "Height")
|