under right and iphone resize uiimage

iphone - and - uibutton right image



UIImage redize(ProporciĆ³n de escala) (5)

Posible duplicado:
Cambiar el tamaño de UIImage con relación de aspecto?

El siguiente fragmento de código está cambiando el tamaño de la imagen a la perfección, pero el problema es que arruina la relación de aspecto (lo que resulta en una imagen sesgada) Cualquier punteros?

// Change image resolution (auto-resize to fit) + (UIImage *)scaleImage:(UIImage*)image toResolution:(int)resolution { CGImageRef imgRef = [image CGImage]; CGFloat width = CGImageGetWidth(imgRef); CGFloat height = CGImageGetHeight(imgRef); CGRect bounds = CGRectMake(0, 0, width, height); //if already at the minimum resolution, return the orginal image, otherwise scale if (width <= resolution && height <= resolution) { return image; } else { CGFloat ratio = width/height; if (ratio > 1) { bounds.size.width = resolution; bounds.size.height = bounds.size.width / ratio; } else { bounds.size.height = resolution; bounds.size.width = bounds.size.height * ratio; } } UIGraphicsBeginImageContext(bounds.size); [image drawInRect:CGRectMake(0.0, 0.0, bounds.size.width, bounds.size.height)]; UIImage *imageCopy = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return imageCopy; }


Eso está bien, no es un gran problema. cosa es que tienes que encontrar el ancho y la altura proporcional

al igual que si el tamaño es 2048.0 x 1360.0, el cual debe cambiarse a una resolución de 320 x 480, entonces el tamaño de la imagen resultante debería ser 722.0 x 480.0

here is the formulae to do that . if w,h is original and x,y are resulting image. w/h=x/y => x=(w/h)*y; submitting w=2048,h=1360,y=480 => x=722.0 ( here width>height. if height>width then consider x to be 320 and calculate y)

U puede enviar en esta página web. ARC

Confundido? Bien, aquí está la categoría para UIImage que hará la cosa por ti.

@interface UIImage (UIImageFunctions) - (UIImage *) scaleToSize: (CGSize)size; - (UIImage *) scaleProportionalToSize: (CGSize)size; @end @implementation UIImage (UIImageFunctions) - (UIImage *) scaleToSize: (CGSize)size { // Scalling selected image to targeted size CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); CGContextRef context = CGBitmapContextCreate(NULL, size.width, size.height, 8, 0, colorSpace, kCGImageAlphaPremultipliedLast); CGContextClearRect(context, CGRectMake(0, 0, size.width, size.height)); if(self.imageOrientation == UIImageOrientationRight) { CGContextRotateCTM(context, -M_PI_2); CGContextTranslateCTM(context, -size.height, 0.0f); CGContextDrawImage(context, CGRectMake(0, 0, size.height, size.width), self.CGImage); } else CGContextDrawImage(context, CGRectMake(0, 0, size.width, size.height), self.CGImage); CGImageRef scaledImage=CGBitmapContextCreateImage(context); CGColorSpaceRelease(colorSpace); CGContextRelease(context); UIImage *image = [UIImage imageWithCGImage: scaledImage]; CGImageRelease(scaledImage); return image; } - (UIImage *) scaleProportionalToSize: (CGSize)size1 { if(self.size.width>self.size.height) { NSLog(@"LandScape"); size1=CGSizeMake((self.size.width/self.size.height)*size1.height,size1.height); } else { NSLog(@"Potrait"); size1=CGSizeMake(size1.width,(self.size.height/self.size.width)*size1.width); } return [self scaleToSize:size1]; } @end

- la siguiente es una llamada apropiada para hacer esto si img es la instancia de UIImage.

img = [img scaleProportionalToSize: CGSizeMake (320, 480)];


Este cambio funcionó para mí:

// The size returned by CGImageGetWidth(imgRef) & CGImageGetHeight(imgRef) is incorrect as it doesn''t respect the image orientation! // CGImageRef imgRef = [image CGImage]; // CGFloat width = CGImageGetWidth(imgRef); // CGFloat height = CGImageGetHeight(imgRef); // // This returns the actual width and height of the photo (and hence solves the problem CGFloat width = image.size.width; CGFloat height = image.size.height; CGRect bounds = CGRectMake(0, 0, width, height);


Esto corrige los cálculos para escalar al tamaño máximo tanto en ancho como en alto en lugar de solo uno, dependiendo del ancho y la altura del original.

- (UIImage *) scaleProportionalToSize: (CGSize)size { float widthRatio = size.width/self.size.width; float heightRatio = size.height/self.size.height; if(widthRatio > heightRatio) { size=CGSizeMake(self.size.width*heightRatio,self.size.height*heightRatio); } else { size=CGSizeMake(self.size.width*widthRatio,self.size.height*widthRatio); } return [self scaleToSize:size]; }


Intenta hacer que el tamaño de los bounds entero.

#include <math.h> .... if (ratio > 1) { bounds.size.width = resolution; bounds.size.height = round(bounds.size.width / ratio); } else { bounds.size.height = resolution; bounds.size.width = round(bounds.size.height * ratio); }


Utilicé esta única línea de código para crear un nuevo UIImage que se escala. Establezca los parámetros de escala y orientación para lograr lo que desea. La primera línea de código simplemente toma la imagen.

// grab the original image UIImage *originalImage = [UIImage imageNamed:@"myImage.png"]; // scaling set to 2.0 makes the image 1/2 the size. UIImage *scaledImage = [UIImage imageWithCGImage:[originalImage CGImage] scale:(originalImage.scale * 2.0) orientation:(originalImage.imageOrientation)];