I have created something for my personal use, and wanted to share it with anyone interested.
The basic idea goes like this:
1. command line application written in C# can generate dynamic image given list of pixels - each pixel and its location (x,y) on the canvas plus its color as RGB value.
2. classic ASP code call the command line application using the WScript.Shell component and passing it list of pixels via text file.
Attached is full sample code which generates image on the fly, in this case two squares - one green and one red within the green square. the output of this code can be seen here:
http://www.amitbb.co.il/General_Stu...draw_sample.asp
Explaining everything that is involved is hard, best way to learn this is trial and error - use the given code, change it and see what happens.
Also, improving the command line application so that it would also write text in desired location is rather simple, I inted to do that sometime in the future.
as usual, any comments are welcome.
