gsapi_new_instance (gsapi)
Last changed: -86.64.17.52

.
Summary
TODO - a short description

C# Signature:

    private static extern int gsapi_new_instance(ref System.IntPtr pinstance, System.IntPtr caller_handle);
    [DllImport("gsdll32.dll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]

VB Signature:

Declare Function gsapi_new_instance Lib "gsapi.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

Creates a new instance of Ghostscript. This instance is passed to most other gsapi functions.

Tips & Tricks:

When working with the gsapi.dll, start with the gsapi_revision function, get that working. Then tackle this api next.

Sample Code:

   /* Keep this variable at a class scope. It will be used by almost all of the gsapi functions */
   System.IntPtr pinstance= IntPtr.Zero;

   private void button1_Click(object sender, EventArgs e)
   {
   /* Pass in the reference to pinstance, declared above. Assume "this" is a Windows Form, so it will have a Handle */

    int retVal = gsapi_new_instance(ref pinstance, this.Handle);
   }

Documentation