1

我使用 Apple 的示例创建了拖放应用程序:https ://developer.apple.com/library/mac/samplecode/SourceView/Introduction/Intro.html

我加载拖动文件的实际图像。

例如,当我将此在此处输入图像描述图像文件拖到我的NSOutlineView中时,我看到它以这种方式调整大小:

在此处输入图像描述

我按原样使用 Apple 的ImageAndTextCell类用于自定义 NSTextFieldCell。

如何调整此图像的大小以按比例适合单元格矩形?

4

1 回答 1

0

完美运行。

@implementation NSImage (ProportionalScaling)

- (NSImage*)imageByScalingProportionallyToSize:(NSSize)targetSize
{
  NSImage* sourceImage = self;
  NSImage* newImage = nil;

  if ([sourceImage isValid])
  {
    NSSize imageSize = [sourceImage size];
    float width  = imageSize.width;
    float height = imageSize.height;

    float targetWidth  = targetSize.width;
    float targetHeight = targetSize.height;

    float scaleFactor  = 0.0;
    float scaledWidth  = targetWidth;
    float scaledHeight = targetHeight;

    NSPoint thumbnailPoint = NSZeroPoint;

    if ( NSEqualSizes( imageSize, targetSize ) == NO )
    {

      float widthFactor  = targetWidth / width;
      float heightFactor = targetHeight / height;

      if ( widthFactor < heightFactor )
        scaleFactor = widthFactor;
      else
        scaleFactor = heightFactor;

      scaledWidth  = width  * scaleFactor;
      scaledHeight = height * scaleFactor;

      if ( widthFactor < heightFactor )
        thumbnailPoint.y = (targetHeight - scaledHeight) * 0.5;

      else if ( widthFactor > heightFactor )
        thumbnailPoint.x = (targetWidth - scaledWidth) * 0.5;
    }

    newImage = [[NSImage alloc] initWithSize:targetSize];

    [newImage lockFocus];

      NSRect thumbnailRect;
      thumbnailRect.origin = thumbnailPoint;
      thumbnailRect.size.width = scaledWidth;
      thumbnailRect.size.height = scaledHeight;

      [sourceImage drawInRect: thumbnailRect
                     fromRect: NSZeroRect
                    operation: NSCompositeSourceOver
                     fraction: 1.0];

    [newImage unlockFocus];

  }

  return [newImage autorelease];
}

@end
于 2015-04-30T08:44:32.447 回答