Link to home
Start Free TrialLog in
Avatar of Octalys
Octalys

asked on

I have a picturebox not very big 30x30 pixels, there's an image loaded on it. I want to get the rawdata from it in a textbox, perhaps using base64 to make it readable. How do I do this?

I have a picturebox not very big 30x30 pixels, there's an image loaded on it. I want to get the rawdata from it in a textbox, perhaps using base64 to make it readable. How do I do this?

I want to do this because I have a picturebox, it randomly loads a picture every X secs. But there are like max 50 different pictures, I want to know which one get loaded.

So what I wanted to do is, loop the program tru the 50 pictures, and save every picture in plaintext using base64 then compare it in the code to find out which one got loaded.

Perhaps I can solve it by saving all 50 pictures on disk then do some comparison, but somehow I like it to solve it completly in the code.

Well any code snippets to do this would be helpfull. Thanks
ASKER CERTIFIED SOLUTION
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Octalys
Octalys

ASKER

Yes thank you, the code works great!