Blame view

HHVDoctorSDK/HHSDKVideo.framework/Headers/SDKCameraImageModel.h 598 Bytes
shmily authored
1 2 3 4 5 6 7 8 9 10 11
//
//  HHCameraImage.h
//  camera_Demo
//
//  Created by shmily on 15/10/20.
//  Copyright © 2015年 shmilyAshen. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
wangguolei authored
12
@interface SDKCameraImageModel : NSObject
shmily authored
13 14 15 16 17 18

/// 全尺寸图像
@property(nonatomic,strong)NSString *fullPath;

@property(nonatomic,strong)NSString *scalledPath;
wangguolei authored
19 20 21 22 23 24
@property(nonatomic, copy) NSString *videoPath;

@property(nonatomic,assign) bool isVideo;


+ (instancetype)cameraImageWithFullPath:(NSString *)fullPath scalledPath:(NSString *)scalledPath isVideo:(bool) isVideo;
shmily authored
25 26 27 28 29

- (bool)isMp4;


@end