Küçük resim / tmp / thumb / ve Image Resizer ile / tmp / üzerindeki orijinal görüntü tutmak için gitmek nasıl yapılır?

2 Cevap php

Ben görüntü resizer ile oynamaya çalışıyorum ve aşağıdaki kodu var

if (is_uploaded_file(@$_FILES['ulimage']['tmp_name'])){
    	$targetfilename	= ImageHelper::treatFilename(uniqid() . "_" . $_FILES['ulimage']['name']);
    	move_uploaded_file($_FILES['ulimage']['tmp_name'], dirname(__FILE__) . "/tmp/" . $_FILES['ulimage']['name']);
    	ImageHelper::resizeImage(dirname(__FILE__) . "/tmp/" . @$_FILES['ulimage']['name'], dirname(__FILE__) . "/tmp/" . $targetfilename, $width, $height);
    }

Şimdilik, orijinal görüntü ve küçük resim aynı klasöre yerleştirir.

Bana haber ver ..

Source

2 Cevap

Peki, cevap:

if (is_uploaded_file(@$_FILES['ulimage']['tmp_name']))
{
        $targetfilename = ImageHelper::treatFilename(uniqid() . "_" . $_FILES['ulimage']['name']);
        move_uploaded_file($_FILES['ulimage']['tmp_name'], dirname(__FILE__) . "/tmp/" . $_FILES['ulimage']['name']);
        ImageHelper::resizeImage(dirname(__FILE__) . "/tmp/" . @$_FILES['ulimage']['name'], dirname(__FILE__) . "/tmp/thumb/" . $targetfilename, $width, $height);
}

Ama belki bunu kullanmadan önce biraz Net kopyalamak kodu ve geçmişini anlamak istiyorum. _ $ Kullanarak gerçekten güven için aramıyor sistemi kaçan olmadan ve @ hatayı gizlemek için olan vars ...

EDIT: Ben tavsiye veriyorum, ama belki de biraz açıklama vermek daha iyidir.

// first you check if the is done uploading in the tmp directory with is tmp name
if (is_uploaded_file(@$_FILES['ulimage']['tmp_name'])) 
{
     // here, you rebuild a explicit name using the original filename and a 
     // unique ID to avoid erasing another one   
     $targetfilename = ImageHelper::treatFilename(uniqid() . "_" . $_FILES['ulimage']['name']);

     // you rename the file an put it in ./tmp, a subdir of the 
     // script file (because of dirname(__FILE__))
     move_uploaded_file($_FILES['ulimage']['tmp_name'], dirname(__FILE__) . "/tmp/" . $_FILES['ulimage']['name']);

    // Here create a rezided copy
    // so it's here you can decide to make it go to ./tmp/thumb
    // make sure the dir exists before because you have no clue here
    // if ImageHelper will create it for you if not
    ImageHelper::resizeImage(dirname(__FILE__) . "/tmp/thumb/" . @$_FILES['ulimage']['name'], dirname(__FILE__) . "/tmp/thumb/" . $targetfilename, $width, $height);
}

Hey dostum, bu çok zor görünüyor, ama sadece Thumbnailer kütüphane ve yükleme yardımcı kullanarak yapılabilir:

function callback(& $thumb) {
   $thumb->thumbSquare(100)->save("/tmp/thumb/".$thumb->filename);
}

Thumbnailer::upload('ulimage', 'callback');

Çok kolay :)