Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 49.594.838 Times

Image::ParseGIF 0.2

  Date Added: June 25, 2010  |  Visits: 1.088

Image::ParseGIF

Report Broken Link
Printer Friendly Version


Product Homepage
Download (99 downloads)



Image::ParseGIF can parse a GIF image into its compenent parts. SYNOPSIS use Image::ParseGIF; $gif = new Image::ParseGIF ("image.gif") or die "failed to parse: $@n"; # write out a deanimated version, showing only the first frame $gif->deanimate(0); # same again, manually printing each part print $gif->header; print $gif->part(0); print $gif->trailer; # or, without passing scalars around: $gif->print_header; $gif->print_part(0); $gif->print_trailer; # send an animated gif frame by frame # - makes for a progress bar which really means something $gif = new Image::ParseGIF ("progress.gif") or die "failed to parse: $@n"; $gif->print_header; $gif->print_percent(0.00); # starting... do_some_work_stage1(); $gif->print_percent(0.10); # 10% complete do_some_work_stage2(); $gif->print_percent(0.25); # 25% complete do_some_work_stage3(); $gif->print_percent(0.70); # 70% complete do_some_work_stage4(); $gif->print_percent(1.00); # done! $gif->print_trailer; This module parses a Graphics Interchange Format (GIF) image into its component parts. A GIF is essentially made up of one or more images - multiple images typically are used for animated gifs..

Requirements: No special requirements
Platforms: Linux
Keyword: Gif Image Image Imageparsegif Libraries Parse Parsegif Percent Print Programming Work
Users rating: 0/10

License: Freeware Size: 18.43 KB
USER REVIEWS
More Reviews or Write Review


IMAGE::PARSEGIF RELATED
Finance  -  PDFill PDF and Image Writer 8.0
PDFill Image Writer (Printer) is installed as a virtual printer driver and allows you to convert any printable document from any application which supports printing into a standard PNG, JPG, BMP, TIF, or GIF image. The converted image retains...
11.7 MB  
Finance  -  PDFill PDF and Image Writer x64 8.0
PDFill Image Writer (Printer) is installed as a virtual printer driver and allows you to convert any printable document from any application which supports printing into a standard PNG, JPG, BMP, TIF, or GIF image. The converted image retains...
11.7 MB  
Book Collection Managers  -  Convert Image To PDF Tool 1.6.1
Convert Image To PDF Tool is a small Windows application which converts JPG, BMP, PNG, TIF and GIF image formats to PDF document. To convert an image to PDF, select the image file from your computer and click the Convert To PDF button. It converts...
2.6 MB  
Graphic Conversion Tools  -  ASCII Animator 2.0
ASCII Animator is a unique, funny and free software to convert GIF image to animated ASCII art. First, ASCII Animator extracts GIF image into frames, then converts each frames to ASCII art, and encodes the ASCII art into a new animated ASCII...
474.79 KB  
Web Site Promotion  -  Free SWF to GIF Converter 2.0
This software allows you to turn SWF format into animated GIF image. Just load your Flash file and click "Convert"! You will get tiny GIF animation image, which may be used on your site instead of hard Flash. Another advantage of GIF files is...
1.55 MB  
MP3 Players  -  Free Easy Video to GIF Converter 2.4.3
Creating your own animated GIF from a movie, music video or any funny nut shots can be a lot of fun. Animated GIF images can distributed among your friends. Free Easy Video to GIF Converter, which is the most successful and accessible program in...
5.38 MB  
MP3 Tools  -  FM GIF To PDF Converter Free 2.1
Free GIF to PDF Converter is a freeware document conversion utility, document conversion utility, that designed to convert GIF into PDF files. Can convert GIF image format into one PDF document in batch mode. If you need to convert some or...
2.38 MB  
Graphic Conversion Tools  -  PickAx 1.0
PickAx - A Secure Image Browser - you can load, view, print and save JPG, BMP, TIFF, PNG, PCX, TGA and GIF files. You can also convert from any of these file types to the secure Pick Ax file type : PAX. A PAX file is encrypted with a password that...
439 KB  
Multimedia & Graphics  -  GIFQuickMaker 1. 2. 2001
GIF, TIFF, BMP, PNG, JPEG and GIF image transmission combination and GIF animations can be created.
512 KB  
Ad Management  -  Rotating Banner PHP 1.0
It rotates a banner as if it is a GIF image... and on clicking any particular image, it redirects to the URL specified by admin. Also administrator can get the number of hits on each image.
 
NEW DOWNLOADS IN PROGRAMMING, LIBRARIES
Programming  -  Cedalion for Linux 0.2.6
Cedalion is a programming language that allows its users to add new abstractions and define (and use) internal DSLs. Its innovation is in the fact that it uses projectional editing to allow the new abstractions to have no syntactic limitations.
471.04 KB  
Programming  -  Math::GMPf 0.29
Math::GMPf - perl interface to the GMP library's floating point (mpf) functions.
30.72 KB  
Programming  -  Net::Wire10 1.08
Net::Wire10 is a Pure Perl connector that talks to Sphinx, MySQL and Drizzle servers. Net::Wire10 implements the low-level network protocol, alias the MySQL wire protocol version 10, necessary for talking to one of the aforementioned...
30.72 KB  
Programming  -  logilab-common 0.56.2
a bunch of modules providing low level functionnalities shared among some python projects devel Please note that some of the modules have some extra dependencies. For instance, logilab.common.db will require a db-api 2.0 compliant...
174.08 KB  
Programming  -  OpenSSL for linux 1.0.0a
The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a...
3.83 MB  
Libraries  -  wolfSSL 4.0.0
The wolfSSL embedded SSL/TLS library is a lightweight SSL library written in ANSI standard C and targeted for embedded and RTOS environments - primarily because of its small size, speed, and feature set. It is commonly used in standard operating...
3.88 MB  
Libraries  -  EuGTK 4.8.9
Makes it easy to develop good- looking, fast, cross-platform programs that run on Linux, OS X, and Windows. Euphoria is a very fast interpreted/compiled language with straight-forward syntax. EuGTK allows programming in a clean, object-oriented...
10.68 MB  
Libraries  -  Linux User Group Library Manager 1.0
The LUG Library Manager is a project to help Linux User Groups start their own library. A LUG library is helpful to the community at large because it increases access to information, and gives everyone the opportunity to become more knowledgeable.
5.35 KB  
Libraries  -  Module::MakefilePL::Parse 0.12
Module::MakefilePL::Parse is a Perl module to parse required modules from Makefile.PL. SYNOPSIS use Module::MakefilePL::Parse; open $fh, Makefile.PL; $parser = Module::MakefilePL::Parse->new( join("", ) ); $info = $parser->required;...
8.19 KB  
Libraries  -  sqlpp 0.06
sqlpp Perl package is a SQL preprocessor. sqlpp is a conventional cpp-alike preprocessor taught to understand SQL ( PgSQL, in particular) syntax specificities. In addition to the standard #define/#ifdef/#else/#endif cohort, provides also...
10.24 KB