码迷,mamicode.com
首页 > 其他好文 > 详细

as3.0 制作图片的大体流程

时间:2019-07-23 15:08:03      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:span   auto   height   port   class   spl   col   pre   bit   

import flash.display.Bitmap;
import flash.display.BitmapData;


var bm:Bitmap=new Bitmap()//建一个装图片的容器
var bmd:BitmapData=new BitmapData(dragMc.width,dragMc.height,true,0xFFF999)//设置图片的长宽等等。
bmd.draw(dragMc)// 把图片画出来
bm=new Bitmap(bmd,"auto",true)//把图片放进容器
this.addChild(bm);//把容器放到舞台,只有放在舞台才能够显示

 

as3.0 制作图片的大体流程

标签:span   auto   height   port   class   spl   col   pre   bit   

原文地址:https://www.cnblogs.com/zqiang0803/p/11231424.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!