如何在HTML中删除图像大小调整

时间:2014-08-11 19:56:29

标签: php drupal drupal-7 image-resizing drupal-theming

我不确定此网站是否通过HTML重新调整图片大小,或者图片大小是否自动添加到代码中。

如果要重新调整图像大小,则需要修复此图像,因为它会减慢页面加载时间。

这是example page

1 个答案:

答案 0 :(得分:1)

您需要覆盖默认theme_image并删除widthheight属性,或将其值设置为auto

示例:

// In your theme's template.php file
function [YOUR_THEME]_image($variables) {
  $attributes = $variables['attributes'];
  $attributes['src'] = file_create_url($variables['path']);

  foreach (array('alt', 'title') as $key) {
    if (isset($variables[$key])) {
      $attributes[$key] = $variables[$key];
    }
  }

  return '<img' . drupal_attributes($attributes) . ' />';
}