Chrome Won't Infer File Extension
Add a file extension since the Chrome version I tested didn’t infer the file extension.
This commit is contained in:
parent
745b9cc692
commit
6c1aaeae2a
@ -231,13 +231,13 @@ class http2pic
|
|||||||
if ($this->params['type'] === 'png') {
|
if ($this->params['type'] === 'png') {
|
||||||
|
|
||||||
header('Content-Type: image/png');
|
header('Content-Type: image/png');
|
||||||
header('Content-Disposition: inline; filename="'.$this->trimToAlphaNumeric($this->params['url']).'"');
|
header('Content-Disposition: inline; filename="'.$this->trimToAlphaNumeric($this->params['url']).'.png"');
|
||||||
$result = imagecreatefrompng($this->params['file']);
|
$result = imagecreatefrompng($this->params['file']);
|
||||||
imagepng($result, NULL, 9);
|
imagepng($result, NULL, 9);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
header('Content-Type: image/jpeg');
|
header('Content-Type: image/jpeg');
|
||||||
header('Content-Disposition: inline; filename="'.$this->trimToAlphaNumeric($this->params['url']).'"');
|
header('Content-Disposition: inline; filename="'.$this->trimToAlphaNumeric($this->params['url']).'.jpg"');
|
||||||
$result = imagecreatefromjpeg($this->params['file']);
|
$result = imagecreatefromjpeg($this->params['file']);
|
||||||
imagejpeg($result, NULL, 100);
|
imagejpeg($result, NULL, 100);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user