I am trying to save a png in my rails app using the below code
uploader = AvatarUploader.new
uploader.store!(params[:image])
But it's throwing ArgumentError (invalid byte sequence in UTF-8)
What am i doing wrong here?
I am posting it via an ios app using AFNetworking.