diff options
author | Damiano Galassi <[email protected]> | 2017-08-31 10:04:28 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-08-31 10:04:28 +0200 |
commit | ae2627cedefb29d6f0743175613a2e5597465be8 (patch) | |
tree | 07994cc7d25455fb182ed4d72d4717f83e49bfa8 /macosx/HBImageUtilities.h | |
parent | 43dc0cdb9d18c43771ca8f9ed52b19550c2c1b55 (diff) |
MacGui: move the color space code out of HBCore.
Diffstat (limited to 'macosx/HBImageUtilities.h')
-rw-r--r-- | macosx/HBImageUtilities.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/macosx/HBImageUtilities.h b/macosx/HBImageUtilities.h new file mode 100644 index 000000000..67f8d00e4 --- /dev/null +++ b/macosx/HBImageUtilities.h @@ -0,0 +1,11 @@ +/* HBColorUtilities.h $ + + This file is part of the HandBrake source code. + Homepage: <http://handbrake.fr/>. + It may be used under the terms of the GNU General Public License. */ + +#import <Foundation/Foundation.h> + +CGImageRef CGImageRotated(CGImageRef imgRef, CGFloat angle, BOOL flipped) CF_RETURNS_RETAINED; +CGColorSpaceRef copyColorSpace(int primaries, int transfer, int matrix); +CGImageRef jnw_decompressedImage(CGImageRef CGImage); |