думаю лучше так:

Код AS3:
var shape: Shape = new Shape();
var g: Graphics = shape.graphics;
g.beginFill(0xFF0000);
g.drawRect(0, 0, 10, 10);
g.endFill();
var bitmapData: BitmapData = new BitmapData(1, 1);
var mtrx:Matrix = new Matrix(1, 0, 0, 1, -5, -5);
bitmapData.draw(shape,mtrx);
trace( bitmapData.getPixel(0, 0).toString(16) );