Author | Post | |
Chaosdreamer |
I have no idea how to get started with the programming challenges that involve images. I have done all the other challenges that just involve text (no. 6 will be done by the end of the day), but where to start with the image challanges, I just don't know. I have done all the challenges in VB6 and searched for some information on the Internet, but have had no luck finding anything. Please could someone guide me towards where to start with the image challenges. Many Thanks |
|
16.09.2004 11:25:18 |
|
|
Inferno |
Hey Chaosdreamer You first need to download the image, I always did that in PHP. To alter an image in VB6, just create a PictureBox Load the image into it, and you can use it's methods to get the pixel information, like: PictureBox1.Point(x,y) returns a the rgb values in decimal notation. PictureBox1.Pset(x,y),RGB(r,g,b) sets a specific pixel Just practice it first with offline pictures Hope this will help |
|
16.09.2004 11:42:24 |
|