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 50.479.576 Times

Gd Image Creation freeware
Filter: All | Freeware | Demo
 

Gd Image Creation

1 2 3 4 5 > 
Added: August 14, 2006 | Visits: 10.205

GD Graphics Image Creation Library gd is a graphics library. It allows your code to quickly draw images complete with lines, arcs, text, multiple colors, cut and paste from other images, and flood fills, and write out the result as a PNG or JPEG file. This is particularly useful in World Wide Web applications, where PNG and JPEG...

License: Freeware Size: 280 KB Download (1345): GD Graphics Image Creation Library Download

Added: November 17, 2010 | Visits: 1.771

GD::Image::AnimatedGif GD::Image::AnimatedGif is a Perl extension for creating animated gifs with GD. SYNOPSIS use GD::Image::AnimatedGif; # setup the image my $image = GD::Image->new(42,21); my $white = $image->colorAllocate(255,255,255); $image->transparent($white); # setup some font goodies my $fontcolor... Platforms: *nix

License: Freeware Size: 4.1 KB Download (96): GD::Image::AnimatedGif Download

Added: January 12, 2010 | Visits: 1.449

GD::Image::Thumbnail 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 =... Platforms: *nix

License: Freeware Size: 3.07 KB Download (135): GD::Image::Thumbnail Download

Added: February 01, 2010 | Visits: 971

