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

概述

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

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,如需转载请自行联系原作者

最后

以上就是眯眯眼鸭子为你收集整理的图片压缩后长度和宽度 及像素坐标的全部内容,希望文章能够帮你解决图片压缩后长度和宽度 及像素坐标所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部