1

NSAffineTransform を使用して NSImage を回転/反映していますが、大きな画像を使用するとエラーが発生します:

NSImage: Insufficient memory to allocate pixel data buffer of 4496342739800064 bytes

ここで変換している画像は、4110px x 2735 で 6,998,487 バイトです。NSAffineTransform は、この変換を行うためにこれほど多くのメモリが本当に必要ですか、それともどこかで間違っていますか? 私のローテーションコードは次のとおりです。

-(NSImage *)rotateLeft:(NSImage *)img{
    NSImage *existingImage = img;
    NSSize existingSize;


    existingSize.width = existingImage.size.width;
    existingSize.height = existingImage.size.height;

    NSSize newSize = NSMakeSize(existingSize.height, existingSize.width);
    NSImage *rotatedImage = [[NSImage alloc] initWithSize:newSize];

    [rotatedImage lockFocus];


    NSAffineTransform *rotateTF = [NSAffineTransform transform];
    NSPoint centerPoint = NSMakePoint(newSize.width / 2, newSize.height / 2);

    [rotateTF translateXBy: centerPoint.x yBy: centerPoint.y];
    [rotateTF rotateByDegrees: 90];
    [rotateTF translateXBy: -centerPoint.y yBy: -centerPoint.x];
    [rotateTF concat];

    NSRect r1 = NSMakeRect(0, 0, newSize.height, newSize.width);
    [existingImage drawAtPoint:NSMakePoint(0,0)
        fromRect:r1
       operation:NSCompositeCopy fraction:1.0];

    [rotatedImage unlockFocus];

    return rotatedImage;
}

プロジェクトで ARC を使用しています。前もって感謝します、ベン

4

0 に答える 0