NSImageView上的NSCollectionViewItem选择,使用CALayer与图像边界

时间:2017-01-10 14:09:11

标签: objective-c calayer nscollectionview nsimageview nscollectionviewitem

我有一个带有NSImageView的NSCollectionViewItem。

我想在图像周围留下阴影。一旦选中,我希望图像有阴影和边框。目前,NSImageView获取图像周围的边框。

如何在选择中实现阴影+边框?看起来图像周围的边框设置正确,但边框设置在图像视图周围。

[self.templateImageView setWantsLayer:YES];
self.templateImageView.layer.borderWidth = 0.0;
self.templateImageView.layer.borderColor = borderColor.CGColor;
self.templateImageView.layer.masksToBounds = YES;

[self.templateImageView.layer setShadowColor: [NSColor blackColor].CGColor];
[self.templateImageView.layer setShadowOpacity:0.8];
[self.templateImageView.layer setShadowRadius:5.0];

2 个答案:

答案 0 :(得分:2)

首先,您的图片必须具有透明背景。 然后,您可以围绕图像内容绘制边框:

func drawOutlie(image:UIImage, color:UIColor) -> UIImage
{
    let newImageKoef:CGFloat = 1.08

    let outlinedImageRect = CGRect(x: 0.0, y: 0.0, width: image.size.width * newImageKoef, height: image.size.height * newImageKoef)

    let imageRect = CGRect(x: image.size.width * (newImageKoef - 1) * 0.5, y: image.size.height * (newImageKoef - 1) * 0.5, width: image.size.width, height: image.size.height)

    UIGraphicsBeginImageContextWithOptions(outlinedImageRect.size, false, newImageKoef)

    image.draw(in: outlinedImageRect)

    let context = UIGraphicsGetCurrentContext()
    context!.setBlendMode(CGBlendMode.sourceIn)

    context!.setFillColor(color.cgColor)
    context!.fill(outlinedImageRect)
    image.draw(in: imageRect)

    let newImage = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()

    return newImage!

}

您可以更改newImageKoef

来更改大纲尺寸

答案基于haawa回答并更新为swift 3.0。

答案 1 :(得分:0)

感谢您的回答。它确实有助于找到我想要的东西。这是一个解决方案:

- (NSImage*)borderAroundImage:(NSImage*)image
{
NSSize size = NSMakeSize([image size].width, [image size].height);

NSImage* im = image;
NSBitmapImageRep* rep = [[NSBitmapImageRep alloc]
                         initWithBitmapDataPlanes:NULL
                         pixelsWide:size.width
                         pixelsHigh:size.height
                         bitsPerSample:8
                         samplesPerPixel:4
                         hasAlpha:YES
                         isPlanar:NO
                         colorSpaceName:NSCalibratedRGBColorSpace
                         bytesPerRow:0
                         bitsPerPixel:0];

[im addRepresentation:rep];

[im lockFocus];

CGContextRef ctx = [[NSGraphicsContext currentContext] graphicsPort];

CGContextSetStrokeColorWithColor(ctx, [NSColor colorWithDeviceRed:0.200 green:0.529 blue:0.957 alpha:1.000].CGColor);
CGContextSetLineWidth(ctx, 25.0);
CGContextStrokeRect(ctx, CGRectInset(CGRectMake(0, 0, [image size].width, [image size].height), 0, 0));

[im unlockFocus];

return im;
}