View Full Version : Auto Resize Image Attachments (Avatars & Profile Pic Too)....
mini2
08-16-2004, 10:00 PM
Gone
TheComputerGuy
08-17-2004, 09:29 AM
cool. I like it a lot
working on www.runaked.com/forums
Natch
08-17-2004, 02:10 PM
That's awesome - this is something I've been looking for for ages :D
Question: is it an easy thing to add this feature (maybe make your functionality into a standalone function?) into the Avatar upload and Profile pic upload functions ?
Natch
08-19-2004, 12:49 PM
Thanks muchly! This was the one final hack I was waiting for from my ol' vB2 - I looked into it a couple times, but never had the patience ;)
Symbian.info
08-19-2004, 04:20 PM
Does any one knows if it works in PHP in safe mode??
MrNase
08-21-2004, 02:29 PM
I installed it and I hope it's working ;)
(It's working, thank you so much :))
Erwin
08-23-2004, 10:37 PM
Very cool and useful hack. :) A lot of members are clueless when it comes to image resizing. This is a great idea.
Symbian.info
08-24-2004, 10:45 PM
Has anyone with PHP in safe mode tried this out yet? I'm keen (as others might be) to know if it works?
Don't think it works :tired: I try it with the File Attachment Images Resize hack, when I upload a big files take a time and then many, many (50x) errors like this:
Warning: Division by zero in /home/website/www/forum/includes/functions_file.php on line 318
Warning: Division by zero in /home/website/www/forum/includes/functions_file.php on line 319
Warning: Division by zero in /home/website/www/forum/includes/functions_file.php on line 327
Warning: Division by zero in /home/website/www/forum/includes/functions_file.php on line 328
Warning: imagecreatetruecolor(): Invalid image dimensions in /home/website/www/forum/includes/functions_file.php on line 331
and then: IMG_0541.JPG:
File Too Large. Limits are 640 x 480. Your file is 1600 x 1200.
So far not working, I don't know if it the safe mode..
lazytown
08-31-2004, 12:05 AM
There seems to be a problem with the avatar upload feature. If I set avatars to no more than 20K, but photos to 150K, it uses the 150K limit for avatars.
lazytown
08-31-2004, 12:06 AM
For files that are too big (in K), I would still like to see it try and resize them -- then see if they come under the file size limit.
memdy
08-31-2004, 05:25 PM
Getting similar error message, just installed GD 2.0.23
---------- begin error msg --------------------
Warning: Division by zero in /var/www/html/forums/includes/functions_file.php on line 44
Warning: Division by zero in /var/www/html/forums/includes/functions_file.php on line 45
Warning: Division by zero in /var/www/html/forums/includes/functions_file.php on line 53
Warning: Division by zero in /var/www/html/forums/includes/functions_file.php on line 54
Fatal error: imagecreatetruecolor(): requires GD 2.0 or later in /var/www/html/forums/includes/functions_file.php on line 57
----------- end error msg ---------------
-- line 44 -- $width_factor = $w / $maxattachwidth;
-- line 45 -- $height_factor = $h / $maxattachheight;
-- line 53 -- $nw = round($w / $height_factor);
-- line 54 -- $nh = round($h / $height_factor);
-- line 57 -- $ni=imagecreatetruecolor($nw,$nh);
CVMagic
09-01-2004, 01:25 PM
The issue with the deviding by zero in this hack is that you overlooked the fact that the hack does not define what $maxattachwidth & $maxattachhieght are... so besure to add those values to be edited in the admin panel....
^_^ by the way I coded the original version of this hack for vB2, look in the beta section for it, it should help you with some of the bugs in this one... FYI: Safemode shouldnt affect this scrpt as long as its not writing on to the filesystem. Also it helps to cache the resized images because trust me doing it on the fly will bog down the system in the long run.
Oh, I almost forgot if you have any questions feel free to send me a PM.
memdy
09-01-2004, 01:38 PM
<a href="http://www.offshoreonly.com/phpinfo.php" target="_blank">http://www.offshoreonly.com/phpinfo.php</a>
CVMagic
09-01-2004, 01:40 PM
Getting similar error message, just installed GD 2.0.23
---------- begin error msg --------------------
Warning: Division by zero in /var/www/html/forums/includes/functions_file.php on line 44
Warning: Division by zero in /var/www/html/forums/includes/functions_file.php on line 45
Warning: Division by zero in /var/www/html/forums/includes/functions_file.php on line 53
Warning: Division by zero in /var/www/html/forums/includes/functions_file.php on line 54
Fatal error: imagecreatetruecolor(): requires GD 2.0 or later in /var/www/html/forums/includes/functions_file.php on line 57
----------- end error msg ---------------
-- line 44 -- $width_factor = $w / $maxattachwidth;
-- line 45 -- $height_factor = $h / $maxattachheight;
-- line 53 -- $nw = round($w / $height_factor);
-- line 54 -- $nh = round($h / $height_factor);
-- line 57 -- $ni=imagecreatetruecolor($nw,$nh);
Be sure to restart your webserver and besure that php isn't complied with GD into it because then it will not run your newer version of GD... instead recompile PHP making sure that it points to your current version of GD... as far as the other errors they are just values that were overlooked when preparing the hack...
to mini: try to test for GD2 within the script with a function check on imagecreatetruecolor and if it fails then make it use imagecreate instead because it is compatible with all versions of GD so it will 1) make sure that the forum wont have errors in exchange for uglish images and 2) makes your hack compatible with earlier versions of PHP
Blindchild02
09-05-2004, 10:47 PM
i get this error
Fatal error: Call to undefined function: unsharpmask() in /home2/xamira/public_html/forums/includes/functions_upload.php on line 292
Blindchild02
09-05-2004, 11:51 PM
alrite, adding require_once('./includes/functions_image.php'); worked
johnnyb
09-30-2004, 07:23 PM
I uploaded everything, and modified everything, but the images aren't resized?
calvinnguyen
10-22-2004, 08:31 AM
Designed for: vBulletin 3.0.3 on a Linux server with PHP 4.3.8 and GD 2.0.23. PHP not in safe mode and attachments stored in the database. May work in other cases, but I can't guarantee that.
I had install it, but it didn't work for me.
calvinnguyen
10-22-2004, 10:11 AM
If you have that configuration, it works.
1.Did you get errors, or anything?
2.Do you have your max attachment sizes set in the adminCP to start with?
3.Do you have a php.info file somewhere?
1.
I didn't get anything wrong, but I the size of the photo that attachment is not getting resize.
2. yes I had set the max attachment sizes
3. No, I don't have a php.info file
For set max attachment sizes, if we set it smaller than the photo size, after we attachment to the post , it will be resize to me equal the max attachemt sizes right?
Natch
10-24-2004, 10:16 PM
Actually, there is a vB3 option to allow public viewing of phpinfo()...
Blam Forumz
10-31-2004, 06:27 PM
Didnt work for avatars, everything else i dunno... :(
outlaw621
11-11-2004, 04:54 PM
Using on vBulletin v3.0.3 with safe mode enabled in PHP and is working fine. The only other modification I had to do was to add require_once('./includes/functions_image.php'); to the start of the includes/functions_upload.php file.
Blindchild02
11-11-2004, 08:29 PM
works great at - www.xamira.net since the avatar is on the homepage :) thanks alot!!
lazytown
11-12-2004, 07:37 AM
I modded it slightly so that it resizes any image larger than the file limit or the dimensions limit.. However as stated, it probably does increase load on the server. The other problem is users are uploading photos like crazy now. :)
remlle
11-21-2004, 12:47 PM
any idea when why when I upload an image that is 800k or abovr it fails. no errors just the upload page turns white with no writing on it.
also
in the file you recomended changing uploading to uploading and resizing attachments and I cant find that do you know where I could find that.
Hexemer
11-23-2004, 08:50 PM
Hello,
first, thank you for this nice hack. :)
But, I have a Problem. :disappointed: The uploaded picture is "darker" than the original one.
attachment 1: original
attachment 2: uploaded in my forums
gd version: 2.0.12
Can you help me? :ermm:
remlle
11-23-2004, 09:02 PM
same here.
jarekn
11-25-2004, 06:24 PM
I still get the error That image is too large. The maximum dimensions are 220 by 220
vbulletin 3.0.3
Running on PHP Version 4.3.4
I only modified the functions_upload.php
No other errors are displayed...I can upload smaller images that are with in the 220 by 220 spec.
Hexemer
12-04-2004, 06:44 PM
Hello,
first, thank you for this nice hack. :)
But, I have a Problem. :disappointed: The uploaded picture is "darker" than the original one.
attachment 1: original
attachment 2: uploaded in my forums
gd version: 2.0.12
Can you help me? :ermm:
No solution for this problem? :ermm:
biggkay
12-16-2004, 10:18 PM
Where and how do I do the phrase change? I'm n00b at this. :)
MajorFm.com
12-31-2004, 05:07 PM
Nice hack... thanks...
KTBleeding
12-31-2004, 07:16 PM
I have been looking for this hack..
* KTBleeding will install when he gets off work.
EDIT:
Installed and working fine! I'm so glad I found this hack. ;)
* KTBleeding clicks install
MajorFm.com
01-07-2005, 02:10 PM
Im getting a error on uploading a avatar thats bigger then the dimentions set...
Fatal error: Call to undefined function: remote_filesize() in /usr/local/apache/www/crazyapes/majorfmforum.com/htdocs/forum/includes/functions_upload.php on line 106
magyosha
01-23-2005, 06:38 PM
could not get this working at all
always says the image is to large and makes no attempt to resize ..
checked and double checked all the editing that was needed ... (tryed with profiles & atachments)
running vb 3.0.3 with the latest security fix's applied
attachments stored in the filesystem .. but would not think this would affect the profile pic as they are in the dbase .. and they don't work either ..
Parse error: parse error, unexpected T_ELSE in /home3/nzboards/public_html/forums/includes/functions_upload.php on line 341
That's just trying to upload a gif larger than the dimensions. Same thing happens if I use jpg.
Possibly a typo? Could you post that line and I can compare?
Line 341:
else
:)
Context - lines 321 to 362
if ($imginfo[2] != 1 AND $imginfo[2] != 2 AND $imginfo[2] != 3)
{ // .gif, .jpg, .png
if ($showerrors)
{
@unlink($filename);
if ($incp)
{
print_stop_message('the_uploaded_file_is_not_valid ');
}
else
{
eval(print_standard_error('error_imagenotimage'));
}
}
else
{
return false;
}
}
}
else
{
if (!$vboptions['allowimgsizefailure'])
{
if ($showerrors)
{
@unlink($filename);
if ($incp)
{
print_stop_message('the_uploaded_file_is_not_valid ');
}
else
{
eval(print_standard_error('error_imagenotimage'));
}
}
else
{
return false;
}
}
}
givemeplain
02-06-2005, 05:10 PM
Hey, this works well for me .. but is there a way so that when an image is reduced in size, you can click on it (in post) to view it full size in a new window or something? Thanks.
MrNase
02-23-2005, 07:22 PM
As an update I've completely removed this hack, thenreinstalled itusing the current uploaded files and it worked with 100%success foravatars and attachments. I tested large jpg, png and gifimagesfor the attachments, no errors, no problems. That's withvBulletin3.0.6.
Thank you very much. I updated because some members reported errors which I never got. I really hope these are resolved now :)
John_44
02-28-2005, 07:42 PM
Very nice Hack !
Unfortunatly it doesn´t work for me. No errors until i upload a larger Image -> Then it says Error 500 -> could not execute Script. I´m using the German Provider 1&1 and would apreciate every help possible.
(GD Lib is installed)
John_44
03-08-2005, 08:28 PM
No, it always hapens.
John_44
03-10-2005, 02:39 PM
Ok, i played around with it. Please notice that i know nothing about PHP, but i was able to track down the Problem:
If i change:
if ($width_factor > $height_factor)
{
$nw = round($w / $width_factor);
$nh = round($h / $width_factor);
}
to:
if ($width_factor > $height_factor)
{
$nw = 400 ;
$nh = round($h / $width_factor);
}
it works. 500,600,1000 -> Anything bigger 400 don?t.
I guess that for some reasons ImeageCreateTrueColor don?t like big numbers.. but i have no Ideas why.
The image i used was a Standart jpg with 1600*1200. Size played no role.
I would really apreciate your help on this topic, as i will definitly extend this genius hack !
What i want to add:
-Other extension (.jpeg,.jpe ...)
-File size
Does anybody know if GDlib can read EXIF Data ?
(Yes my English sucks ;))
John_44
03-10-2005, 02:52 PM
Sorry. It works with 450 and 500. But 600 is to mutch. This makes me sick.
(And it is not "ImageCopyResampled". The following line works just fine:
ImageCopyResampled($ni,$im,0,0,0,0,1000,$nh,$w,$h) ; )
John_44
03-10-2005, 04:45 PM
If somebody else has the same Problem: As a workaround i use:
$width_factor = $w / 500;
$height_factor = $h / 500;
if ($width_factor > $height_factor)
{
$nw = round($w / $width_factor);
$nh = round($h / $width_factor);
}
else
{
$nw = round($w / $height_factor);
$nh = round($h / $height_factor);
}
$ni=imagecreatetruecolor($nw,$nh);
ImageCopyResampled($ni,$im,0,0,0,0,$nw,$nh,$w,$h);
UnsharpMask($ni);
John_44
03-10-2005, 07:43 PM
And i found a Bug: If more than one Image is resized, the script returns an error 500. However the first one is still uploaded.
Anybody else with this error ?
nosaj
03-29-2005, 02:02 AM
thanks mini2, installed and working on my vBulletin Version 3.0.7 Forum. :classic:
LiewCF
03-31-2005, 06:20 PM
Great! this hack work for my bloggers forum (http://www.malaysiabloggers.com). There is other similar hack too, but it does not work. :)
Thank you!
JohnBee
04-03-2005, 10:09 AM
I started to install this hack on 3.0.3
but in the functions_file.php I could not find the section that says:
@unlink($attachment);
eval('$error = "' . fetch_phrase('attachbaddimensions', PHRASETYPEID_ERROR) . '";');
$errors[] = array(
'filename' => $attachment_name,
'error' => $error...
is there another portion of code I should look for?
Blam Forumz
04-18-2005, 09:00 PM
for attachments is it possible for them to be clikabkle?
Harley D
04-25-2005, 01:32 AM
No idea on the darker image, I cant reproduce the problem.
I have a PHP Store that has pic resizing, and I've found that gif, jpegs, and pngs.... one of those will darken when resized. try changing the type of file and upload it to see how it renders after being resized.
Harley D
04-25-2005, 01:37 AM
Hello,
first, thank you for this nice hack. :)
But, I have a Problem. :disappointed: The uploaded picture is "darker" than the original one.
attachment 1: original
attachment 2: uploaded in my forums
gd version: 2.0.12
Can you help me? :ermm:
I did some more checking and found that .JPG will darken but .GIF doesn't.
So use paint shop or photo shop to change from a JPG to GIF, this should solve this problem. If it does, please post so other will know if it works.
Razasharp
05-07-2005, 12:25 AM
Excellent hack! *clicks install* Does exactly what is says on the tin :-)
Just a quick question tho, do the 'original' large files automatically get deleted off the server or do we have to do that manually?
Also a note for people using the attachment resizer, you have to 'increase' the sizes in your ACP to let the larger files get uploaded to then be resized. :-)
Razasharp
05-18-2005, 11:28 PM
Sometimes the images shown (JPG) are a bit dark... anyway to get them lighter? :-/
Most users wont know how to conver to gif, so thats not any option really...
Bounce
05-26-2005, 06:06 PM
Uploaded all as per instructions,doesn't seem to be working
Do you need safe mode turned off for this to work...
Uploaded the 2 hacks,no errors or anything but doesn't work :ermm:
Edit: Got the avatar hack working,slight problem same as another user, the pic is slightly darker :rolleyes:
lionslair
06-30-2005, 07:20 AM
Thanks for that wiked hack
kobescoresagain
07-31-2005, 04:02 AM
anyone know if you can intergrate this into vb gallery?
kmike
08-05-2005, 05:41 AM
Excellent hack.
I see a couple of small problems with it though:
it doesn't handle additional image types supported by getimagesize() PHP function, e.g. .SWF, .PSD, and .BMP. First two are probably non-issue, but our forum has .bmp attachments enabled, and this hack will generate an empty resized image for them
a huge image can cause "out of memory" PHP error on ImageCopyResampled() call, and the hack doesn't handle these situations (I think 500 errors cited in this thread are caused exactly by this - check your error logs for PHP errors)
the attachment file size stored in the db is wrong - the stored number is the size of original attachment, not the resized one. the total space occupied by member's attachments will be wrong, which may cause problems if attachment quotas are defined for usergroups
some memory could be freed during script execution by adding ImageDestroy() calls in the proper places
I think UnsharpMask() call is only needed if the attachthumbs option in admin CP set to "Yes - sharpen" (to be consistent with thumbnails handling)
there's no need to mess with "require_once('./includes/functions_image.php');" line at all. The file is only included once, if needed
I've fixed these problems, and also did some code cleanup.
You can uncomment error_log() lines and change email to your actual address to get some idea how this hack performs.
// HACK: auto resize uploaded images
switch ($imginfo[2])
{
case 1:
$im = ImageCreateFromGIF($attachment);
break;
case 2:
$im = ImageCreateFromJPEG($attachment);
break;
case 3:
$im = ImageCreateFromPNG($attachment);
break;
// no way to handle these image types
default:
// error_log("Couldn't resize $attachment ($filesize bytes)", 1, "email@yourdomain.net");
@unlink($attachment);
eval('$error = "' . fetch_phrase('attachbaddimensions', PHRASETYPEID_ERROR) . '";');
$errors[] = array(
'filename' => $attachment_name,
'error' => $error
);
return false;
}
$w = $imginfo[0];
$h = $imginfo[1];
$width_factor = $w / $maxattachwidth;
$height_factor = $h / $maxattachheight;
if ($width_factor > $height_factor)
{
$nw = round($w / $wdth_factor);
$nh = round($h / $wdth_factor);
}
else
{
$nw = round($w / $height_factor);
$nh = round($h / $height_factor);
}
$ni = @ImageCreateTrueColor($nw, $nh);
if ($ni OR !@ImageCopyResampled($ni, $im, 0, 0, 0, 0, $nw, $nh, $w, $h))
{
// failed to resize this image
// error_log("Couldn't resize $attachment ${w}x${h} to ${nw}x${nh} ($filesize bytes)", 1, "email@yourdomain.net");
@unlink($attachment);
eval('$error = "' . fetch_phrase('attachbaddimensions', PHRASETYPEID_ERROR) . '";');
$errors[] = array(
'filename' => $attachment_name,
'error' => $error
);
return false;
}
@ImageDestroy($im);
if (PHP_VERSION != '4.3.2' AND $vboptions['attachthumbs'] == 2)
{
require_once('./includes/functions_image.php');
UnsharpMask($ni);
}
switch ($imginfo[2])
{
case 1:
@ImageGIF($ni, $attachment);
break;
case 2:
@ImageJPEG($ni, $attachment, 70);
break;
case 3:
@ImagePNG($ni, $attachment);
break;
}
@ImageDestroy($ni);
$filesize1 = @filesize($attachment);
// error_log("Resized $attachment ${w}x${h} to ${nw}x${nh} ($filesize to ${filesize1})", 1, "email@yourdomain.net");
$filesize = $filesize1;
// /HACK
mvigod
08-08-2005, 12:41 AM
kmike,
nice fixes. has anyone tested this yet on 3.5 RC2?
thephonemall
08-31-2005, 02:51 PM
I am getting this error when attempting the Profile Pic modification:
Fatal error: Call to undefined function: unsharpmask() in /home/website/forums/includes/functions_upload.php on line 294
EDIT:
Nevermind added
require_once('./includes/functions_image.php');
and it works!
MrNase
10-25-2005, 12:39 PM
Can this one please be ported to vB3.5? :)
lazytown
11-14-2005, 08:41 AM
A port to 3.5 would be VERY useful.
wildondallas
11-26-2005, 05:36 AM
has anyone tested this yet on 3.5 RC2?
I have tested this hack (Geek Auto Avatar Resizer (https://vborg.vbsupport.ru/showthread.php?t=78287))with the 3.5.1 upgrade, and its working perfectly so far. Only tested with IE though...See my post and screenshots here: https://vborg.vbsupport.ru/showthread.php?p=831196#post831196
ConqSoft
11-26-2005, 05:53 AM
As I noted in the other thread, 3.5.x has built in Avatar and Profile Pic resizing, so these hacks are now obsolete. ;)
ConqSoft
11-26-2005, 05:54 AM
As I noted in the other thread, 3.5.x has built in Avatar and Profile Pic resizing, so these hacks are now obsolete. ;)
sgtmaj
01-17-2006, 12:55 AM
As I noted in the other thread, 3.5.x has built in Avatar and Profile Pic resizing, so these hacks are now obsolete. ;)not obsolete for resizing attachments......and I for one would like to see it modified for 3.5.xxx
sgtmaj
01-22-2006, 12:57 AM
I still have yet to find a hack that will automatically resize attachments for version 3.5.xxx.
Anyone know of one out there????
Raydar
02-06-2006, 04:59 PM
Hi,
Can this hack also be used for VB 3.5.3?
Thanks
Reg
mrcake
01-12-2009, 02:41 AM
It's gone. :(
Anybody know if there is a new one that resizes automatically? users are whining... lol
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.