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.165.655 Times

Image::Xpm 1.09

  Date Added: July 08, 2010  |  Visits: 818

Image::Xpm

Report Broken Link
Printer Friendly Version


Product Homepage
Download (105 downloads)



Image::Xpm is a Perl module that can load, create, manipulate and save xpm image files. SYNOPSIS use Image::Xpm; my $j = Image::Xpm->new(-file, Camel.xpm); my $i = Image::Xpm->new(-width => 10, -height => 16); my $h = $i->new; # Copy of $i $i->xy(5, 8, red); # Set a colour (& add to palette if necessary) print $i->xy(9, 3); # Get a colour $i->xy(120, 130, #1256DD); $i->xy(120, 130, $i->rgb2colour(66, 0x4D, 31)); $i->vec(24, #808080); # Set a colour using a vector offset print $i->vec(24); # Get a colour using a vector offset print $i->get(-width); # Get and set object attributes $i->set(-height, 15); $i->load(test.xpm); $i->save; # Changing just the palette $i->add_colours(qw(red green blue #123456 #C0C0C0)); $i->del_colour(blue); This class module provides basic load, manipulate and save functionality for the xpm file format. It inherits from Image::Base which provides additional manipulation functionality, e.g. new_from_image(). See the Image::Base pod for information on adding your own functionality to all the Image::Base derived classes. new() my $i = Image::Xpm->new(-file => test.xpm); my $j = Image::Xpm->new(-width => 12, -height => 18); my $k = $i->new; We can create a new xpm image by reading in a file, or by creating an image from scratch (all the pixels are white by default), or by copying an image object that we created earlier. If we set -file then all the other arguments are ignored (since theyre taken from the file). If we dont specify a file, -width and -height are mandatory and -cpp will default to 1 unless specified otherwise. -file The name of the file to read when creating the image. May contain a full path. This is also the default name used for loading and saveing, though it can be overridden when you load or save. -width The width of the image; taken from the file or set when the object is created; read-only. -height The height of the image; taken from the file or set when the object is created; read-only. -cpp Characters per pixel. Commonly 1 or 2, default is 1 for images created by the module; read-only. See the example for how to change an images cpp. -hotx The x-coord of the images hotspot; taken from the file or set when the object is created. Set to -1 if there is no hotspot. -hoty The y-coord of the images hotspot; taken from the file or set when the object is created. Set to -1 if there is no hotspot. -ncolours The number of unique colours in the palette. The image may not be using all of them; read-only. -cindex An hash whose keys are colour names, e.g. #123456 or blue and whose values are the palette names, e.g. , #, etc; read-only. If you want to add more colours to the image itself simply write pixels with the new colours using xy; if you want to add more colours to the palette without necessarily using them in the image use add_colours. -palette A hash whose keys are the palette names, e.g. , #, etc. and whose values are hashes of colour type x colour name pairs, e.g. c => red, etc; read-only. If you want to add more colours to the image itself simply write pixels with the new colours using xy; if you want to add more colours to the palette without necessarily using them in the image use add_colours. -pixels A string of palette names which constitutes the data for the image itself; read-only. -extname The name of the extension text if any; commonly XPMEXT; read-only. -extlines The lines of text of any extensions; read-only. -comments An array (possibly empty) of comment lines that were in a file that was read in; they will be written out although we make no guarantee regarding their placement; read-only. get() my $width = $i->get(-width); my ($hotx, $hoty) = $i->get(-hotx, -hoty); Get any of the objects attributes. Multiple attributes may be requested in a single call. See xy and vec to get/set colours of the image itself. set() $i->set(-hotx => 120, -hoty => 32); Set any of the objects attributes. Multiple attributes may be set in a single call; some attributes are read-only. See xy and vec to get/set colours of the image itself. xy() $i->xy(4, 11, #123454); # Set the colour at point 4,11 my $v = $i->xy(9, 17); # Get the colour at point 9,17 Get/set colours using x, y coordinates; coordinates start at 0. If the colour does not exist in the palette it will be added automatically. When called to set the colour the value returned is characters used for that colour in the palette; when called to get the colour the value returned is the colour name, e.g. blue or #f0f0f0, etc, e.g. $colour = xy($x, $y); # e.g. #123456 $cc = xy($x, $y, $colour); # e.g. ! We dont normally pick up the return value when setting the colour. vec() $i->vec(43, 0); # Unset the bit at offset 43 my $v = $i->vec(87); # Get the bit at offset 87 Get/set bits using vector offsets; offsets start at 0. The offset of a pixel is ((y * width * cpp) + (x * cpp)). The sort of return value depends on whether we are reading (getting) or writing (setting) the colour - see xy for an explanation. rgb2colour() and rgb2color() $i->rgb2colour(0xff, 0x40, 0x80); # Returns #ff4080 Image::Xpm->rgb2colour(10, 20, 30); # Returns #0a141e Convenience class or object methods which accept three integers and return a colour name string. load() $i->load; $i->load(test.xpm); Load the image whose name is given, or if none is given load the image whose name is in the -file attribute. save() $i->save; $i->save(test.xpm); Save the image using the name given, or if none is given save the image using the name in the -file attribute. The image is saved in xpm format. add_colours() and add_colors() $i->add_colours(qw(#C0C0DD red blue #123456)); These are for adding colours to the palette; you dont need to use them to set a pixels colour - use xy for that. Add one or more colour names either as hex strings or as literal colour names. These are always added as type c colours; duplicates are ignored. NB If you just want to set some pixels in colours that may not be in the palette, simply do so using xy since new colours are added automatically. del_colour() and del_color() $i->del_colour(green); Delete a colour from the palette; returns undef if the colour isnt in the palette, false (0) if the colour is in the palette but also in the image, or true (1) if the colour has been deleted (i.e. it was in the palette but not in use in the image)..

