1

我一直在研究 NSView,因此我想我会尝试使用屏幕保护程序。我已经能够在 NSView 中显示和图像,但我无法修改此示例代码以在 ScreenSaverView 中显示简单的图片。

http://www.mactech.com/articles/mactech/Vol.20/20.06/ScreenSaversInCocoa/

顺便说一句,适用于 Snow Leopard 的很棒的教程。

我想简单地显示一个图像,我需要看起来像这样的东西......

我究竟做错了什么?

//
//  try_screensaverView.m
//  try screensaver
//

#import "try_screensaverView.h"

@implementation try_screensaverView

- (id)initWithFrame:(NSRect)frame isPreview:(BOOL)isPreview
{
    self = [super initWithFrame:frame isPreview:isPreview];
    if (self) {
        [self setAnimationTimeInterval:1]; //refresh once per sec
    }
    return self;
}

- (void)startAnimation
{
    [super startAnimation];

    NSString *path = [[NSBundle mainBundle] pathForResource:@"leaf" ofType:@"JPG" inDirectory:@""];
    image = [[NSImage alloc] initWithContentsOfFile:path];
}

- (void)stopAnimation
{
    [super stopAnimation];
}

- (void)drawRect:(NSRect)rect
{
    [super drawRect:rect];
}

- (void)animateOneFrame
{
    //////////////////////////////////////////////////////////
    //load image and display  This does not scale the image

    NSRect bounds = [self bounds];
    NSSize newSize;
    newSize.width = bounds.size.width;
    newSize.height = bounds.size.height;
    [image setSize:newSize];
    NSRect imageRect;
    imageRect.origin = NSZeroPoint;
    imageRect.size = [image size];
    NSRect drawingRect = imageRect;
    [image drawInRect:drawingRect fromRect:imageRect operation:NSCompositeSourceOver fraction:1];
}

- (BOOL)hasConfigureSheet
{
    return NO;
}

- (NSWindow*)configureSheet
{
    return nil;
}

@end
4

3 回答 3

3
NSRect bounds = [self bounds];
NSSize newSize;
newSize.width = bounds.size.width;
newSize.height = bounds.size.height;
[image setSize:newSize];

我不知道你为什么要这样做。

NSRect imageRect;
imageRect.origin = NSZeroPoint;
imageRect.size = [image size];

阿卡[self bounds].size

NSRect drawingRect = imageRect;
[image drawInRect:drawingRect fromRect:imageRect operation:NSCompositeSourceOver fraction:1];

即,[image drawInRect:[self bounds] fromRect:[self bounds] operation:NSCompositeSourceOver fraction:1]

如果您尝试以自然大小绘制图像,则没有理由向其发送setSize:消息。剪掉整个第一部分,其余部分应该可以正常工作。

如果您试图填满屏幕(这将是缩放,这将与评论相矛盾),请将 设置drawingRect[self bounds],而不是imageRect。这完全按照它的内容:

image,
    draw into (the bounds of the view),
    from (the image's entire area).

[image
    drawInRect:[self bounds]
      fromRect:imageRect
              ⋮
];

自然大小固定位置绘制和全屏绘制都不是有效的屏幕保护程序。后者是不可挽回的;您可以通过为屏幕周围的图像设置动画来使前者有用。

于 2010-03-17T07:38:37.717 回答
3

我有一个类似的问题,所以我会发布我的解决方案。OP 试图通过 NSBundle 的 mainBundle 加载图像内容。相反,您会更幸运地获取屏幕保护程序的包并从那里加载文件,如下所示:

NSBundle *saverBundle = [NSBundle bundleForClass:[self class]];
NSImage *image = [[NSImage alloc] initWithContentsOfFile:[saverBundle pathForResource:@"image" ofType:@"png"]];
于 2012-05-13T08:22:06.930 回答
0

由于您正在绘图animateOneFrame,请尝试删除您覆盖的drawRect.

于 2012-05-07T06:39:07.860 回答