Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

GdiplusStartup (gdiplus)
 
.
Summary
The GdiplusStartup function initializes Windows GDI+. Call GdiplusStartup before making any other GDI+ calls. Call GdiplusShutdown when you have finished using GDI+.

C# Signature:

[DllImport("gdiplus.dll", CharSet=CharSet.Unicode, ExactSpelling=true)]
static extern int GdiplusStartup(out IntPtr token, ref StartupInput input,
out  StartupOutput output);

VB Signature:

Declare Shared Function GdiplusStartup Lib "gdiplus.dll" (ByRef token As IntPtr, _
ByRef input As StartupInput, ByRef output As StartupOutput) As Integer

VB .Net Signature:

<DllImport("gdiplus.dll", EntryPoint:="GdiplusStartup", _
         SetLastError:=True, CharSet:=CharSet.Unicode, _
         ExactSpelling:=True, CallingConvention:=CallingConvention.StdCall)> _
Public Shared Function GdiplusStartup(ByRef token As IntPtr, _
                       ByRef input As GdipStartupInput, _
                       ByRef output As GdipStartupOutput) _
                       As Integer
End Function

User-Defined Types:

[StructLayout(LayoutKind.Sequential)]
struct StartupOutput
{
    public IntPtr hook;
    public IntPtr unhook;
}

[StructLayout(LayoutKind.Sequential)]
struct StartupInput
{
    public int GdiplusVersion = 1;
    public IntPtr DebugEventCallback;
    public bool SuppressBackgroundThread = false;
    public bool SuppressExternalCodecs = false;
}

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

None as System.Drawing will call this API automatically when first API in gdiplus.dll is called by managed code.

Documentation

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions