You are here

function sassy_compass__image_width in Sassy 7.3

Same name and namespace in other branches
  1. 7.2 extensions/compass/functions/image_size.inc \sassy_compass__image_width()

File

sassy_compass/functions/image_size.inc, line 3

Code

function sassy_compass__image_width($file) {
  if ($info = sassy_compass__image_info($file)) {
    return new SassNumber($info[0] . 'px');
  }
  return new SassNumber('0px');
}