2011-09-09 60 views
2

我有一个使用的旧代码,转换为石英2D

Rect r;  
GetPortBounds(some_bitmap,&r);  
PixMapHandle somehandle = GetGWorldPixMap(some_bitmap); 
if(LockPixels(somehandle)){ 
    TPixel *data = (TPixel *) GetPixBaseAddr(somehandle); 
    long row_bytes = GetPixRowBytes(somehandle); 
    // doing something 
    UnlockPixels(somehandle); 
} 

谁能帮我在石英2D替换代码

回答

1

要修改一个位图与石英您可以初始化CGContextRef与图像和CGContextDraw...例程绘制到该上下文。
(我写了下面的示例代码的的NSView子类。这有点低效的。如果你使用的代码,分开就可以在高德保持周围的东西。)

- (void)drawRect:(NSRect)dirtyRect 
{ 
    //Load an image ... 
    NSImage* image = [[NSImage alloc] initWithContentsOfFile:@"/Library/Desktop Pictures/Grass Blades.jpg"]; 
    CGImageRef testImage = [[[image representations] objectAtIndex:0] CGImage]; 
    [image release]; 
    CGDataProviderRef dataProvider = CGImageGetDataProvider(testImage); 
    //... and retrieve its pixel data 
    CFDataRef imageData = CGDataProviderCopyData(dataProvider); 
    void* pixels = (void*)CFDataGetBytePtr(imageData); 
    CGColorSpaceRef colorspace = CGColorSpaceCreateWithName(kCGColorSpaceGenericRGB); 
    //Init a quartz context that uses the pixel data memory as buffer 
    CGContextRef drawContext = CGBitmapContextCreate(pixels, CGImageGetWidth(testImage), CGImageGetHeight(testImage), CGImageGetBitsPerComponent(testImage), CGImageGetBytesPerRow(testImage), colorspace, CGImageGetBitmapInfo(testImage)); 
    CGContextSetRGBFillColor(drawContext, 0.8, 0.8, 0.8, 1.0); 
    //Do something with the newly created context 
    CGContextFillRect(drawContext, CGRectMake(20.0, 20.0, 200.0, 200.0));  
    CGColorSpaceRelease(colorspace); 
    CGImageRef finalImage = CGBitmapContextCreateImage(drawContext); 
    //Draw the modified image to the screen 
    CGContextDrawImage([[NSGraphicsContext currentContext] graphicsPort], dirtyRect, finalImage); 
    CFRelease(imageData); 
    CGImageRelease(finalImage); 
    CGContextRelease(drawContext); 
} 
+0

实际的代码是有点复杂领先,有没有什么办法可以在不使用不推荐使用的函数的情况下获取pixmaphandle? – Peter

+0

实际上前面的代码有点复杂,有什么方法可以在不使用不推荐使用的函数的情况下获取pixmaphandle吗? – Peter

+0

我不知道有一种方法来检索未被弃用的pixmaphandle。上面的代码应该可以工作,并且是Quartz,因此也是未来的证明。 –