Merge pull request #10 from chpwssn/master

Add Content-Disposition to make saving images cleaner
This commit is contained in:
Christian Haschek 2016-08-29 19:38:03 +02:00 committed by GitHub
commit 77f2a2651c

View File

@ -231,11 +231,13 @@ class http2pic
if ($this->params['type'] === 'png') {
header('Content-Type: image/png');
header('Content-Disposition: inline; filename="'.$this->trimToAlphaNumeric($this->params['url']).'.png"');
$result = imagecreatefrompng($this->params['file']);
imagepng($result, NULL, 9);
}
else {
header('Content-Type: image/jpeg');
header('Content-Disposition: inline; filename="'.$this->trimToAlphaNumeric($this->params['url']).'.jpg"');
$result = imagecreatefromjpeg($this->params['file']);
imagejpeg($result, NULL, 100);
}