Jump to content

Need help with GDI


Recommended Posts

I want a 100000x100000 bitmap but this code throw an error if the height is bigger than 5368

#include <GDIPlus.au3>
_GDIPlus_Startup()
Global $iWidth = 100000, $iHeight = 5368 ,$iStride = 0, $pScan0 = 0, $iPixelFormat = $GDIP_PXF32ARGB
Global $hBitmap = DllCall($__g_hGDIPDll, "uint", "GdipCreateBitmapFromScan0", "int", $iWidth, "int", $iHeight, "int", $iStride, "int", $iPixelFormat, "ptr", $pScan0, "int*", 0)[6]
_GDIPlus_ImageGetGraphicsContext($hBitmap)
MsgBox(0,"",@error)

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...