我正在做一个项目,我有大量NSMatrix
NSImageCells
。我需要在它们的单元格中旋转特定的单个Images
(甚至只是旋转单元格本身,因为它看起来是一样的)。每个单元格和图像都是一个 40x40 的正方形,因此不必调整任何大小,因为我将坚持 90 度增量。问题是因为我使用的是NSImageCells
而不是NSImageViews
,所以我无法使用setFrameCenterRotation:
轻松旋转图像。有谁知道我该如何做到这一点?
对于仍在寻找一种方法的人来说,因为我是在 ASOC 中编写的,所以我最终使用了以下代码:
on rotateImage_byAngle_(startingImage, angle)
set rotated to current application's NSImage's alloc()'s initWithSize_({startingImage's |size|()'s height(), startingImage's |size|()'s |width|()})
rotated's lockFocus()
set transform to current application's NSAffineTransform's transform()
transform's translateXBy_yBy_((rotated's |size|()'s |width|()) / 2, (rotated's |size|()'s height()) / 2)
transform's rotateByDegrees_(angle)
transform's translateXBy_yBy_(-(rotated's |size|()'s height()) / 2, -(rotated's |size|()'s |width|()) / 2)
transform's concat()
startingImage's drawAtPoint_fromRect_operation_fraction_({0, 0}, {{0, 0}, {0, 0}}, current application's NSCompositeCopy, 1)
rotated's unlockFocus()
return rotated
end rotateImage_byAngle_