Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 10-13-2004, 03:15 PM   #1
NinjaSteve
Too lazy to set a custom title
 
Industry Role:
Join Date: Dec 2003
Posts: 11,089
Best batch image resizer?

Can anybody recommend a program to batch resize images. Thanks.
__________________
...
NinjaSteve is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 03:18 PM   #2
media
Confirmed Moneymaker
 
media's Avatar
 
Industry Role:
Join Date: Apr 2002
Location: Eugene, OR It's Like Jail, Only with Trees!
Posts: 9,852
Smaller Animals
__________________
I'm here for the violence!
media is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 03:19 PM   #3
Ice
Confirmed User
 
Ice's Avatar
 
Join Date: Nov 2002
Location: Sunny California
Posts: 26,053
thumbsplus
__________________
icq 1904905
Ice is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 03:19 PM   #4
Paul Waters
Confirmed User
 
Paul Waters's Avatar
 
Join Date: Mar 2003
Location: Toronto, Ontario
Posts: 4,402
Irfanview

Freeware!

www.irfanview.com
__________________


Paul
Paul Waters is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 03:20 PM   #5
johndoebob
Confirmed User
 
Join Date: Mar 2004
Posts: 3,405
Arles Image Web Page Creator.
__________________
johndoebob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 03:27 PM   #6
Helix
Confirmed User
 
Helix's Avatar
 
Join Date: Feb 2002
Location: Michigan
Posts: 5,998
Quote:
Originally posted by Paul Waters
Irfanview

Freeware!

www.irfanview.com
Irfanview is such a handy proggy, I am always amazed it's freeware.
__________________
Free jscott !!!
Free OneHungLo !!!
Free Baddog !!!
Helix is online now   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 03:29 PM   #7
NinjaSteve
Too lazy to set a custom title
 
Industry Role:
Join Date: Dec 2003
Posts: 11,089
Thanks! I'll probably take a look at Arles and Irfanview.
__________________
...
NinjaSteve is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 05:04 PM   #8
Jake
Confirmed User
 
Jake's Avatar
 
Join Date: Dec 2001
Location: CO, US
Posts: 3,056
Quote:
Originally posted by johndoebob
Arles Image Web Page Creator.
Yup! That's my vote too! www.digitaldutch.com
__________________
Jake is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 05:07 PM   #9
Yo Adrian
Confirmed User
 
Yo Adrian's Avatar
 
Industry Role:
Join Date: Apr 2002
Location: Phoenix, AZ
Posts: 6,326
Quote:
Originally posted by johndoebob
Arles Image Web Page Creator.
That's what I use, works great
__________________
Adult SEO Partners - Full service Adult SEO Agency serving some of the biggest names in the industry.
Yo Adrian is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 05:10 PM   #10
JSA Matt
So Fucking Banned
 
Join Date: Aug 2003
Location: San Diego, CA
Posts: 5,464
I use Photoshop but check out XAT.. they have always had the fastest image processing programs available.

http://www.xat.com/
JSA Matt is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 05:21 PM   #11
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
i have a php script that will make thumbs. just add all your pics to a directory and go to the index.php file and the images are created on the fly the first time and made into gallery format for you. no programs to intall.. etc
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 05:27 PM   #12
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
PHP Code:
<?PHP

/* 
 * Place this file in a folder that you want thumbnailed
 * This file should be the default page in that folder
 * This file must have privilege to execute
 * The folder must allow writing, chmod 777 *
 * Thumbnails are prefixed with t_ 
 *
 * If the thumbs do not exist, they will be created
 * If the thumbs do exist, they will not be recreated
 * Avi and Mpg files are echoed with a generic image as its thumbnail
 *
 */


$tncount=0;                                         //thumbnail counter
$count=0;                                            //generic counter
$prefix="t_";                                        //thumbnail prefix
$arrayCount=0;                                        //array counter


