#include <Clipboard.au3>
#Include <ScreenCapture.au3>
_ClipBoard_Open(0) ; open clipboard is associated with the current task
$hBitmap = _ClipBoard_GetData(2) ; $CF_BITMAP
;_ScreenCapture_SetJPGQuality(75) ; set the value between 0-100
_ScreenCapture_SaveImage(@DesktopDir& '\vote.jpg', $hBitmap)
_ClipBoard_Close()