我是靠谱客的博主 眯眯眼鸭子,这篇文章主要介绍图片压缩后长度和宽度 及像素坐标,现在分享给大家,希望可以做个参考。

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

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)   










本文转自 卓行天下  51CTO博客,原文链接:http://blog.51cto.com/9951038/1745643,如需转载请自行联系原作者

最后

以上就是眯眯眼鸭子最近收集整理的关于图片压缩后长度和宽度 及像素坐标的全部内容,更多相关图片压缩后长度和宽度内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(180)

评论列表共有 0 条评论

立即
投稿
返回
顶部