4

我有一个简单的 Obj C 程序,目前,它可以让你加载图像,绘制它,理论上应该让你缩放和旋转。我正在使用 NSAffineTranslations。

我希望图像被锁定在左上角(与左下角的 PS/PDF 标准相反),所以我使用 isFlipped,并调用 [afTrans scaleXBy:1.0 yBy:-1.0];

问题是由于某种原因,在第一次调用我的 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];
}

ETA:这里还有一些可能相关的代码。

-(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];
}
4

2 回答 2

23

我不确定你到底想要实现什么,但如果你只想在 NSView 中绘制图像并将其保留在左上角,你可以在你的 NSView 子类中做一些更简单的事情:

- (BOOL)isFlipped
{
    return YES;
}

- (void)setImage:(NSImage *)newImage
{
    [newImage retain];
    [image release];
    image = newImage;

    [image setFlipped:YES];
    [self setNeedsDisplay:YES];
}

- (void)drawRect:(NSRect)rect
{
    [image drawAtPoint:NSZeroPoint fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1];

    // Or stretch image to fill view
    //[image drawInRect:[self bounds] fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1];
}

通过摆脱[self setFrame:...];drawRect 和 setImage 方法中的调用,我还能够使用您的代码获得类似的结果。

于 2009-08-17T04:47:18.573 回答
3

假设您没有删除更改内容的代码,请注意您是否在其他地方绘制图像。工具栏项、表格等很可能会改变图像的 -flipped 属性,导致其绘制不正确。

在你的图像绘制线周围试试这个:

BOOL wasFlipped = [image isFlipped];
[image setFlipped:[self isFlipped]];
[image drawInRect:drawingRect
             fromRect:imageRect
            operation:NSCompositeSourceOver
             fraction:1];
[image setFlipped:wasFlipped];

看看是否有帮助。如果确实如此,请在代码中的其他地方查找更改图像的翻转属性而不是将其放回的内容。

于 2009-08-14T18:19:52.257 回答