can you refer to any documentation that would be helpful? its really confusing.
this is what i have been able to do
AcroPDDoc pdfd = new AcroPDDoc();
pdfd.Open(@"d:\SSGC.pdf");
Object jsObj = pdfd.GetJSObject();
Type jsType = pdfd.GetType();
//have to use acrobat javascript api because, acrobat
object[] saveAsParam = { @"d:\newFile.png", "com.adobe.acrobat.png", "", false, false };
Object objresult = jsObj.GetType().InvokeMember("SaveAs", BindingFlags.InvokeMethod, null, jsObj, saveAsParam);
Is there any way to control the dpi of the output file?