我有一个简单的Obj C程序,目前它允许您加载图像,绘制图像,理论上可以让您缩放和旋转。我正在使用NSAffineTranslations。我想要图像被锁定在左上角(与左下角的PS/PDF标准相反),所以我使用isFlipped,并调用[afTrans scaleXBy:1.0 yBy:-1.0];在NSView中绘制图像
问题是,由于某种原因,第一次调用drawRect后,转换不会发生。
当我加载图像时,它出现,看起来正确。如果我改变窗口的大小(调用drawRect),图像会画出来,但是会颠倒并颠倒过来。这意味着转换不会生效。我没有看到第二次通过任何数据的任何差异。
这里是代码的精简版:
- (void)drawRect:(NSRect)rect
{
// Drawing code here.
// NSLog(@"window type: %d", [[self window] backingType]);
NSAffineTransform *afTrans = [[NSAffineTransform alloc] init];
NSGraphicsContext *context = [NSGraphicsContext currentContext];
NSSize sz;
NSRect windowFrame = [[self window] frame];
NSRect cv =[[[self window] contentView] frame];
float deltaX, deltaY;
NSSize superSize = [[self superview] frame].size;
float height, width, sHeight, sWidth;
NSRect imageRect;
sz = [ image size];
imageRect.size = sz;
imageRect.origin = NSZeroPoint;
height = sz.height ;
width = sz.width ;
// sHeight and sWidth are the hieght and with of the super-view. ie,
// the size of the whole window view including the space for the
// scroll bars, etc, but not including the panel or the borders,
sHeight = superSize.height;
sWidth = superSize.width;
[context saveGraphicsState];
deltaX = 0;
deltaY = 0;
deltaY += height; // account for flipping
[afTrans translateXBy:deltaX yBy:deltaY];
[afTrans scaleXBy:1.0 yBy:-1.0];
[afTrans concat];
NSRect drawingRect = imageRect;
NSRect frame = imageRect;
[self setFrame:frame];
[image drawInRect:drawingRect
fromRect:imageRect
operation:NSCompositeSourceOver
fraction:1];
[afTrans release];
[context restoreGraphicsState];
}
埃塔:这里的一些代码,可能是相关的。
-(void)setImage:(NSImage *)newImage
{
[newImage retain];
[image release];
rotation = 0;
zoom = 1.0;
image = newImage;
NSSize imageSize = [newImage size];
NSRect tFrame = [self frame];
tFrame = [[self window] frame];
tFrame.size.width = MAX(tFrame.size.width, imageSize.width);
tFrame.size.height = MAX(tFrame.size.height, imageSize.height);
[self setFrame:tFrame];
[self setNeedsDisplay:YES];
}
[蟋蟀]我已经有风滚草徽章......如果这是一个晦涩难懂的问题,我觉得自己没有想出来更好 - ) – 2009-08-12 17:32:44