Jump to content
turner850

find a rotated bitmap

Recommended Posts

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]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
  • Create New...