Main > Free Download Search >

Free graphic file formats software for linux

graphic file formats

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5144
g3d Graphic Tools 1.2

g3d Graphic Tools 1.2


g3d Graphic Tools project consists of a XML file format and generic development tools for games. more>>
g3d Graphic Tools project consists of a XML file format and generic development tools for games.
The problem is that often as a games developer you need to work with many 3d editing tools and rendering engines, and there should be an easy and portable way to move objects, levels, etc. around.
By having a common intermediate file format, you only need to write one exporter per tool and one importer per graphics engine. Also, you can develop generic tools which are not tied to any particular engine.
Enhancements:
- Added the skeleton object (beginnings of animation ;)
- Added asset management info in the file header (ie date, time, author, source, description)
- Fixed exporter bugs (3dsmax) relating to heiarchy stuff
<<less
Download (2.3MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
1092 downloads
Audio File Library 0.2.6

Audio File Library 0.2.6


Audio File Library is a uniform API for accessing standard digital audio file formats. more>>
The Audio File Library provides a uniform and elegant API for accessing a variety of audio file formats, such as AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX, and NIST SPHERE. Supported compression formats are currently G.711 mu-law and A-law and IMA and MS ADPCM.

Key goals of the Audio File Library are file format transparency and data format transparency. The same calls for opening a file, accessing and manipulating audio metadata (e.g. sample rate, sample format, textual information, MIDI parameters), and reading/writing sample data will work with any supported audio file format. Likewise, the format of the audio data presented to the application need not be tied to the format of the data contained in the file.

The Audio File Library distributed under the GNU Library General Public License.
<<less
Download (0.36MB)
Added: 2005-04-14 License: LGPL (GNU Lesser General Public License) Price:
1655 downloads
File::Format::RIFF 1.0.1

File::Format::RIFF 1.0.1


File::Format::RIFF is a Perl module to Resource Interchange File Format/RIFF files. more>>
File::Format::RIFF is a Perl module to Resource Interchange File Format/RIFF files.

SYNOPSIS

use File::Format::RIFF;

open( IN, file ) or die "Could not open file: $!";
my ( $riff1 ) = File::Format::RIFF->read( *IN );
close( IN );
$riff1->dump;

my ( $riff2 ) = new File::Format::RIFF( TYPE );
foreach my $chunk ( $riff1->data )
{
next if ( $chunk->id eq LIST );
$riff2->addChunk( $chunk->id, $chunk->data );
}
open( OUT, ">otherfile" ) or die "Could not open file: $!";
$riff2->write( *OUT );
close( OUT );

File::Format::RIFF provides an implementation of the Resource Interchange File Format. You can read, manipulate, and write RIFF files.

CONSTRUCTORS

$riff = new File::Format::RIFF( $type, $data );

Creates a new File::Format::RIFF object. $type is a four character code that identifies the type of this particular RIFF file. Certain types are defined to have a format, specifying which chunks must appear (e.g., WAVE files). If $type is not specified, it defaults to (four spaces). $data must be an array reference containing some number of RIFF lists and/or RIFF chunks. If $data is undef or not specified, then the new RIFF object is initialized empty.

$riff = File::Format::RIFF->read( $fh, $filesize );

Reads and parses an existing RIFF file from the given filehandle $fh. An exception will be thrown if the file is not a valid RIFF file. $filesize controls one aspect of the file format checking -- if $filesize is not specified, then stat will be called on $fh to determine how much data to expect. You may explicitly specify how much data to expect by passing in that value as $filesize. In either case, the amount of data read will be checked to make sure it matches the amount expected. Otherwise, it will throw an exception. If you do not wish it to make this check, pass in undef for $filesize.

Please note, if you wish to read an "in memory" filehandle, such as by doing this: open( $fh, read( $fh, $filesize );

The read constructor may also be used as a method. If used in this manner, then all existing data contained in $riff will be discarded, and replaced by the contents read from $fh.

$riff->write( $fh );

Outputs a properly-formatted RIFF file to the given filehandle $fh.

<<less
Download (0.009MB)
Added: 2007-04-27 License: Perl Artistic License Price:
916 downloads
Text::Graphics 1.0001

Text::Graphics 1.0001


Text::Graphics is a text graphics rendering toolkit. more>>
Text::Graphics is a text graphics rendering toolkit.

This is a toolkit for rendering plain text via an API like that used for graphics rendering in GUI toolkits. This package might be used when you want to do sophisticated rendering of plain text, e.g., for graphing, creating of complex forms for email and fax, and so on.

SYNOPSIS

use Text::Graphics;
my $text = "A text graphics rendering toolkit.n";
my $page = Text::Graphics::Page->new( 20, 10);
my $panel0 = Text::Graphics::BorderedPanel->new( 20, 10);
my $panel1 =
Text::Graphics::FilledBorderedTextPanel->new($text x 3, 25, 12);
$panel0->setBackground("#");
$panel1->setBackground(" ");
$page->add($panel0);
$page->add($panel1, 5, 2);
$page->render();

+-------------------+
|###################|
|####+--------------+
|####|A text graphic|
|####|rendering tool|
|####|text graphics |
|####|toolkit. A tex|
|####|graphics rende|
|####|toolkit. |
|####| |
+----+--------------+

<<less
Download (0.006MB)
Added: 2006-08-28 License: Perl Artistic License Price:
1152 downloads
JpGraph 2.2

JpGraph 2.2


JpGraph is an OO graph drawing class library for PHP. more>>
JpGraph makes it easy to draw both "quick and dirty" graphs with a minimum of code and complex professional graphs which requires a very fine grain control.
The library assigns context sensitive default values for most of the parameters which minimizes the learning curve. The features are there when you need it - they dont get in your way. The JpGraph library also comes wih very extensive documentation.
Main features:
- Web-friendly, average image size for a 300*200 image is around 2K and images are seldomly bigger than 4-5K
- Support for both GD1 and GD2 The library will autodetect which library is installed.
- Automatic generation of client side image maps to make it possible to generate drill-down graphs.
- Advanced interpolation with cubic splines to get smooth curves from just a few data points.
- Advanced support to add text to images with multi-line paragraphs and formatting support in several TTF fonts.
- Support for alpha blending
- has over 200+ built in Country flags
- Support automatic timing of images.
- Supports adding arbitrary lines and filled areas (with patterns) to plots
- Supports several plot types,spider-plots, pie-charts (both 2d and 3d) , scatter-plots, line-plots, filled line-plots, accumulated line-plots, bar plots, accumulated bar plots, grouped bar plots, error plots, line error plots, box plots, stock plots
- Supports advanced Gantt-charts (ex1, ex2)
- Flexible scales, supports text-lin, text-log, lin-lin, lin-log, log-lin and log-log
- Supports integer scale (labels are restricted to integers).
- Supports both PNG, GIF and JPG graphic formats. and can automatically choose the best available graphic format. Note that the available formats are dependent on the specific PHP installation where the library is used.
- Support various layout with a background image behind the plot
- Supports horizontal bar graphs
- Supports scientific plots
- More than 400 named colors
- Several possible axis positions
- Supports caching (with timeout) of generated graphs to lessen burden of a HTTP server.
- Intelligent autoscaling which gravitates towards aesthetical values.
- Fully supports manual scaling, with fine grain control of position of ticks
- Several different fill styles for line plots
- Supports up to two different y-scales, it is possible to have different left and right y-scale and add plots to both
- Supports unlimited number of plots in each graph, makes it easy to compose complex graph which consists of several plot types
- Designed as a flexible OO framework which makes it easy to add new types of plots
- Supports anti-aliasing of lines, more ...
- Supports color-gradient fill for bar graphs
- Supports automatic legend generation with user supplied format.
- Supports both vertical and horizontal grids (with image depth specification)
- Supports both on-the fly image generation and batch processing.
- Includes graph module to make it very easy to draw arbitrary shapes using custom scale on a canvas including Bezier-curves with full support for all the features of JpGraph (including caching and timeout).x
- Barcode generation The professional version includes a Barcode module that makes it easy to generate barcodes in all commonly used symbologies.
- Designed modularly - you dont have to include code which isnt used. JpGraph Architecture Block diagram
- extensive documentation with both a 150 pages tutorial and an extensive class reference.
- ... and many, many more features
Enhancements:
- This release follows the PHP4 version with functionality and defect fixes.
- 7x4 LED-like displays have been added.
- A long-standing issue with user-defined pie colors and legends has been fixed.
- There are various bugfixes.
<<less
Download (4.4MB)
Added: 2007-04-17 License: GPL (GNU General Public License) Price:
933 downloads
 
Other version of JpGraph
JpGraph 1.21Advanced support to add text to images with multi-line paragraphs and formatting support in ... best available graphic format. Note that the available formats are dependent on the specific
License:GPL (GNU General Public License)
Download (4.3MB)
949 downloads
Added: 2007-03-29
Prince for openSUSE 6.0 rev 6

Prince for openSUSE 6.0 rev 6


Prince is a computer program that converts XML and HTML into PDF documents. more>> Prince is a computer program that converts XML and HTML into PDF documents. Prince can read many XML formats, including XHTML and SVG. Prince formats documents according to style sheets written in CSS.
Features
1. Print any XML document
Unlike many other formatters, Prince can print any XML document. Because Prince does not rely on proprietary markup, you have the freedom to use whatever tags are right for you.
2. Strong support for CSS
Prince has strong support for Cascading Style Sheets (CSS). CSS is a widely used style sheet language which has become very popular on the web. It is flexible, easy to learn and simple to use.
3. Comprehensive PDF output
PDF links and bookmarks.
PDF Encryption and Document Security.
PDF compression and font embedding.
4. Powerful Layout Features
Page headers/footers, page numbering and duplex printing.
Tables with automatic layout and running headers/footers.
Multi-column layout, floats and positioned blocks.
Lists with customisable bullets or numbers.
Automatic numbering of lists, headings, sections or figures.
Footnotes, cross-references.
5. Advanced Graphics Support
Prince supports a rich subset of Scalable Vector Graphics (SVG), the format of choice for graphics such as clip-art, diagrams, maps, charts and graphs.
Prince supports the standard image formats (JPEG, PNG, TIFF, GIF), making it easy to embed pictures and photos in your documents.
6. Print XHTML web content
Prince includes a default style sheet for XHTML, the XML language of the World Wide Web. Prince makes it easy to print your web content and produce professional results.
7. Easy integration
Prince has integration modules for most server environments, including Java, ActiveX/COM, ASP, PHP and ColdFusion.
Prince provides a command line interface, allowing it to be called easily from batch files and shell scripts or integrated with other programs to form document publishing pipelines.
Prince also provides a Graphical User Interface.
<<less
Download (3.27MB)
Added: 2009-04-21 License: Freeware Price: Free
187 downloads
SDL::Tool::Graphic 2.1.3

SDL::Tool::Graphic 2.1.3


SDL::Tool::Graphic is a module for zooming and rotating SDL::Surface objects. more>>
SDL::Tool::Graphic is a module for zooming and rotating SDL::Surface objects.

METHODS

zoom ( surface, xzoom, yzoom, smooth )

SDL::Tool::Graphic::zoom scales a SDL::Surface along the two axis independently.

rotoZoom ( surface, angle, zoom, smooth )

SDL::Tool::Graphic::rotoZoom rotates and fixed axis zooms a SDL::Surface.

grayScale ( surface )

SDL::Tool::Graphic::grayScale rotates and fixed axis zooms a SDL::Surface.

invertColor ( surface )

SDL::Tool::Graphic::invertColor inverts the color of a .

<<less
Download (0.76MB)
Added: 2006-07-28 License: Perl Artistic License Price:
1187 downloads
PHPFinance 0.6

PHPFinance 0.6


PHPFinance is a Web-based financial management program that can be used for finance managing, administration. more>>
PHPFinance is a Web-based financial management program that can be used for finance managing, administration, and control using a database.
PHPFinance allows for statisitics, predictions, and management, and also shows procentage and progress graphs of income and expenses data.
Enhancements:
- fixed database enable bug
- improved and fixed progress graphic
- improved and fixed comparative graphic
- added graphics size config option
- added date completion config option
- enforced password check
- made the program globals independent
- added number format config option
<<less
Download (0.053MB)
Added: 2006-05-01 License: GPL (GNU General Public License) Price:
1276 downloads
Format on Save 1.1.0

Format on Save 1.1.0


Format on Save is a Eclipse plugin to automatically organizes imports and formats code when saving a Java editor. more>>
Format on Save is a Eclipse plugin to automatically organizes imports and formats code when saving a Java editor.

This is the exact equivalent as doing Ctrl-Shift-O, Ctrl-Shift-F before saving. New features: - Sort Members and Correct Indentation - preference page to configure defaults

<<less
Download (0.051MB)
Added: 2006-09-13 License: GPL (GNU General Public License) Price:
1138 downloads
Prince for Linux 6.0 rev 6

Prince for Linux 6.0 rev 6


Prince is a computer program that converts XML and HTML into PDF documents. more>> Prince is a computer program that converts XML and HTML into PDF documents. Prince can read many XML formats, including XHTML and SVG. Prince formats documents according to style sheets written in CSS.
Features
1. Print any XML document
Unlike many other formatters, Prince can print any XML document. Because Prince does not rely on proprietary markup, you have the freedom to use whatever tags are right for you.
2. Strong support for CSS
Prince has strong support for Cascading Style Sheets (CSS). CSS is a widely used style sheet language which has become very popular on the web. It is flexible, easy to learn and simple to use.
3. Comprehensive PDF output
PDF links and bookmarks.
PDF Encryption and Document Security.
PDF compression and font embedding.
4. Powerful Layout Features
Page headers/footers, page numbering and duplex printing.
Tables with automatic layout and running headers/footers.
Multi-column layout, floats and positioned blocks.
Lists with customisable bullets or numbers.
Automatic numbering of lists, headings, sections or figures.
Footnotes, cross-references.
5. Advanced Graphics Support
Prince supports a rich subset of Scalable Vector Graphics (SVG), the format of choice for graphics such as clip-art, diagrams, maps, charts and graphs.
Prince supports the standard image formats (JPEG, PNG, TIFF, GIF), making it easy to embed pictures and photos in your documents.
6. Print XHTML web content
Prince includes a default style sheet for XHTML, the XML language of the World Wide Web. Prince makes it easy to print your web content and produce professional results.
7. Easy integration
Prince has integration modules for most server environments, including Java, ActiveX/COM, ASP, PHP and ColdFusion.
Prince provides a command line interface, allowing it to be called easily from batch files and shell scripts or integrated with other programs to form document publishing pipelines.
Prince also provides a Graphical User Interface.
<<less
Download (3.65MB)
Added: 2009-04-19 License: Freeware Price: Free
188 downloads
GD Graphics Library 2.0.35

GD Graphics Library 2.0.35


Gd is a graphics library. more>>
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 are two of the formats accepted for inline images by most browsers.

In gd 1.0, it stood for "gif draw." After the Unisys patent on the LZW compression used in GIF came to light and GIF support was dropped, it did not officially stand for anything, but lets just say "graphics draw" and leave it at that. (GIF support is back, thanks to the expiration of the patent, but gd can draw much more than GIFs.)

This is a quick install guide:

1. Type ./configure
2. Type make install
<<less
Download (1.2MB)
Added: 2007-06-22 License: GPL (GNU General Public License) Price:
860 downloads
SVG::Graph 0.01

SVG::Graph 0.01


SVG::Graph is a Perl module to visualize your data in Scalable Vector Graphics (SVG) format. more>>
SVG::Graph is a Perl module to visualize your data in Scalable Vector Graphics (SVG) format.

SYNOPSIS

use SVG::Graph;
use SVG::Graph::Data;
use SVG::Graph::Data::Datum;

#create a new SVG document to plot in...
my $graph = SVG::Graph->new(width=>600,height=>600,margin=>30);

#and create a frame to hold the data/glyphs
my $frame = $graph->add_frame;

#lets plot y = x^2
my @data = map {SVG::Graph::Data::Datum->new(x=>$_,y=>$_^2)}
(1,2,3,4,5);
my $data = SVG::Graph::Data->new(data => @data);

#put the xy data into the frame
$frame->add_data($data);

#add some glyphs to apply to the data in the frame
$frame->add_glyph(axis, #add an axis glyph
x_absolute_ticks => 1, #with ticks every one
#unit on the x axis
y_absolute_ticks => 1, #and ticks every one
#unit on the y axis

stroke => black, #draw the axis black
stroke-width => 2, #and 2px thick
);

$frame->add_glyph(scatter, #add a scatterplot glyph
stroke => red, #the dots will be outlined
#in red,
fill => red, #filled red,
fill-opacity => 0.5, #and 50% opaque
);

#print the graphic
print $graph->draw;

SVG::Graph is a suite of perl modules for plotting data. SVG::Graph currently supports plots of one-, two- and three-dimensional data, as well as N-ary rooted trees. Data may be represented as:

Glyph Name Dimensionality supported
1d 2d 3d tree
--------------------------------------------------------
Axis x
Bar Graph x
Bubble Plot x
Heatmap Graph x
Line Graph x
Pie Graph x
Scatter Plot x
Spline Graph x
Tree x

SVG::Graph 0.01 is a pre-alpha release. Keep in mind that many of the glyphs are not very robust.

<<less
Download (0.086MB)
Added: 2006-08-29 License: Perl Artistic License Price:
1155 downloads
GraphMonkey 1.7

GraphMonkey 1.7


GraphMonkey is a GTK#-based graphic calculator. more>>
GraphMonkey is a GTK#-based graphic calculator.

This software is written in C# with GTK#.The goal is to obtain a very simple and fast graphic calculator for mono. Its cross-platform: it works on GNU/Linux and Windows.
the software is under the gpl license.

<<less
Download (0.015MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
1053 downloads
Prince for Red Hat Enterprise Linux 6.0 rev 6

Prince for Red Hat Enterprise Linux 6.0 rev 6


Prince is a computer program that converts XML and HTML into PDF documents. more>> Prince is a computer program that converts XML and HTML into PDF documents. Prince can read many XML formats, including XHTML and SVG. Prince formats documents according to style sheets written in CSS.
Features
1. Print any XML document
Unlike many other formatters, Prince can print any XML document. Because Prince does not rely on proprietary markup, you have the freedom to use whatever tags are right for you.
2. Strong support for CSS
Prince has strong support for Cascading Style Sheets (CSS). CSS is a widely used style sheet language which has become very popular on the web. It is flexible, easy to learn and simple to use.
3. Comprehensive PDF output
PDF links and bookmarks.
PDF Encryption and Document Security.
PDF compression and font embedding.
4. Powerful Layout Features
Page headers/footers, page numbering and duplex printing.
Tables with automatic layout and running headers/footers.
Multi-column layout, floats and positioned blocks.
Lists with customisable bullets or numbers.
Automatic numbering of lists, headings, sections or figures.
Footnotes, cross-references.
5. Advanced Graphics Support
Prince supports a rich subset of Scalable Vector Graphics (SVG), the format of choice for graphics such as clip-art, diagrams, maps, charts and graphs.
Prince supports the standard image formats (JPEG, PNG, TIFF, GIF), making it easy to embed pictures and photos in your documents.
6. Print XHTML web content
Prince includes a default style sheet for XHTML, the XML language of the World Wide Web. Prince makes it easy to print your web content and produce professional results.
7. Easy integration
Prince has integration modules for most server environments, including Java, ActiveX/COM, ASP, PHP and ColdFusion.
NOTE:
The Link 1 for Red Hat Enterprise Linux 4
The Link 2 for Red Hat Enterprise Linux 3
<<less
Download (3.63MB)
Added: 2009-04-23 License: Freeware Price: Free
194 downloads
Linux graphical bootsplash 3.1.6-2.6.21

Linux graphical bootsplash 3.1.6-2.6.21


Linux graphical bootsplash is a themable bootsplash which uses JPEG pictures. more>>
Linux graphical bootsplash allows you to use custom graphics during early system startup. It makes it possible to place a nice graphic behind or above the kernel boot messages.
Linux graphical bootsplash hooks into the fbcon layer and, if activated, searches the initial ramdisk for a JPEG picture to show.
On any output operations to the console, it takes care of painting a margin around your text and a background picture behind the text with a set of special cfb functions.
Main features:
- Nice graphics (JPEG)
- Antialiased text rendering (TrueType)
- Animations (MNG)
- Progress Bar
- Display of boot messages above or below a graphic. ("verbose" and "silent" modes)
- Fully themeable
Enhancements:
- The bootsplash patch was updated to apply cleanly against Linux kernel 2.6.21.
<<less
Download (0.10MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
926 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5