1
A
回答
6
您可以使用BitmapData.copyPixels()
這一點。
//create a rectangle
var cropRect:Rectangle = new Rectangle(left, top, width, height);
//create new bitmap data - because BitmapData's width/height are read only
var bmpData:BitmapData = new BitmapData(cropRect.width, cropRect.height, true);
bmpData.copyPixels(image.bitmapData, cropRect, new Point(0, 0));
//assign the cropped bitmap data to the image.
image.bitmapData = bmpData;
copyPixels()
method
public function copyPixels(sourceBitmapData:BitmapData, sourceRect:Rectangle,
destPoint:Point, alphaBitmapData:BitmapData = null, alphaPoint:Point = null,
mergeAlpha:Boolean = false):void
提供一個快速例程沒有拉伸,旋轉或色彩效果的圖像之間的像素處理。此方法將源圖像的矩形區域複製到目標BitmapData對象的目標點處大小相同的矩形區域。
相關問題
- 1. 選擇圖像的一部分(裁剪)
- 2. 通過原生圖像裁剪圖像
- 3. 裁剪圖像和底部
- 4. 在圖像視圖中通過繪製圓來裁剪圖像
- 5. 在裁剪時選擇圖像的一部分
- 6. CSS - 裁剪圖像 - 頂部和底部
- 7. 從頂部裁剪圖像
- 8. 裁剪圖像
- 9. 裁剪圖像
- 10. 裁剪圖像
- 11. Fabric.js:裁剪後的選擇框圖像
- 12. 圖像裁剪AVCaptureSession圖像
- 13. 通過選擇區域在iPhone中裁剪圖像
- 14. 使用javascript來裁剪圖像
- 15. 如何使用drawImage()來裁剪圖像?
- 16. 裁剪圖像的特定部分
- 17. 如何裁剪圖像的一部分
- 18. 使用Java裁剪圖像
- 19. 使用openCV裁剪圖像
- 20. 使用css裁剪圖像
- 21. 使用php裁剪圖像
- 22. 使用ImageScience裁剪圖像
- 23. 裁剪圖像使用jQuery
- 24. 使用c裁剪圖像#
- 25. 使用CGImageCreateWithImageInRect裁剪圖像
- 26. 使用CGImageRef裁剪圖像
- 27. 通過裁剪獲取新圖像
- 28. Caffe - 通過剪裁增強圖像
- 29. 如何通過使用swift選擇圖像選擇器來鏡像圖像?
- 30. C# - 檢測臉部和裁剪圖像
Thx Amargosh,我現在就試試看看。 – satish 2009-12-15 15:38:24