Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

first user will see a video(mirror like) n then they will need to draw a rectangle by clicking n dragging(Mouse Down,Move,and Up) The mouse down and up position is stored in variables. So i want them to see the area they cut out( because il be a applying a certain filter on it later)

Problem: it cuts but ONLY starts from the TOP LEFT, i dont have problem with the width and height, just the x, y position. I need it to start cutting from the mouse down position. I dont know where is the source of the problem, any ideas?

(ps: sorry if my explanation is not good, im new here! heee :D)

code snippet:

private function addFilter(prevX:Number, prevY:Number,width:Number , height:Number):void

{

    bmpData = new BitmapData(800, 600);
    rect = new Rectangle(previousX, previousY, width, height);
    point = new Point(previousX, previousY);

    bmpData2 = new BitmapData(rect.width, rect.height);
    bmpData2.copyPixels(bmpData, rect, point);

    var bmp:Bitmap = new Bitmap(bmpData2);

    //this part  below seem to have no effect, but when i traced the values they are correct
    bmp.x = rect.x;     
    bmp.y = rect.y;     
    addChild(bmp);
...}  

on enter frame
{....
    bmpData.draw(video, new Matrix( -1, 0, 0, 1, bmpData.width, 0));
 .....
}
share|improve this question
I think you need to use translate of the Matrix when drawing video onto bitmap. – Lukasz 'Severiaan' Grela Jan 2 at 7:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.