Цитата:
Сообщение от mry
copyPixels
позволяет скопировать кусок битмапы
|
Спасибо помогло, сделал так:

Код AS3:
bmp=new BitmapData(clip.width, clip.height, true, 0);
bmp.draw(clip);
var rect:Rectangle = new Rectangle(0, 0, clip.width/2, clip.height);
var pt:Point = new Point(0, 0);
var bmp1:BitmapData=new BitmapData(clip.width/2, clip.height, true, 0);
bmp1.copyPixels(bmp, rect,pt);
Params._page2_bitmap=bmp1;
var rect2:Rectangle = new Rectangle(clip.width/2, 0, clip.width/2, clip.height);
var bmp2:BitmapData=new BitmapData(clip.width/2, clip.height, true, 0);
bmp2.copyPixels(bmp, rect2,pt);
Params._page3_bitmap=bmp2;
Спасибо всем за помощь