Search found 2 matches
- 2014-05-29T11:35:37-07:00
- Forum: Users
- Topic: How to generate an image pixel by pixel
- Replies: 5
- Views: 7472
Re: How to generate an image pixel by pixel
Thanks for the reply, works like a charm!
- 2014-05-29T11:00:45-07:00
- Forum: Users
- Topic: How to generate an image pixel by pixel
- Replies: 5
- Views: 7472
How to generate an image pixel by pixel
Hello, I have a bidimensional array with RGB values (ej: "0,0,0") and I'm trying to generate an image drawing it pixel by pixel. It works fine but it takes too long time. The bash script is something like this: [...] convert -size ${size_x}x${size_y} xc:none accppt.png for ((y=1;y<${size_y};y++)) do ...