Sha256: 453cbfe70b1661288c93bb1802c9b217d6860609a725ea40072d7751793c88fe

Contents?: true

Size: 1.55 KB

Versions: 6

Compression:

Stored size: 1.55 KB

Contents

module Compass::SassExtensions::Functions::InlineImage

  def inline_image(path, mime_type = nil)
    path = path.value
    real_path = File.join(Compass.configuration.images_path, path)
    url = "url('data:#{compute_mime_type(path,mime_type)};base64,#{data(real_path)}')"
    Sass::Script::String.new(url)
  end

  def inline_font_files(*args)
    raise Sass::SyntaxError, "An even number of arguments must be passed to font_files()" unless args.size % 2 == 0
    files = []
    while args.size > 0
      path = args.shift.value
      real_path = File.join(Compass.configuration.fonts_path, path)
      url = "url('data:#{compute_mime_type(path)};base64,#{data(real_path)}')"
      files << "#{url} format('#{args.shift}')"
    end
    Sass::Script::String.new(files.join(", "))
  end

private
  def compute_mime_type(path, mime_type = nil)
    return mime_type if mime_type
    case path
    when /\.png$/i
      'image/png'
    when /\.jpe?g$/i
      'image/jpeg'
    when /\.gif$/i
      'image/gif'
    when /\.otf$/i
      'font/opentype'
    when /\.ttf$/i
      'font/truetype'
    when /\.woff$/i
      'font/woff'
    when /\.off$/i
      'font/openfont'
    when /\.([a-zA-Z]+)$/
      "image/#{Regexp.last_match(1).downcase}"
    else
      raise Compass::Error, "A mime type could not be determined for #{path}, please specify one explicitly."
    end
  end

  def data(real_path)
    if File.readable?(real_path)
      [File.read(real_path)].pack('m').gsub("\n","")
    else
      raise Compass::Error, "File not found or cannot be read: #{real_path}"
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
compass-0.10.4 lib/compass/sass_extensions/functions/inline_image.rb
compass-0.10.4.pre.4 lib/compass/sass_extensions/functions/inline_image.rb
compass-0.10.4.pre.3 lib/compass/sass_extensions/functions/inline_image.rb
compass-0.10.4.pre.2 lib/compass/sass_extensions/functions/inline_image.rb
compass-0.10.3 lib/compass/sass_extensions/functions/inline_image.rb
compass-0.10.3.pre.1 lib/compass/sass_extensions/functions/inline_image.rb