forked from Wavyzz/dolibarr
144 lines
4.3 KiB
PHP
144 lines
4.3 KiB
PHP
<?php
|
|
/* Copyright (C) 2018 Andreu Bisquerra <jove@bisquerra.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language
|
|
//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled cause need to load personalized language
|
|
if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1');
|
|
//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1');
|
|
if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK','1');
|
|
if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1');
|
|
if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1');
|
|
if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1');
|
|
if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1');
|
|
|
|
require '../../main.inc.php'; // Load $user and permissions
|
|
|
|
$id= GETPOST('id');
|
|
$w= GETPOST('w');
|
|
$h= GETPOST('h');
|
|
$query= GETPOST('query');
|
|
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
header('Content-Type: image/jpeg');
|
|
header('Cache-Control: max-age=604800, public, must-revalidate');
|
|
header('Pragma: cache');
|
|
|
|
if ($query=="cat")
|
|
{
|
|
require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/categories.lib.php';
|
|
|
|
$object = new Categorie($db);
|
|
$result = $object->fetch($id);
|
|
$upload_dir = $conf->categorie->multidir_output[$object->entity];
|
|
$pdir = get_exdir($object->id,2,0,0,$object,'category') . $object->id ."/photos/";
|
|
$dir = $upload_dir.'/'.$pdir;
|
|
foreach ($object->liste_photos($dir) as $key => $obj)
|
|
{
|
|
$filename=$obj['photo'];
|
|
}
|
|
|
|
// The file
|
|
$filename = $dir.$filename;
|
|
if (!file_exists($filename)) $filename="empty.jpg";
|
|
|
|
// Dimensions
|
|
list($width, $height) = getimagesize($filename);
|
|
$new_width = $w;
|
|
$new_height = $h;
|
|
|
|
// Resample
|
|
$image_p = imagecreatetruecolor($new_width, $new_height);
|
|
$image = imagecreatefromjpeg($filename);
|
|
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
|
|
|
|
// Add icon
|
|
$icon = imagecreatefromjpeg('add.jpg');
|
|
list($width, $height) = getimagesize('add.jpg');
|
|
$new_width = $w*0.3;
|
|
$new_height = $h*0.3;
|
|
$icon_p = imagecreatetruecolor($new_width, $new_height);
|
|
imagecopyresampled($icon_p, $icon, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
|
|
imagecopymerge($image_p, $icon_p, 0, 0, 0, 0, $new_width, $new_height, 100);
|
|
|
|
// Output
|
|
imagejpeg($image_p, null, 100);
|
|
}
|
|
else if ($query=="pro")
|
|
{
|
|
require_once DOL_DOCUMENT_ROOT."/product/class/product.class.php";
|
|
|
|
$objProd = new Product($db);
|
|
$objProd->fetch($id);
|
|
|
|
$dir .= get_exdir(0,0,0,0,$objProd,'product').$objProd->ref.'/';
|
|
$pdir .= get_exdir(0,0,0,0,$objProd,'product').$objProd->ref.'/';
|
|
|
|
foreach ($objProd->liste_photos($dir) as $key => $obj)
|
|
{
|
|
$filename=$obj['photo'];
|
|
}
|
|
$filename = $dir.$filename;
|
|
|
|
if (!file_exists($filename)){
|
|
$dir = $conf->product->multidir_output[$objProd->entity].'/'.$pdir;
|
|
foreach ($objProd->liste_photos($dir) as $key => $obj)
|
|
{
|
|
$filename=$obj['photo'];
|
|
}
|
|
$filename = $dir.$filename;
|
|
}
|
|
|
|
if (!file_exists($filename)) $filename="empty.jpg";
|
|
|
|
// Dimensions
|
|
list($width, $height) = getimagesize($filename);
|
|
$new_width = $w;
|
|
$new_height = $h;
|
|
|
|
// Resample
|
|
$image_p = imagecreatetruecolor($new_width, $new_height);
|
|
$image = imagecreatefromjpeg($filename);
|
|
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
|
|
|
|
// Output
|
|
imagejpeg($image_p, null, 100);
|
|
}
|
|
else
|
|
{
|
|
// The file
|
|
$filename = $query.".jpg";
|
|
|
|
// Dimensions
|
|
list($width, $height) = getimagesize($filename);
|
|
$new_width = $w;
|
|
$new_height = $h;
|
|
|
|
// Resample
|
|
$image_p = imagecreatetruecolor($new_width, $new_height);
|
|
$image = imagecreatefromjpeg($filename);
|
|
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
|
|
|
|
// Output
|
|
imagejpeg($image_p, null, 100);
|
|
}
|