turner850 Posted October 30, 2012 Share Posted October 30, 2012 does scar divi have the capability of finding a bitmap on the screen, even if it may be rotated? i am trying to work around the runescape classic minimaps random rotation Quote Link to comment Share on other sites More sharing options...
LordJashin Posted October 30, 2012 Share Posted October 30, 2012 Yes Quote Link to comment Share on other sites More sharing options...
turner850 Posted October 30, 2012 Author Share Posted October 30, 2012 Humm, so I guess I could make a function to check every 1 degree? Is there like a tolerance? Quote Link to comment Share on other sites More sharing options...
LordJashin Posted October 30, 2012 Share Posted October 30, 2012 I don't think there is a tolerance for that one. Yes you could check every degree. 360 degrees in a circle so you could do a loop: [scar] program FindBitmapFullyRotated; var i: Integer; begin for i := 0 to 359 do if FindBitmapRotated(Bmp, x, y, i, 0, 0, 500, 500) then WriteLn('Found bitmap: Rotated at: ' + IntToStr(i) + ' degrees'); end; [/scar] Quote Link to comment Share on other sites More sharing options...
FHannes Posted October 30, 2012 Share Posted October 30, 2012 FindDeformedBitmapToleranceRotationIn might work Quote Link to comment Share on other sites More sharing options...
turner850 Posted October 31, 2012 Author Share Posted October 31, 2012 FindDeformedBitmapToleranceRotationIn might work Soo many parameters to figure out lol Quote Link to comment Share on other sites More sharing options...