We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpPrograms › Ascii video effect with shapes instead of letters
Page Index Toggle Pages: 1
Ascii video effect with shapes instead of letters (Read 378 times)
Ascii video effect with shapes instead of letters
Oct 23rd, 2008, 12:02am
 
Hi there,

I am wondering about the best way to make an ASCII video type effect without using letters but shapes. The shapes I want to use are not simple shapes like a circle or rect but rather quite complex multicolored shapes, like the ones seen here: http://patternfoundry.com/detail.html?node=72

I tried using simply images but drawing so many images per frame brought processing to a halt. So I am thinking now the easiest would be to make a simplified version using quads or make a font out of them but  that would mean losing the colors.

Any tips very welcome!

Thanks!
Tommi
Re: Ascii video effect with shapes instead of lett
Reply #1 - Oct 23rd, 2008, 10:38pm
 
I am not sure to fully understand. Do you mean each base pattern is a vector shape (drawn with beginShape and all)

If so, if you don't need to scale them, you can just draw them once at the need scale, all in one image, then load this image in a PImage and blit (using copy()) them on screen at the wanted coordinate. A bit like old video games did with bitmap fonts.
Page Index Toggle Pages: 1