GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Will pay for a good Imagemagick command (https://gfy.com/showthread.php?t=801043)

Oracle Porn 01-20-2008 02:34 PM

Will pay for a good Imagemagick command
 
I want a good imagemagick command for smart thumbs
icq me

zigx 01-20-2008 03:03 PM

what are u trying to do? maybe someone can help u for free?

ServerGenius 01-20-2008 03:06 PM

/usr/bin/convert "file.ext" -quality 80 -resize 160x120 "thumb.jpg"

Oracle Porn 01-20-2008 03:09 PM

Quote:

Originally Posted by zigx (Post 13674541)
what are u trying to do? maybe someone can help u for free?

just autocrop nice thumbs

ServerGenius 01-20-2008 03:10 PM

How much did I earn? This will generate thumbs from all files in a folder and can also apply filters like sharpen.


Code:

#!/usr/bin/perl

sub read_dir{
        my $dir_path = @ARGV[0];
        my $ext = "\.(gif|jpg|JPG|GIF|jpeg|JPEG)";
        chdir($dir_path);
        my $dir = $dirname;
        opendir (DIR, $dir) or die $!;
        #my @dir = readdir DIR;
        rewinddir(DIR);
        my @imgFiles = grep /$ext/, readdir DIR;
        closedir DIR;
        return @imgFiles;
}

my $th_size = @ARGV[1];
my $mi_size = @ARGV[2];
my $convert_executable = @ARGV[3];

my $th_sharpen = ' ';
my $th_level = ' ';
        # my $th_sharpen = ' -unsharp 1.0x1.0+1.0+0.0 ';
        # // radius x sigma + amount + threshold
        # my $th_level  = ' -level 6,90%,1.0 ';
my $mi_sharpen = ' ';
my $mi_level = ' ';

my $counter = 0;

$dirname = '.';
my @files = &read_dir($dirname);
foreach my $f(@files) {
        if ($counter==10) {
                print(" ");
                $counter=0;
        }
        $fnew = $f;
        $fnew =~ s/\./\.thumb./;
        $fnew = 'thumbs/' . $fnew;
        print ".";
        $counter++;
        system($convert_executable." -size ".($th_size*2)."x".($th_size*2)." -thumbnail ".$th_sharpen.$th_level.$th_size."x".$th_size." '".$f."' '".$fnew."'");
        if ($mi_size!=0) {
                print ":";
                system($convert_executable." -thumbnail ".$mi_sharpen.$mi_level.$mi_size."x".$mi_size." '".$f."' 'medium/".$f."'");
        }


ServerGenius 01-21-2008 02:59 AM

bumperidoo

Oracle Porn 01-21-2008 04:10 AM

i needed one for smart thumbs not that bla bla u provided man give it up.

roly 01-21-2008 05:07 AM

Quote:

Originally Posted by Oracle Porn (Post 13676264)
i needed one for smart thumbs not that bla bla u provided man give it up.


there's gratitude for you

Klen 01-21-2008 05:35 AM

-filter Blackman -modulate 120,102,100 -sharpen 1x1 -enhance

Oracle Porn 01-21-2008 05:53 AM

Quote:

Originally Posted by KlenTelaris (Post 13676354)
-filter Blackman -modulate 120,102,100 -sharpen 1x1 -enhance

I already use this one

-strip -filter Blackman -modulate 110,102,100 -enhance -sharpen 1x1

if someone got a better one icq me or something

RazorSharpe 01-21-2008 06:48 AM

Quote:

Originally Posted by Oracle Porn (Post 13676264)
i needed one for smart thumbs not that bla bla u provided man give it up.

well aren't you an ungrateful little prick! here's wishing you choke on cock cheese ....

polish_aristocrat 01-21-2008 06:49 AM

Quote:

Originally Posted by Oracle Porn (Post 13676381)
I already use this one

-strip -filter Blackman -modulate 110,102,100 -enhance -sharpen 1x1

if someone got a better one icq me or something

I have absolutely no idea what you guys are talking about, but good luck...

ServerGenius 01-21-2008 06:52 AM

Quote:

Originally Posted by Oracle Porn (Post 13676264)
i needed one for smart thumbs not that bla bla u provided man give it up.

hahaha eat a cock and fucking choke on it you ungrateful prick....
I gave you a script that will work with ANYTHING you asshole
Try asking something again and see how much help you will get
idiot :321GFY

donnie 01-21-2008 06:58 AM

Quote:

Originally Posted by ServerGenius (Post 13676523)
hahaha eat a cock and fucking choke on it you ungrateful prick....
I gave you a script that will work with ANYTHING you asshole
Try asking something again and see how much help you will get
idiot :321GFY

That's what you get when you try to help a jew

Oracle Porn 01-21-2008 08:12 AM

Quote:

Originally Posted by ServerGenius (Post 13676523)
hahaha eat a cock and fucking choke on it you ungrateful prick....
I gave you a script that will work with ANYTHING you asshole
Try asking something again and see how much help you will get
idiot :321GFY

wow looks like I hit a nerve there, sorry if I offended you but what you posted wasn't what I was looking for....

Brujah 01-21-2008 10:49 AM

-sharpen 1.5 -contrast -gamma 1.2

dready 01-21-2008 11:32 AM

I use -sharpen 1x1 -despeckle -enhance

The best thumb sites use photoshop, you just can't compare. I'd be curious if you find something nice.

GrouchyAdmin 01-21-2008 11:35 AM

Quote:

Originally Posted by ServerGenius (Post 13674593)
How much did I earn? This will generate thumbs from all files in a folder and can also apply filters like sharpen.

One of these days, I need to teach you shell commands. :thumbsup

I usually just use the Blackman filter, myself, so I have nothing to add that isn't taunting Perly McPerlstein here. :1orglaugh :1orglaugh

ServerGenius 01-21-2008 11:43 AM

Quote:

Originally Posted by GrouchyAdmin (Post 13677512)
One of these days, I need to teach you shell commands. :thumbsup

I usually just use the Blackman filter, myself, so I have nothing to add that isn't taunting Perly McPerlstein here. :1orglaugh :1orglaugh

ok that day I'll teach you howto read ....the first suggestion was a shell
command no? The second one was a script that even idiots can use.....
but it seems that was still out of his league :1orglaugh

GrouchyAdmin 01-21-2008 11:45 AM

Quote:

Originally Posted by ServerGenius (Post 13677550)
ok that day I'll teach you howto read ....the first suggestion was a shell
command no? The second one was a script that even idiots can use.....
but it seems that was still out of his league :1orglaugh

Uh huh.. mister glob directories in perl.

find /path/to/images -name "*.jpg" -name "*.JPG" ... -exec wall I SEE PORN HERE: {} \;

Yeah you best be watchin' out, man. Next time I'm gonna use AWK, baby!

:thumbsup

ServerGenius 01-21-2008 11:48 AM

Quote:

Originally Posted by GrouchyAdmin (Post 13677560)
Uh huh.. mister glob directories in perl.

find /path/to/images -name "*.jpg" -name "*.JPG" ... -exec wall I SEE PORN HERE: {} \;

Yeah you best be watchin' out, man. Next time I'm gonna use AWK, baby!

:thumbsup

Oh No Not AWK :eek7 :thumbsup

GrouchyAdmin 01-21-2008 11:51 AM

Quote:

Originally Posted by ServerGenius (Post 13677570)
Oh No Not AWK :eek7 :thumbsup

d0uD i pUll AwL De PuNCHEZZZzzz!!!!!

ServerGenius 01-21-2008 11:55 AM

Quote:

Originally Posted by GrouchyAdmin (Post 13677588)
d0uD i pUll AwL De PuNCHEZZZzzz!!!!!

I better back down now.....talking 3l|t3 n0w 5c4r35 M3:bowdown

GrouchyAdmin 01-21-2008 11:55 AM

Quote:

Originally Posted by ServerGenius (Post 13677602)
I better back down now.....:bowdown

1 ha><><ed ur g1bs0n allr3ad`/.

ServerGenius 01-21-2008 11:57 AM

Quote:

Originally Posted by GrouchyAdmin (Post 13677604)
1 ha><><ed ur g1bs0n allr3ad`/.

:1orglaugh:1orglaugh:1orglaugh:error:helpme:error


All times are GMT -7. The time now is 02:19 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123