Requirements: No special requirements
Platforms: Linux
Keyword: Colour Colours File Or I- Image Imagexpm In The Image Libraries Palette Perl Module Programming Want To Xy You Want To
Users rating: 0/10

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


IMAGE::XPM RELATED
Form Processors  -  Put your app in the System Tray 1.1
This example shows how to put your apps icon in the system tray and have a menu attached to it.
10 KB  
Desktop Utilities  -  Copy file or directory path 0.2
Copy file or directory path is a service menu that can copy the full path of file or directory to klipper.. Download KDE-Apps.org Community Portal for KDE Applications Software Office Multimedia Graphic Network Printing Education Games Development...
 
Libraries  -  OpenOffice::OODoc::Image 2.027
OpenOffice::OODoc::Image is a Perl module for image manipulation methods. The OpenOffice::OODoc::Image class is a derivative of OpenOffice::OODoc::XPath designed for the manipulation of graphics objects contained in documents. It mainly allows...
17.41 KB  
Libraries  -  CAD::Drawing::IO::Image 0.02
CAD::Drawing::IO::Image is a Perl module with output methods for images. Requisite Plug-in Functions See CAD::Drawing::IO for a description of the plug-in architecture. check_type Returns true if $type is "img" or $filename matches one of...
5.12 KB  
Screen Savers  -  All Master in the Higher Realms 2.0
All Master in the Higher Realms is a small, animated screensaver designed with a spiritual theme. When we come into contact with a 'True Teacher' or 'Enlightened Master', it has a 'Quickening'or awakening effect on that same consciousness within...
 
Web Browser Tools  -  Cookie Button in the status bar0.8.9
Cookie Button in the status bar is a Firefox button for easy access to cookie permissions in the status bar. For those who have been asking for cookie button in the status bar. Some features are optional. See Tools -> Extensions/Addons, select...
25.6 KB  
E-Mail Tools  -  Ghost In The Mail 0.5
Ghost In The Mail is an anonymous e-mail client for linux written in C and designed in GTK+ 2. Look at the screenshots below to have a better idea of how does it works. This piece of software allows to send e-mails to any person over the net...
378.88 KB  
Web Browser Tools  -  In The News 0.0.1
In The News is a Firefox extension that highlights text, right-click to see the latest related news stories. Mouse over any of the headlines to see a brief summary of the story. Click on any of the stories to have it open up in a new tab..
3.07 KB  
Home & Leisure  -  Ordinary Heroes: Six Stars in the Window - Mac Multimedia Digital Version for Mac OS 1.0
Download the Mac multimedia digital version of Ordinary Heroes: Six Stars in the Window, the compelling, true story of six brothers serving in World War II. This is history as you've never seen it before! Watch as photos come to life as video!...
624 MB  
Screen Savers  -  Gautama in the Mystical Realms 2.0
Gautama in the Mystical Realms is a small, animated screensaver specially designed to bring some peace to your desktop. Buddhafield is an energy field in which a Buddha matures beings, a pure land, an unworldly world, a paradise on earth, which...
 
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