我正在开发一个编辑图像的在线工具,但我遇到了问题。将位图的特定区域复制到另一个位图。什么问题,谁能帮帮我?
function enablepaste(event:MouseEvent)
{
tempShape.graphics.clear();
mv_temp.graphics.clear();
var rect = new Rectangle(tempstartX,tempstartY,endX,endY);
var pnt =new Point(tempstartX,tempstartY);
tempBMP_data=new BitmapData(rect.width,rect.height,false,0);
tempBMP_data.copyPixels(stageBMP.bitmapData,rect,pnt , null, null, true );
//tempBMP_data is destinagtion bitmap data object
tempBMP= new Bitmap(tempBMP_data);
mv_temp.addChild(tempBMP);
Paste_button.visible=true;
}
我面临的问题是它只显示矩形而不复制图形。