2018-10-10 19:58:21 +02:00
|
|
|
/* HBImageUtilities.h $
|
2017-08-31 10:04:28 +02:00
|
|
|
|
|
|
|
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>
|
2021-06-10 18:18:48 +02:00
|
|
|
#import <CoreGraphics/CoreGraphics.h>
|
2017-08-31 10:04:28 +02:00
|
|
|
|
2019-08-12 10:19:00 +02:00
|
|
|
CF_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
CGImageRef __nullable CreateScaledCGImageFromCGImage(CGImageRef image, CGFloat thumbnailHeight);
|
|
|
|
CGImageRef __nullable CGImageRotated(CGImageRef imgRef, CGFloat angle, BOOL flipped) CF_RETURNS_RETAINED;
|
2017-08-31 10:04:28 +02:00
|
|
|
CGColorSpaceRef copyColorSpace(int primaries, int transfer, int matrix);
|
2019-08-12 10:19:00 +02:00
|
|
|
|
|
|
|
CF_ASSUME_NONNULL_END
|
|
|
|
|