movie thumbnail
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 473
GD::Image::Thumbnail 0.02
GD::Image::Thumbnail is a Perl extension for creating thumbnailed images with GD. more>>
GD::Image::Thumbnail is a Perl extension for creating thumbnailed images with GD.
SYNOPSIS
use GD::Image::Thumbnail;
my $img = GD::Image->new(100,20);
my $thm = $img->thumbnail; # same as { factor => 0.20 }
my $thm = $img->thumbnail($n); # same as { side => $n }
my $thm = $img->thumbnail({ factor => 0.25 });
my $thm = $img->thumbnail({ factor => 0.25, small => 1 });
my $thm = $img->thumbnail({ side => $n });
my $thm = $img->thumbnail({ side => $n, small => 1 });
my $thm = $img->thumbnail({ w => $w });
my $thm = $img->thumbnail({ h => $h });
my $thm = $img->thumbnail({ w => $w, h => $h });
my $thm = $img->thumbnail({ w => $w, small => 1 });
my $thm = $img->thumbnail({ h => $h, small => 1 });
my $thm = $img->thumbnail({ w => $w, h => $h, small => 1 });
thumb() ^
thumb() is shortcut for thumbnail() - useful for people who like to bite their nails :)
$img->thumbnail(@thm_args)
and
$img->thumb(@thm_args);
are doing the same thing
OPTIONS
factor => $n
This makes a thumbnail $n (0.20 by default) times the size of the original. Only a two decimal place number between 0 and 1 are allowed. If a factor is given side, h, and w are all ignored
side => $n
Makes the side that will result in a larger thumbnail $n pixels (or opposite if small => 1). If side is given then h and w are ignored.
w => $x and h => $y
You can specify one or both of these. If only one is given it makes that side that dimention. If you specify both, the side that will result in a larger thumbnail (based on the images orientation and *not* the values of w and h if different), is used (or opposite if small => 1).
small => 1
If true make the images the smallest possible. This will round down instead of up when rounding is necessary and will help decide which side gets set to the given value.
$img->thumbnail(10); # 100 x 25 image becomes 40 x 10
$img->thumbnail({ side => 10, small => 1}); # 100 x 25 image becomes 10 x 2
resample => 1
If true use copyResampled() instead of copyResized() See GDs documentation about the difference. This can also be turned on by specifying a true value as the second argument:
$img->thumbnail($n, 1);
$img->thumbnail({ factor => $n }, 1);
<<lessSYNOPSIS
use GD::Image::Thumbnail;
my $img = GD::Image->new(100,20);
my $thm = $img->thumbnail; # same as { factor => 0.20 }
my $thm = $img->thumbnail($n); # same as { side => $n }
my $thm = $img->thumbnail({ factor => 0.25 });
my $thm = $img->thumbnail({ factor => 0.25, small => 1 });
my $thm = $img->thumbnail({ side => $n });
my $thm = $img->thumbnail({ side => $n, small => 1 });
my $thm = $img->thumbnail({ w => $w });
my $thm = $img->thumbnail({ h => $h });
my $thm = $img->thumbnail({ w => $w, h => $h });
my $thm = $img->thumbnail({ w => $w, small => 1 });
my $thm = $img->thumbnail({ h => $h, small => 1 });
my $thm = $img->thumbnail({ w => $w, h => $h, small => 1 });
thumb() ^
thumb() is shortcut for thumbnail() - useful for people who like to bite their nails :)
$img->thumbnail(@thm_args)
and
$img->thumb(@thm_args);
are doing the same thing
OPTIONS
factor => $n
This makes a thumbnail $n (0.20 by default) times the size of the original. Only a two decimal place number between 0 and 1 are allowed. If a factor is given side, h, and w are all ignored
side => $n
Makes the side that will result in a larger thumbnail $n pixels (or opposite if small => 1). If side is given then h and w are ignored.
w => $x and h => $y
You can specify one or both of these. If only one is given it makes that side that dimention. If you specify both, the side that will result in a larger thumbnail (based on the images orientation and *not* the values of w and h if different), is used (or opposite if small => 1).
small => 1
If true make the images the smallest possible. This will round down instead of up when rounding is necessary and will help decide which side gets set to the given value.
$img->thumbnail(10); # 100 x 25 image becomes 40 x 10
$img->thumbnail({ side => 10, small => 1}); # 100 x 25 image becomes 10 x 2
resample => 1
If true use copyResampled() instead of copyResized() See GDs documentation about the difference. This can also be turned on by specifying a true value as the second argument:
$img->thumbnail($n, 1);
$img->thumbnail({ factor => $n }, 1);
Download (0.003MB)
Added: 2007-04-24 License: Perl Artistic License Price:
914 downloads
GD::Thumbnail 1.01
GD::Thumbnail is a thumbnail maker for GD. more>>
GD::Thumbnail is a thumbnail maker for GD.
SYNOPSIS
use GD::Thumbnail;
my $thumb = GD::Thumbnail->new;
my $raw = $thumb->create(test.jpg, 80, 2);
my $mime = $thumb->mime;
warn sprintf "Dimension: %sx%sn", $thumb->width, $thumb->height;
open IMG, ">thumb.$mime" or die "Error: $!";
binmode IMG;
print IMG $raw;
close IMG;
or
use CGI qw(:standard);
use GD::Thumbnail;
my $thumb = GD::Thumbnail->new;
my $raw = $thumb->create(test.jpg, 80, 2);
my $mime = $thumb->mime;
binmode STDOUT;
print header(-type => "image/$mime");
print $raw;
This a thumbnail maker. Thumbnails are smaller versions of the original image/graphic/picture and are used for preview purposes, where bigger images can take a long time to load. They are also used in image galleries to preview a lot of images at a time.
This module also has the capability to add information strips about the original image. Original images size (in bytes) and resolution & mime type can be added to the thumbnails upper and lower parts. This feature can be useful for web software (image galleries or forums).
This is a Yet Another type of module. There are several other thumbnail modules on CPAN, but they simply dont have the features I need, so this module is written to increase the thumbnail population on CPAN.
The module can raise an exception if something goes wrong. So, you may have to use an eval block to catch them.
<<lessSYNOPSIS
use GD::Thumbnail;
my $thumb = GD::Thumbnail->new;
my $raw = $thumb->create(test.jpg, 80, 2);
my $mime = $thumb->mime;
warn sprintf "Dimension: %sx%sn", $thumb->width, $thumb->height;
open IMG, ">thumb.$mime" or die "Error: $!";
binmode IMG;
print IMG $raw;
close IMG;
or
use CGI qw(:standard);
use GD::Thumbnail;
my $thumb = GD::Thumbnail->new;
my $raw = $thumb->create(test.jpg, 80, 2);
my $mime = $thumb->mime;
binmode STDOUT;
print header(-type => "image/$mime");
print $raw;
This a thumbnail maker. Thumbnails are smaller versions of the original image/graphic/picture and are used for preview purposes, where bigger images can take a long time to load. They are also used in image galleries to preview a lot of images at a time.
This module also has the capability to add information strips about the original image. Original images size (in bytes) and resolution & mime type can be added to the thumbnails upper and lower parts. This feature can be useful for web software (image galleries or forums).
This is a Yet Another type of module. There are several other thumbnail modules on CPAN, but they simply dont have the features I need, so this module is written to increase the thumbnail population on CPAN.
The module can raise an exception if something goes wrong. So, you may have to use an eval block to catch them.
Download (0.025MB)
Added: 2006-08-25 License: Perl Artistic License Price:
1158 downloads
imdb-thumbnailer 0.7.3
A video thumbnailer that sets film covers as thumbnails. more>>
imdb-thumbnailer 0.7.3 offers you a powerful and convenient video thumbnailer that sets film covers as thumbnails. This is a video thumbnailer that searches imdb for covers based on the file names. It works for movies in the specified paths (recursively). For the rest of the cases or if no cover is found the default thumbnailer is used.
Enhancements:
- Fixed: Not working recursively
- Fixed: Wrong version number
Requirements: ImageMagick
<<less Added: 2009-02-14 License: GPL Price: FREE
29 downloads
mOEvIEs 1.15-STABLE
mOEvIEs is a low-dependency movie database program. more>>
mOEvIEs is a low-dependency movie database program.
mOEvIEs is easy to use, and doesnt require a database server to be installed like most programs do.
<<lessmOEvIEs is easy to use, and doesnt require a database server to be installed like most programs do.
Download (0.045MB)
Added: 2006-11-18 License: GPL (GNU General Public License) Price:
1071 downloads
Movie Mapper 0.4
Movie Mapper project is a small program for indexing movie collections. more>>
Movie Mapper project is a small program for indexing movie collections.
Movie Mapper is a small program for indexing movie collections. It browses given directory trees, searching for text files that contain IMDB URLs.
These URLs are used to generate database entries for movies.
Movie Mapper can also be used for offline indexing by creating text files that contain offline movie titles.
It tries to find matches from IMDB for those titles listed in the text files.
<<lessMovie Mapper is a small program for indexing movie collections. It browses given directory trees, searching for text files that contain IMDB URLs.
These URLs are used to generate database entries for movies.
Movie Mapper can also be used for offline indexing by creating text files that contain offline movie titles.
It tries to find matches from IMDB for those titles listed in the text files.
Download (0.009MB)
Added: 2007-02-01 License: GPL (GNU General Public License) Price:
996 downloads
jMovie 0.2
jMovie is a movie collection manager that simplifies the maintenance of your collection. more>>
jMovie is a movie collection manager that simplifies the maintenance of your collection.
jMovie project allows you to view information about each one of your movies, obtaining its data from internet movie data sources, downloading it to your machine so you will be able to do further queries offline.
Moreover, local data can be stored in different places, like memory, local hard disk, databases, etc.
<<lessjMovie project allows you to view information about each one of your movies, obtaining its data from internet movie data sources, downloading it to your machine so you will be able to do further queries offline.
Moreover, local data can be stored in different places, like memory, local hard disk, databases, etc.
Download (0.95MB)
Added: 2006-04-28 License: GPL (GNU General Public License) Price:
1280 downloads
Thumbnail AutoIndex 2.0
Thumbnail AutoIndex is a thumbnail index generation script designed to be a companion to mod_autoindex for Apache. more>>
Thumbnail AutoIndex is a thumbnail index generation script designed to be a companion to mod_autoindex for Apache. Thumbnail AutoIndex script generates a thumbnail index of images contained in a directory that is much like mod_autoindex generated indexes.
Enhancements:
- fixed PHP5 MIME detection
- fixed PHP5 If-Modified-Since handling
- Etag support
- fixed script real path detection
- cosmetics
<<lessEnhancements:
- fixed PHP5 MIME detection
- fixed PHP5 If-Modified-Since handling
- Etag support
- fixed script real path detection
- cosmetics
Download (0.005MB)
Added: 2006-04-24 License: GPL (GNU General Public License) Price:
1287 downloads
MeDs Movie Manager 2.5.4.1
MeDs Movie Manager is an easy-to-use and customizable movie manager. more>>
MeDs Movie Manager is a simple to use, yet customizable, movie manager. MeDs Movie Manager project gets the movies info from IMDb, and episode info from tv.com.
Main features:
- Unlimited size movie list
- Add, Edit, Delete database functions
- Episode functionality for series
- Quick movie filter
- Advanced search options
- List functionality
- Multi-add function (Search directories for files)
- Obtain AVI / OGM / MPEG and DVD (ifo) file info
- Automatic download of movie info from IMDb (Proxy support)
- Automatic download of episode info from tv.com (Proxy support)
- Import function (3 modes - Simple text, excel and extreme movie manager database (Tested with v4.5)
- Export to HTML (2 modes - full and simple)
- Customizable movie additional info
- Customizable database queries for statistics
- GIF, PNG and JPG cover support
- Changeable layout (Look And Feels)
<<lessMain features:
- Unlimited size movie list
- Add, Edit, Delete database functions
- Episode functionality for series
- Quick movie filter
- Advanced search options
- List functionality
- Multi-add function (Search directories for files)
- Obtain AVI / OGM / MPEG and DVD (ifo) file info
- Automatic download of movie info from IMDb (Proxy support)
- Automatic download of episode info from tv.com (Proxy support)
- Import function (3 modes - Simple text, excel and extreme movie manager database (Tested with v4.5)
- Export to HTML (2 modes - full and simple)
- Customizable movie additional info
- Customizable database queries for statistics
- GIF, PNG and JPG cover support
- Changeable layout (Look And Feels)
Download (19MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
845 downloads
movieinfo 0.1
movieinfo is a Perl module created to dump information about movie file(s). more>>
movieinfo is a Perl module created to dump information about movie file(s).
USAGE
movieinfo < movie files[s] >
Largely based around mplayers midentify script this will dump information about various formats of movie file (depending on what codecs you have installed for mplayer).
<<lessUSAGE
movieinfo < movie files[s] >
Largely based around mplayers midentify script this will dump information about various formats of movie file (depending on what codecs you have installed for mplayer).
Download (0.019MB)
Added: 2007-05-29 License: Perl Artistic License Price:
879 downloads
lzMovieDB 1.1
lzMovieDB provides a Web-based database for movies and series. more>>
lzMovieDB provides a Web-based database for movies and series.
lzMovieDB is an PHP/MySQL Database script to sort and archive movies and series.
It grabs the user rating and movie cover from IMDB (Internet Movie Database => www.imdb.com).
Main features:
- Categorys
- show newest entrys
- search function
- sort by genre
- two languages (english,german)
- templates
- IMDB rating
- IMDB cover
<<lesslzMovieDB is an PHP/MySQL Database script to sort and archive movies and series.
It grabs the user rating and movie cover from IMDB (Internet Movie Database => www.imdb.com).
Main features:
- Categorys
- show newest entrys
- search function
- sort by genre
- two languages (english,german)
- templates
- IMDB rating
- IMDB cover
Download (0.066MB)
Added: 2007-04-18 License: GPL (GNU General Public License) Price:
923 downloads
Movie Critics .0.0
Latest Movies and Movie critics on criticsmob.com for your mobile phones. Latest Movies and Movie critics, celebrities and comments... more>> <<less
Download (1152KB)
Added: 2009-04-13 License: Freeware Price: Free
193 downloads
vMovieDB 0.1.5
vMovieDB project is a movies collection manager for GNOME desktop. more>>
vMovieDB project is a movies collection manager for GNOME desktop. Its GTK+ 2.x, application writen on C, created according to Gnome-HIG standarts, vMovieDB fits perfectly in GNOME Desktop Enviroment.
Main features:
- Play selected movie with your favorite video player.
- Manage various types of information for your movies: title, year, media type, quality, subtitles, location, genre and movie image.
- Genre editor.
- Export your movies to html document.
- Export movies to text document.
- Search for selected movie on ImDB.com.
vMovieDB have fast and light database based on XML.
<<lessMain features:
- Play selected movie with your favorite video player.
- Manage various types of information for your movies: title, year, media type, quality, subtitles, location, genre and movie image.
- Genre editor.
- Export your movies to html document.
- Export movies to text document.
- Search for selected movie on ImDB.com.
vMovieDB have fast and light database based on XML.
Download (0.36MB)
Added: 2006-09-25 License: GPL (GNU General Public License) Price:
1127 downloads
jMovieBase 0.1.2.14
jMovieBase application is a cross-platform movie collection manager that allows you to organize your own movie collection. more>>
jMovieBase application is a cross-platform movie collection manager that allows you to organize your own movie collection using many jMB features and friendly interface.
<<less Download (0.15MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
801 downloads
3gp movie wizard 1.3
3gp movie wizard is a small perl/kommander script that helps you to convert almost any movie format to 3gp movie. more>>
3gp movie wizard is a small perl/kommander script that helps you to convert almost any movie format to 3gp movie, suitable for watching on the modern mobile phones (tested only on Motorola V360 but should work with any mobile with 3gp support and 176 pixel wide screen).
It should be extremely easy to use, yet offer advanced options such as a good subtitle support and video equalizer.
<<lessIt should be extremely easy to use, yet offer advanced options such as a good subtitle support and video equalizer.
Download (0.13MB)
Added: 2006-02-21 License: GPL (GNU General Public License) Price:
1399 downloads
Movie::Info 0.1
Movie::Info is a Perl module created to get meta data from various format movie files. more>>
SYNOPSIS
my $mi = Movie::Info->new || die "Couldnt find an mplayer to usen";
foreach my $file (@ARGV) {
my %info = $mi->info($file) || warn "Couldnt read info from $filen" && next;
print "$file (WxH) - $info{width}x$info{height}n";
}
Movie::Info is a thin layer around MPlayers --identify command line flag. As such it can only give you as much information as Mplayer is able to give you which is down to the quality and number of codecs you have installed.
MPlayer is available from http://www.mplayerhq.hu/
This module is largely based on the midentify script shipped with MPlayer.
METHODS
new [path to mplayer]
Returns a new Movie::Info instance or undef if it cant find an mplayer binary.
To find a binary it looks in three places - firstly if youve passed in a path to look at it checks there, secondly at the environment variable $MOVIE_INFO_MPLAYER_PATH and then finally it searches your $PATH like the standard which command in Unix.
info < filename >
Returns a hash representing all the meta data we can garner about file.
Returns undef if it cant read the file.
Download (0.019MB)
Added: 2007-05-29 License: Perl Artistic License Price:
883 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above movie thumbnail search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed