0
Not to my knowledge.
Are you sure that the units are pixels per inch?
0
is resolution 18432*18432 ,a correct resolution ?
0
Well, on the face of it, this code should do it:
byte[] a = new byte[8] {0,72,0,0,0,72,0,0};
int horizontal = BitConverter.ToInt32(a, 0);
int vertical = BitConverter.ToInt32(a, 4);
Console.WriteLine("Resolution: {0} x {1}", horizontal, vertical);
but the output seems far too high:
Resolution: 18432 x 18432