0

私はこのコードを持っていますself.UIImageオブジェクトはどこですか:

CGFloat scale = [sideSize floatValue] / MIN(self.size.width, self.size.height);
 UIGraphicsBeginImageContextWithOptions(CGSizeMake(self.size.width*scale,self.size.height*scale), NO, 0.0);
[self drawInRect:CGRectMake(0, 0, self.size.width*scale, self.size.height*scale)];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
SBLog(@"%f, %f", newImage.size.width, newImage.size.height);
return newImage;

しかし、関数UIImagePNGRepresentationを使用してインターネット経由で転送するバイトデータを取得すると、スケール後に別のサイズのイメージのバイトがあります。

このコードの後で、使用[newImage CGImage]すると同じサイズになります。

だから、UIImagePNGRepresentationCGImageを使って画像からデータバイトを取得すると思います。

では、同一の UIImage と CGImage を行うにはどうすればよいでしょうか?

4

1 に答える 1

0
//This method will resize the original image to desired width 
//maintaining the Aspect Ratio
-(UIImage*)getResizedToWidth:(CGFloat)width
{
    UIImage *resultImage = nil;

    CGFloat ar = self.size.width/self.size.height;
    CGFloat ht = width/ar;

    CGSize newSize = CGSizeMake(width, ht);

    UIGraphicsBeginImageContext(newSize);
    CGContextRef ctx = UIGraphicsGetCurrentContext();

    CGContextScaleCTM(ctx, 1, -1);
    CGContextTranslateCTM(ctx, 0, -newSize.height);

    CGRect imageRect = CGRectMake(0, 0, newSize.width, newSize.height);

    CGContextDrawImage(ctx, imageRect, self.CGImage);

    resultImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return resultImage;
}

//This method will resize the original image to desired height 
//maintaining the Aspect Ratio
-(UIImage*)getResizedToHeight:(CGFloat)height
{
    UIImage *resultImage = nil;

    CGFloat ar = self.size.width/self.size.height;
    CGFloat wd = height*ar;

    CGSize newSize = CGSizeMake(wd, height);

    UIGraphicsBeginImageContext(newSize);
    CGContextRef ctx = UIGraphicsGetCurrentContext();

    CGContextScaleCTM(ctx, 1, -1);
    CGContextTranslateCTM(ctx, 0, -newSize.height);

    CGRect imageRect = CGRectMake(0, 0, newSize.width, newSize.height);

    CGContextDrawImage(ctx, imageRect, self.CGImage);

    resultImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return resultImage;
}

//This method will take in the maxSizeLength and automatically
// detect the maximum side in image and reduce it to given
// maxSideLength maintaining the Aspect Ratio
-(UIImage*)getResizedMaxSideToLength:(CGFloat)maxSideLength
{
    UIImage *src = [UIImage imageWithCGImage:self.CGImage];

    if (src.size.width > maxSideLength)
    {
        src = [src getResizedToWidth:maxSideLength];
    }
    else
    if (src.size.height >= maxSideLength )
    {
        src = [src getResizedToHeight:maxSideLength];
    }

    return src;
}

CGImage が必要な場合は、以下のように任意の UIImage の CGImage プロパティにアクセスして取得します。

CGImage *myCGImage = myUIImage.CGImage;
于 2013-08-14T12:15:44.483 に答える