I cannot seem to find the information on "How do I get the image resolution and DPI"
I checked on the following page and it does not exist:
(as described in the following FAQ - http://www.pdftron.com/net/faq.html#img_01)
I did find a method called MatrixScale but it includes some errors.
static double MatrixScale(pdftron.Common.Matrix2D m)
{
double x = 0.707106781 * m.getA() + 0.707106781 * m.getB();
double y = 0.707106781 * m.getC() + 0.707106781 * m.getD();
return Math.Sqrt(x * x + y * y);
}
pdftron.Common.Matrix2D does not contain a definition for getA (etc)
Thanks, Marty