Hello. I'm trying to find a way to get the binary data (not the handle) of the bitmap created by _ScreenCapture_Capture into a variable. Example: I'd like to make $data equal what this code makes it equal, but without reading from disk: #include <ScreenCapture.au3> _ScreenCapture_Capture("C:\output.bmp") $fh = FileOpen("C:\output.bmp", 16) $data = FileRead("C:\output.bmp")