gpt4 book ai didi

php - 是否有即时 drupal 图像缩放器?

转载 作者:行者123 更新时间:2023-12-02 06:08:52 27 4
gpt4 key购买 nike

Drupal 或 Drupal 模块中是否有图像缩放器可以让您执行以下操作:

theme_image_resize($source, $heightx$width, $options);

最佳答案

Drupal 7 带有图像样式,可让您创建预设,包括缩放、裁剪和许多其他图像处理操作。您可以使用 theme_image_style() 以编程方式调整任何图像的大小:

$options = array(
'style_name' => 'small', // Machine name of style defined in Admin UI or image_style_save()
'path' => 'public://myimage.png',
'alt' => t('resized image'),
'title' => t('resized image'),
'attributes' => array(
'class' => array('awesome', 'inset', 'resized'),
'rel' => 'lightbox',
),
);
$image_html = theme('image_style', $options);

Drupal 6 等效于使用 ImageCache ,具有相似的 API 和工作流程。

关于php - 是否有即时 drupal 图像缩放器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5747260/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com