在使用imagecache_create_path&之前使用Drupal imagecache生成映像。和getimagesize

时间:2010-06-03 11:33:51

标签: php image drupal caching image-caching

我正在使用imagecache_create_path()和getimagesize()来获取imagecache生成的图像及其尺寸的路径。但是,如果这是我们第一次访问该页面时图像不存在而且imagecache_create_path也没有生成它。

以下是代码:

// we get the image path from a preset (always return the path even if the file doesn't exist)
$small_image_path = imagecache_create_path('gallery_image_small', $image["filepath"]);
// I get the image dimensions (only if the file exists already)
$data_small = list($width, $height, $type, $image_attributes) = @getimagesize($small_image_path);

是否有任何API方法来获取路径并生成文件?换句话说,我可以从PHP生成图像(使用预设)而不在浏览器中显示它吗?

提前谢谢

1 个答案:

答案 0 :(得分:8)

检查imagecache_build_derivative()函数及其在imagecache.module中的用法。对于你的情况,它应该大致如下:

$presetname = 'gallery_image_small';
$preset = imagecache_preset_by_name($presetname);
$src = $image["filepath"];
$dst = imagecache_create_path($presetname, $src);
// Ensure existing derivative or try to create it on the fly
if (file_exists($dst) || imagecache_build_derivative($preset['actions'], $src, $dst)) {
  // Do what you need to do with the image
}

(注意:未经测试的代码,谨防拼写错误和其他错误/疏忽)