It’s simple to blur bitmap objects out to the point that they disappear. However there are a few nuances that are hard to remember when, if you’re like me, you...
This is a very simple experiment for a project I’m working on. I need to display a series of Bitmap images stacked on top of each other but with varying...
Applying a ColorTransform() to BitmapData is probably the easiest and most predictable of the BitmapData methods. But it still deserves an Explorer.
view source...
Suppose you wanted to track the position of the cursor in a TextArea. You might need to do this if you wanted to provide some contextual information to the user....
If you need to add some random noise to your BitmapData then you have two options: myBitmapData.perlinNoise which is sort of smooth gradiations of patterns. Sort of looks like a...
The cornerstone to BitmapData is the draw method. That is one of the main ways to get pixels into your Bitmaps. Below is an explorer to allow you to play...
I’m revisiting my Actionscript Bible and running through the chapter on Drawing Bitmap Graphics Programmatically just to shore up some gaps in my knowledge. You can expect to see a...