English 中文(简体)
与从目标到目的地绘制位图相融合
原标题:Confusion with drawing a bitmap from target to destination

我在找一个200x200大小的位图, 从 x=100, y=100, 来源位图为 500x500。 这是我的代码 :

  var tempData:BitmapData 
  var tempBitmap:Bitmap ;
tempData = new BitmapData(500, 500,false, 0xffffff);

tempBitmap  = new Bitmap(tempData);

tempData.draw(original,null, null, null, new Rectangle(100, 100, 200, 200),true);

工作不错,但,

问题在于它从(0,0)到(100+200,100+200)提取到(100+200)。然而它却从(0,0)到(100,100)剪辑到(100,100)。因此,其大小大于200x200,无论另一部分是纯白的。

我需要从 100 100 100 至 300 300 300 开始绘图。 因此, 将此位图放入的电影剪图i 的大小必须为 200x200 。 它不应该显示任何纯白区域 。 但只有源位图的内容从 x= 100, y= 100 到 x= 300, y= 300

如果我的解释还不清楚,请随意发表评论。

感谢 谢谢

最佳回答

如果您从一个 BitmapData 例向另一个例复制一些像素, 请使用 < a href=" http://help. adobe.com/en_US/FlashPlatform/ reference/ actionscription/3/flash/display/BitmapData.html#copicPixel% 28%29" rel=“nofolpt"\\\ code> copicPixels () , 因为它是 much 更快的, 并且不会混淆工作。

我将强调有关的论点:

  1. sourceBitmapData:BitmapData - the BitmapData instance to get the pixels from.
  2. sourceRect:Rectangle - a Rectangle that will specify what portion of the source you want.
  3. destPoint:Point - a Point representing where on the destination the source will be drawn.

所以,你想做的是:

// Define BitmapData.
var sourceBitmapData:BitmapData = new BitmapData(500, 500, false, 0xFF0000);
var destinationBitmapData:BitmapData = new BitmapData(200, 200, false, 0xFFFFFF);

// Add viewable Bitmap representation.
var view:Bitmap = new Bitmap(destinationBitmapData);
addChild(view);


// Define where pixels will be taken from off the source.
var clipRectangle:Rectangle = new Rectangle(100, 100, 200, 200);

// Define where the pixels will be drawn at on the destination.
var destPoint:Point = new Point(); // Didn t catch where you wanted this to be drawn at - simply provide your own x, y here.

// Copy some pixels from sourceBitmapData across to destinationBitmapData.
destinationBitmapData.copyPixels(sourceBitmapData, clipRectangle, destPoint);

有什么不清楚的就告诉我

问题回答

暂无回答




相关问题
Disable button tooltip in AS3

I want to disable the tooltip on certain buttons. The tooltip manager seems to be an all or nothing solution. Is it possible to disable the tooltip for just one or two buttons?

Multiple Remote call made simultenously

I was making multiple remote calls and they are done sequentially and when I am getting a result event back it s triggering calls to all the methods with ResultEvent as an argument . I am supposed to ...

Attaching a property to an event in Flex/AS3

I have a parameter that needs to be passed along with an event. After unsuccessful attempts to place it on the type by extending the class, I ve been advised in another SO question to write a custom ...

Clearing RSL in Cache

I have built a flex application which has a "main" project and it is assosciated with a few RSL s which are loaded and cached once i run my "main" application. The problem i am facing is that the ...

What s a good way of deserializing data into mock objects?

I m writing a mock backend service for my flex application. Because I will likely need to add/edit/modify the mock data over time, I d prefer not to generate the data in code like this: var mockData =...

AS3 try/catch out of memory

I m loading a few huge images on my flex/as3 app, but I can t manage to catch the error when the flash player runs out of memory. Here is the what I was thinking might work (I use ???? because i dont ...

热门标签