Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

base64 photo and paperclip -Rails

I want to handle a base64 photo with paperclip.
When I try:

photo = Photo.new 
string = base64string

photo.photo = StringIO.new(Base64.decode64(string))
photo.save

It does not work. Why?

Thanks in advance.

like image 502
Lamp Avatar asked Dec 01 '25 08:12

Lamp


1 Answers

Make sure that the StringIO you are using is the paperclip opened one. https://github.com/thoughtbot/paperclip/blob/master/lib/paperclip/upfile.rb

 sio = StringIO.new(Base64.decode64(string))
 puts sio.respond_to?(:original_filename)
 puts sio.respond_to?(:content_type)

It needs to have those methods in order to have paperclip work with StringIO. Make sure it is setting them.

like image 176
Michael Papile Avatar answered Dec 03 '25 22:12

Michael Papile



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!