微信朋友圈一张图片处理方法

// withMaxlength 为设定的固定值  ,图片实际宽和高谁最大,谁的展示长度就为这个固定值,然后另一个按照她的缩放比例
+(CGSize)YLNineboxPhotoViewOfrealSize:(CGSize)realsize withMaxlength:(CGFloat)Maxlength
{
    CGSize size;
    CGFloat Proportion;//缩放比例
    CGFloat showH;//展示高度
    CGFloat showW;//展示宽度
    // 判断宽和高 谁大
    
    // 宽大于高时以宽缩放的比例为
    if (realsize.height>realsize.width) {
        
        Proportion = Maxlength/realsize.height; ;
        
        showW = Proportion*realsize.width;
        
        showH = Maxlength;
        
        size = CGSizeMake(showW, showH);
    }else
    {
        
        Proportion = Maxlength/realsize.width; ;
        
        showH = Proportion*realsize.height;
        
        showW = Maxlength;
        
        size = CGSizeMake(showW, showH);
    }

    
    return size;
}

你可能感兴趣的:(微信朋友圈一张图片处理方法)