Imagecache_create_path kullanmadan önce ve Drupal imagecache ile görüntü oluşturmak

1 Cevap php

Ben bir imagecache oluşturulan görüntü ve boyutları yolunu almak için () imagecache_create_path () ve getimagesize kullanıyorum. Ancak, biz sayfaya erişmek ilk defa ise bu görüntü henüz yok ve imagecache_create_path ya bunu üretmez.

İşte kod:

// 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);

Yol almak VE dosyası oluşturmak için herhangi bir API yöntem var mı? Diğer bir deyişle, ben tarayıcıda göstermeden PHP (Hazır ayar kullanarak) görüntü oluşturabilir?

Şimdiden teşekkürler

1 Cevap

imagecache_build_derivative() fonksiyonunu ve imagecache.module onun kullanımını kontrol edin. Dava için, kabaca şöyle çalışması gerekir:

$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
}

(NOT: denenmemiş kodu, yazım hataları ve diğer hatalar / kusurlar dikkat)