Issue #9
This commit is contained in:
parent
200d8d9cf5
commit
1e20121224
@ -60,6 +60,7 @@
|
|||||||
define('REDRAW_IMAGE', true);
|
define('REDRAW_IMAGE', true);
|
||||||
// Redrawing configuration
|
// Redrawing configuration
|
||||||
define('JPEG_QUALITY', 100);
|
define('JPEG_QUALITY', 100);
|
||||||
|
define('REDRAW_GIF', false);
|
||||||
|
|
||||||
|
|
||||||
define('DIR_IMG', 'src/');
|
define('DIR_IMG', 'src/');
|
||||||
|
3
post.php
3
post.php
@ -142,7 +142,8 @@
|
|||||||
imagepng($image, $post['file'], 7);
|
imagepng($image, $post['file'], 7);
|
||||||
break;
|
break;
|
||||||
case 'gif':
|
case 'gif':
|
||||||
imagegif($image, $post['file']);
|
if(REDRAW_GIF)
|
||||||
|
imagegif($image, $post['file']);
|
||||||
break;
|
break;
|
||||||
case 'bmp':
|
case 'bmp':
|
||||||
imagebmp($image, $post['file']);
|
imagebmp($image, $post['file']);
|
||||||
|
Loading…
Reference in New Issue
Block a user