Jump to content
  • 0

Помогите с созданием эскиза


NIKKK
 Share

Question

Люди добрые, подскажите, пожалуйста, код или натолкните на ф-ю, кот. уменьшает размер фото. Нужно организовать предпросмотр. Знаю, в php есть ф-я обработки изображения - уменьшения до нужной величины. Если не трудно ткните в код...

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
<?

class IMG

{

var $IMGDir; //путь на диске к файлам изображений (что-то типа getenv("DOCUMENT_ROOT").'/usrfiles/IMG/')

var $IMGURL; //путь для браузера к тем же файлам (например '/usrfiles/IMG/')

var $ThumbDir; //путь к превьюшкам (предполагается вроде $IMGDir.'thumbs' )

var $ThumbURL; //понятно что

var $ThumbHeight;// высота превьюшек (захотелось вот их по высоте выравнивать;-))

var $Image; //

var $UploadName;

function CheckImgType() //проверка соответствия изображения моим требованиям + инфа о нем для дальнейшего применения

{

$imgtype = @getimagesize($this->Image);

$image_w = $imgtype[0];

$image_h = $imgtype[1];

switch($imgtype[2])

{

case 1:

$image_type= "GIF";

$image_ext = ".gif";

$image_crt = imagecreatefromgif($this->Image);

break;

case 2:

$image_type= "JPEG";

$image_ext = ".jpg";

$image_crt = imagecreatefromjpeg($this->Image);

break;

case 3:

$image_type= "PNG";

$image_ext = ".png";

$image_crt = imagecreatefrompng($this->Image);

break;

case 6:

$image_type= "BMP";

$image_ext = ".bmp";

$image_crt = imagecreatefromwbmp($this->Image);

break;

default:

$image_err = "изображения могут быть только в формате GIF, JPEG, PNG или BMP";

}

if(!$image_err)

{

return array("type"=>$image_type,"ext"=>$image_ext,"create"=>$image_crt,"width"=>$image_w,"height"=>$image_h);

}

else

{

return array("error"=>$image_err);

}

}

function CreateThumb() //сия функция создает собственно превью

{

$check_img=$this->CheckImgType();

if($check_img['type'])

{

$final_thumb_name = $this->ThumbDir.$this->UploadName.".jpg"; //сделаем их всех JPEG-ами , чтоб не напрягаться

$width = imagesx($check_img['create']); //ширина оригинала

$height = imagesy($check_img['create']); //высота оригинала

$thumb_width = ($this->ThumbHeight * $width) / $height;

$thumb = imagecreatetruecolor($thumb_width, $this->ThumbHeight);

imagecopyresampled($thumb,$check_img['create'],0,0,0,0,$thumb_width,$this->ThumbHeight,$width,$height);

imageJPEG($thumb, $final_thumb_name);

imagedestroy($check_img['create']);

}

}

function UploadImg()

{

$this->CreateThumb();

if(is_uploaded_file($this->Image))

{

$about_image=$this->CheckImgType();

move_uploaded_file($this->Image,$this->IMGDir.$this->UploadName.$about_image['ext']);

}

}

function ViewImage()

{

}

}

?>

объявляем класс

$img = new IMG;

Опрделяем конфиг

$img->IMGDir="путь/где хранятся/изображения";

$img->ThumbDir="путь/где хранятся/уменьшеные копии";

$img->ThumbHeight="высота превьюшек";

$img->UploadName="генерируем название изображений";

$img->Image=($_FILES['image']['tmp_name']);

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy