本文介绍了使用带有Carrierwave的base64形象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要执行类似的事情从 ,但与Carrierwave。
任何人可以在Carrierwave使用Base64图像的解释我?
解决方案
类ImageUploader< CarrierWave ::上传::基地 类FilelessIO< StringIO的
attr_accessor中:original_filename
attr_accessor中:CONTENT_TYPE
结束 前:缓存:convert_base64 高清convert_base64(文件)
如果file.respond_to(:original_filename)及&放大器;
file.original_filename.match(/ ^ BASE64:/)
FNAME = file.original_filename.gsub(/ ^ BASE64:/,'')
CTYPE = file.content_type
德codeD = Base64.de code64(file.read)
file.file.tempfile.close!
德codeD = FilelessIO.new(德codeD)
德coded.original_filename = FNAME
德coded.content_type = CTYPE
文件.__ send__:文件=,德codeD
结束
文件
结束
I want to perform the similar thing as from base64 photo and paperclip -Rails, but with Carrierwave.Could anybody explain me using of base64 images in Carrierwave?
解决方案
class ImageUploader < CarrierWave::Uploader::Base
class FilelessIO < StringIO
attr_accessor :original_filename
attr_accessor :content_type
end
before :cache, :convert_base64
def convert_base64(file)
if file.respond_to?(:original_filename) &&
file.original_filename.match(/^base64:/)
fname = file.original_filename.gsub(/^base64:/, '')
ctype = file.content_type
decoded = Base64.decode64(file.read)
file.file.tempfile.close!
decoded = FilelessIO.new(decoded)
decoded.original_filename = fname
decoded.content_type = ctype
file.__send__ :file=, decoded
end
file
end
这篇关于使用带有Carrierwave的base64形象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!