简体   繁体   English

在Cocoa AppKit中平滑地拉伸PNG

[英]Stretch PNGs smoothly in Cocoa AppKit

In questions like this one it shows how to use UIKit's 在类似这样的问题, 一个是展示了如何使用UIKit中的

-(UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCapHeight

to stretch a PNG easily, eg when inserting text in an iChat like bubble. 轻松拉伸PNG,例如在像气泡这样的iChat中插入文本时。 I would like to do the same on regular AppKit/Cocoa/desktop app using CoreGraphics or some NSImage related API but couldn't find an equivalent method. 我想在使用CoreGraphics或一些NSImage相关API的常规AppKit / Cocoa /桌面应用程序上执行相同操作但无法找到等效方法。 Does anybody know how to do this in AppKit? 有人知道如何在AppKit中执行此操作吗?

Here is a function i whipped up that takes 1 image, and stretches just the middle... 这是一个我掀起的功能,需要1个图像,并且只是中间的...

在此输入图像描述

-(NSImage *)image:(NSImage *)image leftCapWidth:(float)leftWidth middleWidth:(float)middleWidth rightCapWidth:(float)rightWidth {

    // Calculate the new images dimensions
    float imageWidth = leftWidth + middleWidth + rightWidth;
    float imageHeight = image.size.height;

    // Generate the left image
    NSRect rectLeft = NSMakeRect(0, 0, leftWidth, imageHeight);
    NSImage *imageLeft = [[NSImage alloc] initWithSize:rectLeft.size];
    if (imageLeft.size.width > 0) {
        [imageLeft lockFocus];
        [image drawInRect:rectLeft fromRect:rectLeft operation:NSCompositeCopy fraction:1.0];
        [imageLeft unlockFocus];
    }

    // Generate the middle image
    NSRect rectMiddle = NSMakeRect(0, 0, image.size.width - (rightWidth + leftWidth), imageHeight);
    NSImage *imageMiddle = [[NSImage alloc] initWithSize:rectMiddle.size];
    if (imageMiddle.size.width > 0) {
        [imageMiddle lockFocus];
        [image drawInRect:rectMiddle fromRect:NSMakeRect(leftWidth, 0, rectMiddle.size.width, imageHeight) operation:NSCompositeCopy fraction:1.0];
        [imageMiddle unlockFocus];
    }

    // Generate the right image
    NSRect rectRight = NSMakeRect(0, 0, rightWidth, imageHeight);
    NSImage *imageRight = [[NSImage alloc] initWithSize:rectRight.size];
    if (imageRight.size.width > 0) {
        [imageRight lockFocus];
        [image drawInRect:rectRight fromRect:NSMakeRect(image.size.width - rightWidth, 0, rightWidth, imageHeight) operation:NSCompositeCopy fraction:1.0];
        [imageRight unlockFocus];
    }

    // Combine the images
    NSImage *newImage = [[[NSImage alloc] initWithSize:NSMakeSize(imageWidth,  imageHeight)] autorelease];
    if (newImage.size.width > 0) {
        [newImage lockFocus];
        NSDrawThreePartImage(NSMakeRect(0, 0, imageWidth, imageHeight), imageLeft, imageMiddle, imageRight, NO, NSCompositeSourceOver, 1, NO); 
        [newImage unlockFocus];
    }

    // Release the images and return the new image
    [imageLeft release];
    [imageMiddle release];
    [imageRight release];

    return newImage;
}

Just use -[NSImage drawInRect:fromRect:operation:fraction:], and pass NSZeroRect as the fromRect; 只需使用 - [NSImage drawInRect:fromRect:operation:fraction:],并将NSZeroRect作为fromRect传递; parameter. 参数。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM