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