erkz Posted June 14, 2012 Posted June 14, 2012 I made some changes to the ImageSearch library. You can pass an hBitmap for the image your searching for and the image you want to search in. I also fixed a memory leak i saw.The original post is hereYou can download it here.DownloadThanks,Erkdonate always welcome. yutijang 1
Zedna Posted June 14, 2012 Posted June 14, 2012 (edited) Not tested yet but from your description it's GREAT!! EDIT: Some simple example (using hBitmap) would be good... Edited June 14, 2012 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
erkz Posted June 14, 2012 Author Posted June 14, 2012 If you grabbed the version before this message is posted you'll need to get it again there was an issue with the .au3 file handling tolerance. I'll look at adding a hBitmap example. My main reason for the modification was so I could use it in .net with embedded resources.
zpanderson Posted June 15, 2012 Posted June 15, 2012 In _ImageSearchArea don't you need to change: If $result[0] = "0" then return 0 to If Not IsArray($result) Or $result[0] = "0" then return 0
erkz Posted June 15, 2012 Author Posted June 15, 2012 (edited) It shouldn't have to change. if $result[0]="0" then return 0 Not sure why it's using that instead of the below since $result is just used as a string and not an array. if $result="0" then return 0 The array isn't created till line 57. $array = StringSplit($result[0],"|") Let me know if your seeing something i'm not. Edited June 15, 2012 by erkz
12am Posted August 17, 2012 Posted August 17, 2012 How would you go about referencing this .dll into a vb.net project? I would appreciate any guidance that you offer. Thanks!
hextler Posted October 21, 2012 Posted October 21, 2012 Not able to pass "*Transblack " to $findImage because its a ptr, could you implent that? I realy need transparency support for the Hbitmap in hbitmap search
huwei Posted March 27, 2014 Posted March 27, 2014 You can download it here.Download Hello everyone! The link of updated version is invalid now.Could anyone provide a new link,much appreciated!
BrewManNH Posted March 27, 2014 Posted March 27, 2014 I just clicked that link and was able to download it without a problem. Although I'm not overly thrilled that the link goes through ad.fly, it does work. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
rakma Posted April 9, 2014 Posted April 9, 2014 I made some changes to the ImageSearch library. You can pass an hBitmap for the image your searching for and the image you want to search in. I also fixed a memory leak i saw. The original post is here'?do=embed' frameborder='0' data-embedContent>> You can download it here.Download Thanks, Erkdonate always welcome. can you do a example in VB.NET ?
camkadev Posted February 3, 2015 Posted February 3, 2015 (edited) working awesome! is it possible to open source of DLL file? Edited February 3, 2015 by camkadev
MrGray Posted February 4, 2015 Posted February 4, 2015 working awesome! is it possible to open source of DLL file? To my knowledge you'll need to reverse it using tools like ollydbg. Once code has gone through a compiler and spit back out into binary from the machine language, the most you can get it back to is the machine language. Correct me if I am wrong, anyone. That way I'll know better next time.
knucklesCZ Posted February 14, 2015 Posted February 14, 2015 Thanks a lot for the updated version! I finally don't get rc-1073741819 problem which I got with the old imagesearch which was working on windows xp but is not working on win7 and returns that strange error. This works but with one reproach: you have to edit the script and fix the 4 errors of missing space before ByRef
Moderators Melba23 Posted February 14, 2015 Moderators Posted February 14, 2015 knucklesCZ, you have to edit the script and fix the 4 errors of missing space beforeYou should be able to solve that for yourself by downloading the beta Au3Check from here. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
WiValdiBB Posted February 13, 2016 Posted February 13, 2016 (edited) Hi, Great, just tested, works fine. Do You know if it will work with 64 bits ? I have no 64 bits PC here but I need to know, someone tested ? Thanks Edited February 13, 2016 by WiValdiBB
Iamaldrin08 Posted February 21, 2016 Posted February 21, 2016 How can I use this to work with a background window? Imagesearch another window like browsers.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now