Shrink Large Images
Shrink Large Images
Is there any modification or script, that automatically shrinks images larger than a particular value to a smaller size.
- A_Jelly_Doughnut
- Registered User
- Posts: 1780
- Joined: Wed Jun 04, 2003 4:23 pm
Re: Shrink Large Images
You should not need a MOD for this. phpBB supports creating thumbnails if your server has GD or ImageMagick installed. I believe the setting is under attachment settings on the front page of the ACP.
A_Jelly_Doughnut
- COD3M4ST3R-X
- Registered User
- Posts: 228
- Joined: Wed Nov 05, 2008 7:52 am
- Location: Lahore,Pakistan
- Contact:
Re: Shrink Large Images
Well if you want a Modification use thisBIKI wrote:Is there any modification or script, that automatically shrinks images larger than a particular value to a smaller size.
Reimg Image Resizer B9
Code: Select all
http://www.taletn.com/phpbb3/viewtopic.php?f=7&t=19
Long Live PhpBB!
Re: Shrink Large Images
hmm...i want to resize all images. not only attachmentsA_Jelly_Doughnut wrote:You should not need a MOD for this. phpBB supports creating thumbnails if your server has GD or ImageMagick installed. I believe the setting is under attachment settings on the front page of the ACP.
thanx...will try it out !COD3M4ST3R-X wrote:Well if you want a Modification use thisBIKI wrote:Is there any modification or script, that automatically shrinks images larger than a particular value to a smaller size.
Reimg Image Resizer B9Code: Select all
http://www.taletn.com/phpbb3/viewtopic.php?f=7&t=19
Re: Shrink Large Images
Theres a simple 'resize all images' on my website
Re: Shrink Large Images
I'm trying to install the Image Resizer 0.0.b9 script. In the first line of directions, it says to do this:
Any help would be greatly appreciated!
I'm wondering, what file do I change to insert this code? I'm using a phpbb 3.0.4 forum with the eMuza_summer template (a prosilver based theme).SQL
Code: Select all
INSERT INTO phpbb_config (config_name, config_value) VALUES ('reimg_max_width', '640'), ('reimg_max_height', '480'), ('reimg_rel_width', '0'), ('reimg_swap_portrait', '1'), ('reimg_zoom', '_litebox');
Any help would be greatly appreciated!
- darcie
- Former Team Member
- Posts: 189
- Joined: Mon Mar 12, 2007 7:32 pm
- Location: Davis, California
- Contact:
Re: Shrink Large Images
Something like this in a MOD install instruction is to be entered into your database. Your host probably provides something like phpmyadmin to manage your database through the hosting control panel. You'll go there to the database with your forum, and you'll paste the entry into the sql box.
Also see http://www.phpbbcom.phpbbservice.nl/kb/ ... admin.html
Also see http://www.phpbbcom.phpbbservice.nl/kb/ ... admin.html
Re: Shrink Large Images
Thank you...that cleared it up for me.