Select a GIF image from the system album to upload to the server

Source: Internet
Author: User

-(void) Assetpickercontroller: (Zyqassetpickercontroller *) Picker didfinishpickingassets: (Nsarray *) assets{ for(inti =0; i < Assets.count; i + +) {Alasset*asset =Assets[i]; Alassetrepresentation*rep =[Asset defaultrepresentation]; if([Rep. UTI Hassuffix:@"gif"]) {//the GIF is selected//file path for stitching gifNSString *document =[Nssearchpathfordirectoriesindomains (NSDocumentDirectory, Nsuserdomainmask, YES) lastobject]; NSString*filepath =[Document StringByAppendingPathComponent:rep.filename]; BOOL FileExist=[[Nsfilemanager Defaultmanager] fileexistsatpath:filepath]; if(!fileexist) {//the selected GIF is not yet written to the sandbox//writes the selected GIF to the sandboxByte *imagebuffer = (byte*) malloc (rep.size); Nsuinteger buffersize= [Rep getbytes:imagebuffer fromoffset:0.0Length:rep.size Error:nil]; NSData*imagedata =[NSData datawithbytesnocopy:imagebuffer length:buffersize Freewhendone:yes];            [ImageData Writetofile:filepath Atomically:yes];        } [_selectimages Addobject:filepath]; }    }}

Then upload it based on the path to the GIF picture written to the sandbox

Select a GIF image from the system album to upload to the server

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.