// // NSImage+BWAdditions.h // BWToolkit // // Created by Brandon Walkin (www.brandonwalkin.com) // All code is provided under the New BSD license. // #import @interface NSImage (BWAdditions) // Draw a solid color over an image - taking into account alpha. Useful for coloring template images. - (NSImage *)tintedImageWithColor:(NSColor *)tint; // Rotate an image 90 degrees clockwise or counterclockwise - (NSImage *)rotateImage90DegreesClockwise:(BOOL)clockwise; @end