ZGImageUtils.h 382 B

12345678910111213141516
  1. //
  2. // ZGImageUtils.h
  3. // UUTUtils
  4. //
  5. // Created by zhuge on 2017/12/28.
  6. // Copyright © 2017年 zhuge. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface ZGImageUtils : NSObject
  10. +(void)resizePng:(NSString*)path toWidth:(int)width toHeight:(int)height;
  11. +(void)resizePng:(NSString*)path toWidth:(int)width toHeight:(int)height toPath:(NSString*) toPath;
  12. @end