Xamarion.ios UIImage pictures, such as cropping scaling __ios

Source: Internet
Author: User

Applications need to extract a part of the picture to display, the study of the night also did not get a clear miscellaneous, only recourse to Google, Xamain forum find someone to put the method posted.

Mark, please.


Reference: Http://forums.xamarin.com/discussion/4170/resize-images-and-save-thumbnails

//resize the image to be contained within a maximum width and height, keeping aspect ratio pub
    Lic uiimage maxresizeimage (uiimage sourceimage, float maxwidth, float maxheight) {var sourcesize = sourceimage.size;
    var maxresizefactor = Math.max (Maxwidth/sourcesize.width, maxheight/sourcesize.height);
    if (Maxresizefactor > 1) return sourceimage;
    var width = maxresizefactor * sourcesize.width;
    var height = maxresizefactor * sourcesize.height;
    Uigraphics.beginimagecontext (New SizeF (width, height));
    Sourceimage.draw (New RectangleF (0, 0, width, height));
    var resultimage = Uigraphics.getimagefromcurrentimagecontext ();
    Uigraphics.endimagecontext ();
return resultimage; }//Resize the image (without trying to maintain aspect ratio) public uiimage resizeimage (uiimage sourceimage, float wid
    Th, float height) {uigraphics.beginimagecontext (new SizeF (width, height)); Sourceimage.draw (New RectangleF (0, 0, 
Related Article

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.