如何在Flash中爲導入的圖像製作透明背景,因爲現在我導入它並且圖像周圍有白色框。如何在flash中導入帶有透明背景的圖片
添加圖像碼上演
var imageBD = (Math.floor(Math.random()*2))? new Trees() : new Rocks;
var bitmap:Bitmap = new Bitmap();
var BD:BitmapData = new BitmapData(imageBD.width, imageBD.height);
BD.draw(imageBD);
bitmap.bitmapData = BD;
bitmap.width = mRadius * 2 * mToPx;
bitmap.height = mRadius * 2 * mToPx;
bitmap.x = pxStartX;
bitmap.y = pxStartY;
this.addChild(bitmap);
obstacleImages.push(bitmap)
因爲我是海鷗,所以我現在給你一個鏈接到的圖像,我不能發表圖片:HTTP://prntscr.com/pugdl
是你的照片保存什麼格式 –
GIF,我嘗試過爲png我 – keyboardlogi