指南针内嵌图像功能base64编码图像不显示在Android移动浏览器上

时间:2012-05-22 08:38:46

标签: android css ruby sass

当我使用指南针(scss)内嵌图像功能时,我发现生成的png图像的base64代码可以在PC浏览器中显示,但不能在Android手机的浏览器上显示(MOTO XT711,其他... 。)

我发现这个sass扩展函数的源代码如下:

def data(real_path)
if File.readable?(real_path)
  File.open(real_path, "rb") {|io| io.read}
else
  raise Compass::Error, "File not found or cannot be read: #{real_path}"
end

似乎编码方式错了?如何将图像编码为与android mobile兼容的base64?

0 个答案:

没有答案