我已经将UIImage子类化为创建UIImageExtra。我在UIImageExtra中有一个名为adjustForResolution的方法,用于调整UIImage的大小。但是我希望它返回一个UIImageExtra。我知道我需要转换它,但不完全确定如何。基本上,如果我调整UIImageExtra的大小,它就变成了UIImage。
这是我的UIImageExtra类:
#import "UIImageExtra.h"
#import <objc/runtime.h>
#import "UIApplication+AppDimensions.h"
#define kOriginData @"originData"
@implementation UIImageExtra
@synthesize originData;
+ (UIImageExtra *)imageNamed:(NSString *)imageName origin:(NSValue *)originData {
NSString *path = [[NSBundle mainBundle] pathForResource:imageName ofType:@""];
UIImageExtra *imageExtra = [[UIImageExtra alloc] initWithContentsOfFile:path];
imageExtra.originData = originData;
return imageExtra;
}
- (id)initWithContentsOfFile:(NSString *)path {
self = [super initWithContentsOfFile:path];
if (self) {
self = [self adjustForResolution];
}
NSLog(@"Image description: %@", [self description]);
return self;
}
- (id)adjustForResolution {
//All images are sized for ipad3 (2048 x 1536), so determine scale factor by ratio
CGSize screenSize = [UIApplication currentSize];
double scalefactor = screenSize.width/2048;
CGSize newSize = CGSizeMake(self.size.width*scalefactor, self.size.height*scalefactor);
UIImage *scaledImage = [self imageByScalingAndCroppingForSize:newSize];
return scaledImage;
}
- (id)imageByScalingAndCroppingForSize:(CGSize)targetSize
{
//returns resized image
}
@end
答案 0 :(得分:1)
是否更容易使UIImage的类扩展来处理调整大小然后创建一个从NSObject继承的新类来保存两个UIImage ..一个是原始的UIImage而另一个是调整大小的副本?
的UIImage + Extra.h:
#import <UIKit/UIKit.h>
@interface UIImage (Extra)
-(void)adjustForResolution;
-(void)imageByScalingAndCroppingForSize:(CGSize)targetSize;
@end
的UIImage + Extra.m:
#import "UIImage+Extra.h"
@implementation UIImage (Extra)
- (void)adjustForResolution {
//All images are sized for ipad3 (2048 x 1536), so determine scale factor by ratio
CGSize screenSize = [UIApplication currentSize];
double scalefactor = screenSize.width/2048;
CGSize newSize = CGSizeMake(self.size.width*scalefactor,self.size.height*scalefactor);
[self imageByScalingAndCroppingForSize:newSize];
}
- (id)imageByScalingAndCroppingForSize:(CGSize)targetSize
{
//instead of doing work to another object and returning it... Do it to self (UIimage)
}
@end
然后在您的自定义NSObject类上,您的init可以这样:
#import "UIImage+Extra"
...
//initialisation
if (self) {
originalImage = [UIImage imageNamed:@"theimage.png"];
resizedImage = [UIImage imageNamed:@"theimage.png"];
[resizedImage adjustForResolution];
}
只是打字,所以可能会有一些错别字,但我希望它有帮助
答案 1 :(得分:0)
我认为这就是你想要做的事情:
- (id)initWithContentsOfFile:(NSString *)path {
CGSize screenSize = [UIApplication currentSize];
double scalefactor = screenSize.width/2048;
if (scalefactor < 1) {
UIImage *img = [UIImage imageWithContentsOfFile:path];
CGSize newSize = CGSizeMake(img.size.width*scalefactor, img.size.height*scalefactor);
UIGraphicsBeginImageContext(newSize);
CGContextRef c = UIGraphicsGetCurrentContext();
[img drawInRect:(CGRect){CGPointZero, newSize}];
CGImageRef scaledImage = CGBitmapContextCreateImage(c);
UIGraphicsEndImageContext();
self = [super initWithCGImage:scaledImage];
CGImageRelease(scaledImage);
}else {
self = [super initWithContentsOfFile:path];
}
return self;
}
不使用contensOfFile而不是initWithCGImage的缺点是,生成的图像不可清除,因此迟早会出现内存问题。