GD::Image::Orientation GD::Image::Orientation is a Perl extension for managing a GD::Images vertical or horizontal orientation (shapewise). SYNOPSIS use GD::Image::Orientation; for(@images) { my $img = GD::Image->new($_) or die $!; $dbh->do("INSERT INTO photogallery.metainfo (Id,Orientation,File) VALUES... Platforms: *nix

License: Freeware Size: 3.07 KB Download (101): GD::Image::Orientation Download

Added: August 07, 2010 | Visits: 748

GD::Image::CopyIFS GD::Image::CopyIFS is a Perl module for fractal-based image copying and resizing. SYNOPSIS # zoom in on an area of an image use GD::Image::CopyIFS; my $width = 64; my $height = 60; my $scale = 4; my $neww = $scale * $width; my $newh = $scale * $height; my $src_file = src.jpeg; my... Platforms: *nix

License: Freeware Size: 21.5 KB Download (95): GD::Image::CopyIFS Download

Added: April 07, 2013 | Visits: 546

PanaChart Script PanaChart is a PHP class for online charts creation using PHP and the GD image manipulation library.It makes it easy to plot several types of charts with less then 10 lines of code.It is suited for any scientific or business web application. Platforms: PHP

License: Freeware Size: 10 KB Download (43): PanaChart Script Download

Added: June 20, 2013 | Visits: 559

PanaChart for Scripts PanaChart is a PHP class for online charts creation using PHP and the GD image manipulation library.It makes it easy to plot several types of charts with less then 10 lines of code.It is suited for any scientific or business web application. Platforms: PHP

License: Freeware Size: 10 KB Download (48): PanaChart for Scripts Download

Added: January 10, 2010 | Visits: 798

GD::SGF GD::SGF is a Perl module to simplify SGF game rendering using GD::Image. SYNOPSIS use Games::Go::SGF2misc::GD; my $image = new Games::Go::SGF2misc::GD(imagesize => 256, boardsize => 19, antialias => 1 ); $image->gobanColor(127,127,127); $image->drawGoban(); $image->placeStone(b,cd);... Platforms: *nix

License: Freeware Size: 102.4 KB Download (89): GD::SGF Download

Added: May 10, 2013 | Visits: 474

PanaChart PanaChart is a PHP class for online charts creation using PHP and the GD image manipulation library. It makes it easy to plot several types of charts with less then 10 lines of code. It is suited for any scientific or business web application. Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (52): PanaChart Download

Added: May 23, 2013 | Visits: 471

ImageMagick Engine Dramatically improve the quality of re-sized images by making WordPress use ImageMagick instead of standard GD image library.Features * Preserve embedded color profile in re-sized image * Automatically recognize custom image sizes * Allow regeneration of existing images (optionally for selected... Platforms: PHP

License: Freeware Size: 10 KB Download (43): ImageMagick Engine Download

Released: December 09, 2010  |  Added: January 19, 2011 | Visits: 840

OSFClone OSFClone is a free, self-booting solution which enables you to create or clone exact raw disk images quickly and independent of the installed operating system. After creating or cloning a disk image, you can mount the image with PassMark OSFMount before conducting analysis with PassMark... Platforms: Windows

License: Freeware Size: 25.98 MB Download (127): OSFClone Download

Released: June 15, 2012  |  Added: June 15, 2012 | Visits: 767

Photomatix HDR Tone Mapping Plug-In for Mac OS HDR (High Dynamic Range) image creation and tone mapping. - Merge of bracketed photographs into a 32-bit HDR image - Automatic alignment of hand-held photographs - Option for reducing chromatic aberrations and noise. - HDR processing through Tone Mapping - Improvements to alignment and Tone... Platforms: Mac

License: Freeware Size: 1.9 MB Download (425): Photomatix HDR Tone Mapping Plug-In for Mac OS Download

Released: December 03, 2012  |  Added: December 03, 2012 | Visits: 528

Skimpy PNG/ASCII/WAVE tools A collection of tools for generating audio and visual (PNG/HTML/WAVE) for use in web sites including CAPTCHA challenges and PNG image creation tools with Javascript mouse tracking support. Platforms: Windows, Mac, Linux

License: Freeware Size: 2.09 MB Download (48): Skimpy PNG/ASCII/WAVE tools Download

Added: April 17, 2013 | Visits: 663

Tournament Bracket This module allows tournament brackets to be created and managed on a Drupal site. The module establishes a new node type - bracket - when installed on a Drupal site.Several different bracket layouts have been implemented, including - single elimination, double elimination, and modified double... Platforms: PHP

License: Freeware Size: 1.07 MB Download (61): Tournament Bracket Download

Added: February 02, 2010 | Visits: 2.405

GD::Tab::Ukulele GD::Tab::Ukulele is a Perl module for Ukulele tab image generator. SYNOPSIS use GD::Tab::Ukulele; my $uk = GD::Tab::Ukulele->new; # print png image print $uk->chord(D#sus4)->png; # get GD::Image instance my $im = $uk->chord(C); print $im->png; # other tab generate... Platforms: *nix

License: Freeware Size: 5.12 KB Download (182): GD::Tab::Ukulele Download

Added: July 10, 2010 | Visits: 1.798

GD::Graph::Thermometer GD::Graph::Thermometer is a Perl module to generate progress graph on the fly. SYNOPSIS use GD::Graph::Thermometer; my $result = GD::Graph::Thermometer->new({ image_path => /path/to/image.png, type => png, goal => 80000, current => 20000, title => Funding the League for the Year ($),... Platforms: *nix

License: Freeware Size: 7.17 KB Download (138): GD::Graph::Thermometer Download

Added: July 16, 2010 | Visits: 874

GD::Convert GD::Convert is a Perl module with additional output formats for GD. SYNOPSIS use GD; use GD::Convert qw(gif=gif_netpbm newFromGif=newFromGif_imagemagick wbmp); # or: require GD::Convert; import GD::Convert; ... $gd->ppm; $gd->xpm; $gd->gif; $gd->wbmp; ... $gd =... Platforms: *nix

License: Freeware Size: 10.24 KB Download (107): GD::Convert Download

Added: March 20, 2010 | Visits: 1.089

GD::Barcode SYNOPSIS ex. CGI use GD::Barcode::UPCE; binmode(STDOUT); print "Content-Type: image/pngnn"; print GD::Barcode->new(EAN13, 123456789012)->plot->png; with Error Check my $oGdBar = GD::Barcode->new(EAN13, 12345678901); die $GD::Barcode::errStr unless($oGdBar); #Invalid Length... Platforms: *nix

License: Freeware Size: 890.88 KB Download (132): GD::Barcode Download

Added: June 13, 2010 | Visits: 1.146

GD::Simple GD::Simple module is a simplified interface to GD library. SYNOPSIS use GD::Simple; # create a new image $img = GD::Simple->new(400,250); # draw a red rectangle with blue borders $img->bgcolor(red); $img->fgcolor(blue); $img->rectangle(10,10,50,50); # draw an empty rectangle with... Platforms: *nix

License: Freeware Size: 256 KB Download (100): GD::Simple Download

Released: June 05, 2014  |  Added: June 24, 2014 | Visits: 1.777

Freemore Audio Video Suite Freemore Audio Video Suite is a free & compact multimedia suite that contains all practical tools you may need in your video/audio/CD DVD/image creation, enhancement, backup & sharing. You don't need to download all FreeMoreSoft products one by one. Download Freemore Audio Video Suite to have all... Platforms: Windows, Windows 7

License: Freeware Size: 30.76 MB Download (502): Freemore Audio Video Suite Download

1 2 3 4 5 >