> I am coming from a .NET C# background, so I have some expectations > that might not apply to Cocoa development. In .NET, I can > incrementally compress an image like this: > A = new Image(data) > B = A.save(JPEGType, 0.5) > C = B.save(JPEGType, 0.5)
You *could* do that, but it's a bad idea. You'll get lousy quality from multiple passes of lossy compression, worse than just compressing to your desired result in one step. -- Scott Ribe scott_r...@killerbytes.com http://www.killerbytes.com/ (303) 722-0567 voice _______________________________________________ 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