//
|
// UIImage+YTH.h
|
// PapayaPlayerDaqo
|
//
|
// Created by 味口 on 15-6-3.
|
// Copyright (c) 2015年 wgj. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
|
@interface UIImage (YTH)
|
|
+ (UIImage *)resizedImageWithName:(NSString *)imageName;
|
|
+ (UIImage *)resizedImageWithName:(NSString *)imageName left:(CGFloat)left top:(CGFloat)top;
|
|
/**
|
* 制造图片
|
*/
|
+ (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size;
|
|
|
/**
|
* 对图片尺寸进行压缩
|
*/
|
- (UIImage*)imageScaledToSize:(CGSize)newSize;
|
|
/**
|
slider圆钮缩放
|
*/
|
- (UIImage *)imageByScalingToSize:(CGSize)targetSize;
|
|
@end
|