iOS 分享功能之图片压缩(微信好友-朋友圈)

附上自己项目中的参考代码:

NSLog(@"分享给微信好友");

WXMediaMessage *message=[WXMediaMessagemessage];
message.title=title;//标题
message.description=content;//描述内容

//1.拼接网络解析到的图片的全路径(图片基础路径+你解析到的图片名字)=cover_PIC这个字符串
NSString *cover_PIC     = [PICbaseRoutestringByAppendingFormat:@"%@",imagName];
//2.要把这个字符串转成image类型准备压缩
UIImage *image_pic=[UIImageimageWithData:[NSDatadataWithContentsOfURL:[NSURLURLWithString:cover_PIC]]];
NSLog(@"image_pic=======%@",image_pic);
//3.定义一个cgsize类型,(也就是你要把图片压缩到你自己指定的大小)
CGSize size = {300,300};
//4.进行压缩,压缩出一个新的图片(也就是小的新的缩略图)
UIImage *new_imagePic=  [selfimageByScalingAndCroppingForSize:sizewithSourceImage:image_pic];
//5.添加你要分享的缩略图,要传入一个image的对象,必须压缩(放入缩略图)
[message setThumbImage:new_imagePic];
WXWebpageObject *webpageObject=[WXWebpageObjectobject];
webpageObject.webpageUrl=shareURL;
message.mediaObject=webpageObject;
SendMessageToWXReq *req=[[SendMessageToWXReqalloc]init];
req.bText=NO;
req.message=message;
req.scene=WXSceneSession;
[WXApisendReq:req];

NSLog(@"分享到朋友圈");
        WXMediaMessage *message=[WXMediaMessagemessage];
        message.title=title;//标题
        message.description=content;//描述内容
        //1.拼接网络解析到的图片的全路径(图片基础路径+你解析到的图片名字)=cover_PIC这个字符串
        NSString *cover_PIC     = [PICbaseRoutestringByAppendingFormat:@"%@",imagName];
        //2.要把这个字符串转成image类型准备压缩
        UIImage *image_pic=[UIImageimageWithData:[NSDatadataWithContentsOfURL:[NSURLURLWithString:cover_PIC]]];
        NSLog(@"image_pic=======%@",image_pic);
        //3.定义一个cgsize类型,(也就是你要把图片压缩到你自己指定的大小)
        CGSize size = {300,300};
        //4.进行压缩,压缩出一个新的图片(也就是小的新的缩略图)
        UIImage *new_imagePic=  [selfimageByScalingAndCroppingForSize:sizewithSourceImage:image_pic];
        //5.添加你要分享的缩略图,要传入一个image的对象,必须压缩(放入缩略图)
        [message setThumbImage:new_imagePic];
        
        WXWebpageObject *webpageObject=[WXWebpageObjectobject];
        webpageObject.webpageUrl=shareURL;
        message.mediaObject=webpageObject;
        SendMessageToWXReq *req=[[SendMessageToWXReqalloc]init];
        req.bText=NO;
        req.message=message;
        req.scene=WXSceneTimeline;
        [WXApisendReq:req];


/**
 * 图片压缩到指定大小的方法
 * @param targetSize 目标图片的大小
 * @param sourceImage 源图片
 * @return 目标图片
 */
- (UIImage*)imageByScalingAndCroppingForSize:(CGSize)targetSize withSourceImage:(UIImage *)sourceImage
{
    UIImage *newImage =nil;
    CGSize imageSize = sourceImage.size;
    CGFloat width = imageSize.width;
    CGFloat height = imageSize.height;
    CGFloat targetWidth = targetSize.width;
    CGFloat targetHeight = targetSize.height;
    CGFloat scaleFactor =0.0;
    CGFloat scaledWidth = targetWidth;
    CGFloat scaledHeight = targetHeight;
    CGPoint thumbnailPoint =CGPointMake(0.0,0.0);
    if (CGSizeEqualToSize(imageSize, targetSize) ==NO)
    {
        CGFloat widthFactor = targetWidth / width;
        CGFloat heightFactor = targetHeight / height;
        if (widthFactor > heightFactor)
            scaleFactor = widthFactor; // scale to fit height
        else
            scaleFactor = heightFactor; // scale to fit width
        scaledWidth= width * scaleFactor;
        scaledHeight = height * scaleFactor;
        // center the image
        if (widthFactor > heightFactor)
        {
            thumbnailPoint.y = (targetHeight - scaledHeight) *0.5;
        }
        elseif (widthFactor < heightFactor)
        {
            thumbnailPoint.x = (targetWidth - scaledWidth) *0.5;
        }
    }
    UIGraphicsBeginImageContext(targetSize);// this will crop
    CGRect thumbnailRect =CGRectZero;
    thumbnailRect.origin = thumbnailPoint;
    thumbnailRect.size.width= scaledWidth;
    thumbnailRect.size.height = scaledHeight;
    
    [sourceImage drawInRect:thumbnailRect];
    newImage = UIGraphicsGetImageFromCurrentImageContext();
    if(newImage ==nil)
        NSLog(@"could not scale image");
    
    //pop the context to get back to the default
    UIGraphicsEndImageContext();
    
    return newImage;
}








评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

我先来一碗

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值