Jump to content

BmpSearch - Search for Bitmap within Bitmap - Assembly Version


Beege
 Share

Recommended Posts

I don't use this code. Is 3:30 am and am still up finishing a project of mine.
For what I see there is not much error checking. I'd add

...
Func __BmpSearch(ByRef $hSource, ByRef $hFind, $fExistsOnly = 0, $iMax = 5000)
    Local $iTime = TimerInit()
    Local $tSizeSource = _WinAPI_GetBitmapDimension($hSource)
    If @error Then Return SetError(@error, @extended, "Script Line: " & @ScriptLineNumber)
    Local $tSizeFind = _WinAPI_GetBitmapDimension($hFind)
    If @error Then Return SetError(@error, @extended, "Script Line: " & @ScriptLineNumber)
...

just to start debugging. Good luck.

Follow the link to my code contribution ( and other things too ).
FAQ - Please Read Before Posting.
autoit_scripter_blue_userbar.png

Link to comment
Share on other sites

3 hours ago, InnI said:

@Viter Try to use modified version

It works Thank you  but only finds it if the element you are looking for is really simple, for example a white square. _ImageSearch is too slow but finds the same image

 

Link to comment
Share on other sites

59 minutes ago, Viter said:

only finds it if the element you are looking for is really simple

Pixel colors must match byte by byte. Function does not use color variation.

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

×
×
  • Create New...