turner850 Posted November 3, 2012 Share Posted November 3, 2012 my code //By turner850 program RSCCaptchaSolver; var captchaBmp: TSCARBitmap; begin captchaBmp := GetClient.CaptureEx(128, 229, 384, 270); try SaveBitmap(captchaBmp, ScreenPath + 'captcha.bmp'); finally CaptchaBmp.Free; end; end. It says SaveBitmap is unknown... It's in the wiki.. How else can I do this? Quote Link to comment Share on other sites More sharing options...
LordJashin Posted November 3, 2012 Share Posted November 3, 2012 (edited) Try doing Bmp DOT then hit Ctrl+Spacebar to bringup the function list and scroll down it using your mouse to see everything it can do. Off the top of my head i think they are: Bmp.SaveToBmp Bmp.SaveToPng Bmp.SaveToJpeg Bmp of course being a TSCARBitmap Edited November 4, 2012 by LordJashin Quote Link to comment Share on other sites More sharing options...
Janilabo Posted November 3, 2012 Share Posted November 3, 2012 Yep, what LJ said: //By turner850 program RSCCaptchaSolver; var captchaBmp: TSCARBitmap; begin captchaBmp := GetClient.CaptureEx(128, 229, 384, 270); try CaptchaBmp.SaveToBmp(ScreenPath + 'captcha.bmp'); finally CaptchaBmp.Free; end; end. Wiki is not yet updated to TSCARBitmap. -Jani 1 Quote Link to comment Share on other sites More sharing options...