Giter Club home page Giter Club logo

Comments (5)

rpstro02 avatar rpstro02 commented on May 31, 2024

Update. The issue seems to only be with PNG files. I think it might be similar to the same problem that occurs on the cocoahttpserver here:

http://code.google.com/p/cocoahttpserver/issues/detail?id=15#c4

I'm not sure what the deal is with png files on the iPhone.

from asi-http-request.

rpstro02 avatar rpstro02 commented on May 31, 2024

I think I could fix the issue the same way the cocoahttpserver fixes the issue if I stream a file from memory as opposed to from the disk. I'm not sure how to do that right now. If anyone does, please post.

from asi-http-request.

pokeb avatar pokeb commented on May 31, 2024

Are you trying to upload a png you added to your project?

If I'm reading it correctly, the problem on the link you sent seems to be related to Xcode pre-multiplying the alpha on the image, which makes the png unreadable by other apps.

To use the fix they suggest, try something like this:

UIImage *imagePNG= [UIImage imageWithContentsOfFile:filePath];
NSData *pngData= UIImagePNGRepresentation(imagePNG);
[pngData writeToFile:somewhere atomically:NO];
ASIS3Request *request = [ASIS3Request PUTRequestForFile:somewhere withBucket:bucket path:path];

Writing it back to a file is necessary because ASIS3Request doesn't have support for uploading data except from a file, though I think this would be a worthwhile addition to the class.

Thanks

Ben

from asi-http-request.

rpstro02 avatar rpstro02 commented on May 31, 2024

Thanks for the reply. I'm trying to upload a png that I added to the project bundle. I tried to read the file straight from disk. I will try what you're suggesting. I am pretty sure there is some sort of issue with the alpha on the image because when I view image info of the uploaded file, it's different from the alpha value of the original image.

Uploading from data would rock!

from asi-http-request.

pokeb avatar pokeb commented on May 31, 2024

Added PUTRequestForData:etc to ASIS3Request
Closed by b3de943.

Also fixed unit tests for S3 on Mac, continued fallout from that setDoubleValue: debacle

from asi-http-request.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.