码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-02-28 01:07:14      阅读:212      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!