On 22/07/2009, at 2:42 AM, Nick Zitzmann wrote:

One thought: Are you using the -CGImage method of NSBitmapImageRep anywhere? If so, then you absolutely must not deallocate the NSBitmapImageRep while the CGImageRef is live, because the CGImageRef acquired via -CGImage is still using the NSBitmapImageRep's data.


Hm, that's interesting. I'm using Garbage Collection, so does this mean that I can't do this and get away with it?:

@implementation NSImage (Additions)
- (CGImageRef)CGImage;
{
return [[[NSBitmapImageRep alloc] initWithData:[self TIFFRepresentation]] CGImage];
}
@end

Could explain a few things...

--
Rob Keniger



_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to