mirror of
https://github.com/friendica/friendica
synced 2024-11-13 00:22:59 +00:00
add ability to set maximum pixel length of uploaded pictures
This commit is contained in:
parent
f7144e671c
commit
3fe5bdbd8d
2 changed files with 24 additions and 0 deletions
18
boot.php
18
boot.php
|
@ -34,6 +34,24 @@ define ( 'JPEG_QUALITY', 100 );
|
||||||
*/
|
*/
|
||||||
define ( 'PNG_QUALITY', 8 );
|
define ( 'PNG_QUALITY', 8 );
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* An alternate way of limiting picture upload sizes. Specify the maximum pixel
|
||||||
|
* length that pictures are allowed to be (for non-square pictures, it will apply
|
||||||
|
* to the longest side). Pictures longer than this length will be resized to be
|
||||||
|
* this length (on the longest side, the other side will be scaled appropriately).
|
||||||
|
* Modify this value using
|
||||||
|
*
|
||||||
|
* $a->config['system']['max_image_length'] = n;
|
||||||
|
*
|
||||||
|
* in .htconfig.php
|
||||||
|
*
|
||||||
|
* If you don't want to set a maximum length, set to -1. The default value is
|
||||||
|
* defined by 'MAX_IMAGE_LENGTH' below.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
define ( 'MAX_IMAGE_LENGTH', -1 );
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Not yet used
|
* Not yet used
|
||||||
|
|
|
@ -743,6 +743,12 @@ function photos_post(&$a) {
|
||||||
$ph->orient($src);
|
$ph->orient($src);
|
||||||
@unlink($src);
|
@unlink($src);
|
||||||
|
|
||||||
|
$max_length = get_config('system','max_image_length');
|
||||||
|
if(! $max_length)
|
||||||
|
$max_length = MAX_IMAGE_LENGTH;
|
||||||
|
if($max_length > 0)
|
||||||
|
$ph->scaleImage($max_length);
|
||||||
|
|
||||||
$width = $ph->getWidth();
|
$width = $ph->getWidth();
|
||||||
$height = $ph->getHeight();
|
$height = $ph->getHeight();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue