View file template/pic.php
<? if(!preg_match("#^\.\.\/photo\/(.*)[jpg|png|gif]$#i",$_GET['image']) or !file_exists($_GET['image'])) { echo'<img src="http://vseti-nn.ru/img/logo.gif" width="180">'; exit(); } header("Content-type: image/jpeg"); $_GET['image'] = urldecode($_GET['image']); $thumb=new Imagick($_GET['image']); $thumb->thumbnailImage(300,0); /// $newY можно присвоить 0, тогда будет резать по пропорции echo $thumb; ?>