我一直在研究NSView,因此我想我会尝试屏幕保护程序。我已经能够在NSView中显示和图像,但我无法修改此示例代码以在ScreenSaverView中显示简单的图片。
http://www.mactech.com/articles/mactech/Vol.20/20.06/ScreenSaversInCocoa/
与Snow Leopard合作的BTW精彩教程。
我认为只是显示一个图像,我需要看起来像这样的东西......
我做错了什么?
//
// 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
答案 0 :(得分:2)
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];
A.k.a。 [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
⋮
];
自然尺寸固定位置绘制和全屏绘制都不是有效的屏幕保护程序。后者是不可挽回的;你可以通过在屏幕周围设置动画来使前者变得有用。
答案 1 :(得分:2)
我有类似的问题,所以我会发布我的解决方案。 OP试图通过NSBundle的mainBundle加载图像内容。相反,你可以更好地获取屏幕保护程序的包并从那里加载文件,如下所示:
NSBundle *saverBundle = [NSBundle bundleForClass:[self class]];
NSImage *image = [[NSImage alloc] initWithContentsOfFile:[saverBundle pathForResource:@"image" ofType:@"png"]];
答案 2 :(得分:0)
由于您正在animateOneFrame
进行绘图,请尝试删除被覆盖的drawRect
。