【发布时间】:2014-08-11 19:56:29
【问题描述】:
【问题讨论】:
标签: php drupal drupal-7 image-resizing drupal-theming
【问题讨论】:
标签: php drupal drupal-7 image-resizing drupal-theming
您需要覆盖默认的theme_image 并删除width 和height 属性,或者将它们的值设置为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) . ' />';
}
【讨论】:
How to Remove Image Resizing in HTML,答案解释了如何。但是为了创建图像样式预设,您应该从?q=admin/config/media/image-styles 开始。