首页 > 其他 > 详细

图片压缩后长度和宽度 及像素坐标

时间:2016-02-28 01:04:07      阅读:322      评论:0      收藏:0      [点我收藏+]

图片压缩后长度和宽度 及像素坐标

CGFloat    scaleFloat = 0.6;
+ (UIImage *) scaleImage: (UIImage *)image scaleFactor:(float)scaleFloat
{
    CGSize size = CGSizeMake(image.size.width * scaleBy, image.size.height * scaleBy);

    UIGraphicsBeginImageContext(size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGAffineTransform transform = CGAffineTransformIdentity;

    transform = CGAffineTransformScale(transform, scaleBy, scaleBy);
    CGContextConcatCTM(context, transform);

    // Draw the image into the transformed context and return the image
    [image drawAtPoint:CGPointMake(0.0f, 0.0f)];
    UIImage *newimg = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

    return newimg;  
}

然后imgData = UIImageJPEGRepresentation(image, 0.6f)
imgData UIImageJPEGRepresentation(image, scaleFloat)   



本文出自 “ZhuoKing” 博客,转载请与作者联系!

图片压缩后长度和宽度 及像素坐标

原文:http://9951038.blog.51cto.com/9941038/1745643

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!