在 NSImage 下绘制阴影

发布于 2024-08-29 06:36:32 字数 548 浏览 10 评论 0原文

目前,我正在自定义 NSCell 中绘制 NSImage,如下所示:

- (void)drawInteriorWithFrame:(NSRect)theCellFrame inView:(NSView *)theControlView {
    // roundedCornerImage creates a new NSImage with rounded corners, rather than clipping.
    [[anIcon roundedCornerImage:5] drawInRect:anIconBox fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0];
}

很简单,我想知道如何在其下方绘制图像。在 iPhone 上,我将使用以下方法来完成此操作:CGContextSetShadow (currentContext, CGSizeMake(1, -1), 2);就在绘制 UIImage 之前,但我不熟悉如何在 Mac 上执行此操作。

任何指点都会很棒。

Currently I'm drawing an NSImage in a custom NSCell like so:

- (void)drawInteriorWithFrame:(NSRect)theCellFrame inView:(NSView *)theControlView {
    // roundedCornerImage creates a new NSImage with rounded corners, rather than clipping.
    [[anIcon roundedCornerImage:5] drawInRect:anIconBox fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0];
}

Very simply I'm wondering how to draw an image underneath it. On the iPhone, I would do this by using: CGContextSetShadow (currentContext, CGSizeMake(1, -1), 2); just before drawing the UIImage, but I'm unfamiliar with how to do it on the Mac.

Any pointers would be great.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

残月升风 2024-09-05 06:36:32

查看 NSShadow 类。 CGContextSetShadow 也存在于 Mac 上,但获取上下文本身稍微困难一些。

Look into the NSShadow class. CGContextSetShadow also exists on the Mac, but it's slightly more difficult to get your hands on the context itself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文