You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-8Lines changed: 13 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,10 @@
1
1
# phpBB Image upload use ImageMagick
2
2
3
3
## Description
4
-
This extension us the PHP Imagick class to modify upload image for improved quality.
5
-
This extension can change the image size and/or the image file size. It rotate images and thumbnails according to their EXIF information and it can remove the EXIF data.
4
+
This extension is a further development of [canonknipser](https://www.phpbb.com/customise/db/author/canonknipser)[ImageMagick Thumbnailer](https://www.phpbb.com/customise/db/extension/imagemagick_thumbnailer).
5
+
The extension uses the PHP imagick class to modify uploaded images, thumbnails and avatars. If the values set in the ACP are exceeded by the image file, the image is being resized by the extension.
6
+
The extension supports JPEG, WEBP, GIF and PNG images. Other image formats, for example BMP, are converted to JPEG when resized.
7
+
This extension can change the image size and/or the image file size. It rotate images, thumbnails and avatars according to their EXIF information and it can remove the EXIF data from JPEG and WEBP files.
6
8
7
9
#### Settings in User Control Panel
8
10
- No settings.
@@ -14,17 +16,19 @@ This extension can change the image size and/or the image file size. It rotate i
14
16
- Maximum image heigth.
15
17
- Maximum image file size.
16
18
- Remove EXIF data
19
+
- Resize avatar
17
20
18
21
## Requirements
19
-
- php 7.0 or higher
20
22
- phpBB 3.2.4 or higher
21
-
- php the Imagick class
23
+
- php 7.1 or higher
24
+
- php ImageMagick library installed
22
25
23
26
## Installation
24
27
Copy the extension to `phpBB3/ext/imcger/imgupload`.
25
28
Go to "ACP" > "Customise" > "Manage extensions" and enable the "Image upload use ImageMagick" extension.
26
29
For full functionality "Maximum file size" in "ACP" > "Posting" > "Attachment settings" must be set to 0. This is done automatically during the migration.
27
30
For full functionality "Maximum image dimensions" in "ACP" > "Posting" > "Attachment settings" must be set to 0. This is done automatically during the migration.
31
+
For full functionality "Maximum avatar file size" in "ACP" > "Board configuration" > "Avatar settings" must be set to 0. This is done automatically during the migration.
28
32
29
33
## Update
30
34
- Navigate in the ACP to `Customise -> Manage extensions`.
@@ -36,13 +40,14 @@ For full functionality "Maximum image dimensions" in "ACP" > "Posting" > "Attach
Copy file name to clipboardExpand all lines: imcger/imgupload/README.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,10 @@
1
1
# phpBB Image upload use ImageMagick
2
2
3
3
## Description
4
-
This extension us the PHP imagick class to modify upload image for improved quality.
5
-
This extension can change the image size and/or the image file size. It rotate images and thumbnails according to their EXIF information and it can remove the EXIF data.
4
+
This extension is a further development of [canonknipser](https://www.phpbb.com/customise/db/author/canonknipser)[ImageMagick Thumbnailer](https://www.phpbb.com/customise/db/extension/imagemagick_thumbnailer).
5
+
The extension uses the PHP imagick class to modify uploaded images, thumbnails and avatars. If the values set in the ACP are exceeded by the image file, the image is being resized by the extension.
6
+
The extension supports JPEG, WEBP, GIF and PNG images. Other image formats, for example BMP, are converted to JPEG when resized.
7
+
This extension can change the image size and/or the image file size. It rotate images, thumbnails and avatars according to their EXIF information and it can remove the EXIF data from JPEG and WEBP files.
6
8
7
9
#### Settings in User Control Panel
8
10
- No settings.
@@ -14,17 +16,19 @@ This extension can change the image size and/or the image file size. It rotate i
14
16
- Maximum image heigth.
15
17
- Maximum image file size.
16
18
- Remove EXIF data
19
+
- Resize avatar
17
20
18
21
## Requirements
19
-
- php 7.0 or higher
20
22
- phpBB 3.2.4 or higher
21
-
- php the Imagick class
23
+
- php 7.1 or higher
24
+
- php ImageMagick library installed
22
25
23
26
## Installation
24
27
Copy the extension to `phpBB3/ext/imcger/imgupload`.
25
28
Go to "ACP" > "Customise" > "Manage extensions" and enable the "Image upload use ImageMagick" extension.
26
29
For full functionality "Maximum file size" in "ACP" > "Posting" > "Attachment settings" must be set to 0. This is done automatically during the migration.
27
30
For full functionality "Maximum image dimensions" in "ACP" > "Posting" > "Attachment settings" must be set to 0. This is done automatically during the migration.
31
+
For full functionality "Maximum avatar file size" in "ACP" > "Board configuration" > "Avatar settings" must be set to 0. This is done automatically during the migration.
28
32
29
33
## Update
30
34
- Navigate in the ACP to `Customise -> Manage extensions`.
@@ -36,6 +40,7 @@ For full functionality "Maximum image dimensions" in "ACP" > "Posting" > "Attach
0 commit comments