BNBFullImageFormat
Objective-C
@interface BNBFullImageFormat : NSObject
- (nonnull instancetype)initWithWidth:(int32_t)width
height:(int32_t)height
orientation:(BNBRotation)orientation;
+ (nonnull instancetype)fullImageFormatWithWidth:(int32_t)width
height:(int32_t)height
orientation:(BNBRotation)orientation;
@property (nonatomic, readonly) int32_t width;
@property (nonatomic, readonly) int32_t height;
@property (nonatomic, readonly) BNBRotation orientation;
@end
Swift
class BNBFullImageFormat : NSObject
Undocumented
-
Undocumented
Declaration
Objective-C
- (nonnull instancetype)initWithWidth:(int32_t)width height:(int32_t)height orientation:(BNBRotation)orientation;
Swift
init(width: Int32, height: Int32, orientation: BNBRotation)
-
Undocumented
Declaration
Objective-C
+ (nonnull instancetype)fullImageFormatWithWidth:(int32_t)width height:(int32_t)height orientation:(BNBRotation)orientation;
-
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) int32_t width
Swift
var width: Int32 { get }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) int32_t height
Swift
var height: Int32 { get }
-
Undocumented
Declaration
Objective-C
@property (nonatomic, readonly) BNBRotation orientation
Swift
var orientation: BNBRotation { get }