if ($handle opendir("./")) {
  while (
false !hahahaha ($file readdir($handle))) { 
    
set_time_limit(5);
    if( !
file_exists($prefix.$file) && stristr($file"jpg") && !stristr($file$prefix)){
      
//create thumbs for jpg if thumb doesnt exist
      
$name $file;
      
$OldImage ImageCreateFromJpeg($name);
      
$width imagesx($OldImage);
      
$height imagesy($OldImage);
      
$DEF_TWIDTH 200;
      
$NewThumb ImageCreateTrueColor($DEF_TWIDTH,($DEF_TWIDTH/$width)*$height);
      
ImageCopyResized($NewThumb,$OldImage,0,0,0,0,$DEF_TWIDTH,($DEF_TWIDTH/$width)*$height,$width,$height);
      
ImageJpeg($NewThumb,$prefix $name,75);
      
ImageDestroy($NewThumb);
      
ImageDestroy($OldImage);
      
$tncount++;                                         //counts the number of thumbnails created
    
}
    if(
file_exists($prefix.$file) && !stristr($file"..") && !stristr($file".php") && stristr($file,"jpg")){
      
//display if thumbs ixisT
      
$tempArray[$arrayCount]="<td width=\"200\" bgcolor=\"#225483\" onmouseover=\"javascript:this.bgColor='397DBE'\" onmouseout=\"javascript:this.bgColor='225483'\"><a href=\"".$file."\" target=\"_blank\"><img src=\"" $prefix $file "\" border=\"0\" height=\"150\" alt=\"".(filesize($file)/1000)." Kb\"><br>"$file ."<br> Size: ".(filesize($file)/1000)." Kb</a></td>\n";
      
$tempArrayIndex[$arrayCount]=1;
      
$arrayCount++;
    }
    if(
stristr($file"mpg") || stristr($file"avi")){ //if the file is a movie
      
$tempArray[$arrayCount]="<td width=\"200\" bgcolor=\"#225483\" onmouseover=\"javascript:this.bgColor='397DBe'\" onmouseout=\"javascript:this.bgColor='225483'\"><a href=\"".$file."\" target=\"_blank\"><img src=\"http://www.sinfulvirgins.com/vph.jpg\" border=\"0\"><br>".$file."<br> Size: ".(filesize($file)/1000)." Kb</a></td>\n";
      
$tempArrayIndex[$arrayCount]=0;
      
$arrayCount++;
    }
  }
}
set_time_limit(10);                                      //allows up to 10 seconds to process each thumbnail
closedir($handle);
echo 
"<title>Smokey the bear ! - " $tncount " added, ".($arrayCount)." total</title>\n";
echo 
"<table border=\"0\" cellspacing=\"1\" cellpadding=\"0\"><tr onmouseover=\"javascript:this.bgColor='4077AB'\" onmouseout=\"javascript:this.bgColor=''\">";
$num=20;                                                 //how many images per page (default)<br>
if($_GET['num'] >= 1)
  
$num=$_GET['num'];
$page=1;                                                 //starting page
if($_GET['page'] >= 1)
  
$page=$_GET['page'];
$finalArrayIncr=0;                                        //$finalArrayIncrrrrrr increments $finalArray[] to the next spot throughout both for loops
for($z=0$z<$arrayCount$z++){                            //for loop that puts the images in the $finalArray[] array
  
if($tempArrayIndex[$z]hahahaha1){
    
$finalArray[$finalArrayIncr]=$tempArray[$z];
    
$finalArrayIncr++;
  }
}
for(
$x=0$x<$arrayCount$x++){                        
  if(
$tempArrayIndex[$x]hahahaha0){
    
$finalArray[$finalArrayIncr]=$tempArray[$x];
    
$finalArrayIncr++;
  }
}
if((
$page*$num)-$num $arrayCount)                     
  
$page=1;
for(
$i=0$i<$arrayCount$i++){
  if(
$counthahahaha4){                                
    
$count=0;                                        
    echo 
"</tr><tr>";
  }
  if(
$i <$page*$num && $i >=($page-1)*$num){        
    echo 
$finalArray[$i];                    
    ++
$count;
  }
}
if(
$num<999 && $arrayCount>$num){
  echo 
"<a href=\"./?page=";                                //prints out <<
  
if($page-1<1)                                            //if its already the first page, simply stay on the page
    
echo "1";
  else 
   echo (
$page-1);
  echo 
"&num=".$num."\">&lt;&lt;</a> ";
  
$pg=0;                                                    //page counter, incremented when $i%$numhahahaha0
  
for($i=0$i<$arrayCount$i++)                            //does the page numbering
    
if($i%$numhahahaha0 )
      echo 
"<a href=\"./?page=".++$pg."&num=".$num."\">".$pg."</a> ";
  echo 
"<a href=\"./?page=";                                //prints out >>
  
if($page+1>$pg)                                            //if its already the last page, simply stay on that page
    
echo $pg;
  else 
    echo 
$page+1;
  echo 
"&num=".$num."&sid=".$_GET['sid']."\">&gt;&gt;</a> ";
}
echo 
"<br>Number of images per page: ";                    //sets the number of images displayed per page
echo " <a href=\"./?page=".$page."&num=5&sid="."\">5</a> ";
echo 
" <a href=\"./?page=".$page."&num=10&sid="."\">10</a> ";
echo 
" <a href=\"./?page=".$page."&num=20&sid="."\">20</a> ";
echo 
" <a href=\"./?page=".$page."&num=30&sid="."\">30</a> ";
echo 
" <a href=\"./?page=".$page."&num=40&sid="."\">40</a> ";
echo 
" <a href=\"./?page=".$page."&num=50&sid="."\">50</a> ";
echo 
" <a href=\"./?page=".$page."&num=999&sid="."\">All</a> ";
?>
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 05:30 PM   #13
JSA Matt
So Fucking Banned
 
Join Date: Aug 2003
Location: San Diego, CA
Posts: 5,464
lol smokey
JSA Matt is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-13-2004, 05:32 PM   #14
Tipsy
Confirmed User
 
Join Date: Jul 2001
Location: See sig
Posts: 6,989
Quote:
Originally posted by Helix
Irfanview is such a handy proggy, I am always amazed it's freeware.
Yep. Handy renaming tool too which saves shit loads of time when combined with the resizing.
__________________
Ignorance is never bliss.
Tipsy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.