iOS medium ratio compression screenshot code

Source: Internet
Author: User

A picture according to the required size of the compression and amplification of the ratio, and then intercept the need for the size of the part, do not know to say clearly no, anyway that means it!

+ (UIImage *) Compressimagewith: (UIImage *) Image width: (float) Width height: (float) Height
{
float imagewidth = image.size.width;
float imageheight = image.size.height;

float Widthscale = imagewidth/width;
float Heightscale = imageheight/height;

Create a bitmap context
and set it to the context that is currently being used
Uigraphicsbeginimagecontext (Cgsizemake (width, height));

if (Widthscale > Heightscale) {
[Image drawinrect:cgrectmake (0, 0, Imagewidth/heightscale, height)];
}
else {
[Image drawinrect:cgrectmake (0, 0, Width, imageheight/widthscale)];
}

Create a resized picture from the current context
UIImage *newimage = Uigraphicsgetimagefromcurrentimagecontext ();
[NewImage retain];
Make the current context out of the stack
Uigraphicsendimagecontext ();

return newimage;

}

iOS medium ratio compression code

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.