Main > Free Download Search >

Free sketsa svg editor 6.1 software for linux

sketsa svg editor 6.1

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 371
Glips Graffiti SVG Editor 1.5

Glips Graffiti SVG Editor 1.5


Glips Graffiti SVG Editor is a cross-platform SVG graphics editor. more>>
GLIPS Graffiti editor is a cross-platform SVG graphics editor based on Batik and developed by ITRIS.
Main features:
- Shape tools : rectangles, circles, ellipses, lines, polygons, polylines ;
- Path tools : Bezier curves, conversion to a path, union, subtraction, intersection ;
- Group editing ;
- Basic text support ;
- Images import ;
- Transformations : translate, resize, rotate, skew ;
- Property manager ;
- Resource manager : gradient, patterns, markers ;
- Drag and drop support for colors and resources ;
- Export to png, jpg and tiff formats ;
- Print ;
- DOM viewer ;
- Memory monitor.
Requierments:
- Java VM 1.4.2 or higher.
The GLIPS Graffiti editor is a part of the GLIPS Project that aims to be a PLC cross-platform development environment created and maintained by ITRIS.
Enhancements:
- Many improvements and SCADA features were added.
- Two applications can be found in the distribution: the GLIPS Graffiti application with SCADA support, and one without SCADA support.
- Values of external variables updated through sockets, for example, can modify SVG drawings dynamically.
<<less
Download (4.7MB)
Added: 2007-01-11 License: LGPL (GNU Lesser General Public License) Price:
1034 downloads
IsaViz 2.1

IsaViz 2.1


IsaViz is a visual environment for browsing and authoring Resource Description Framework (RDF) models represented as graphs. more>>
IsaViz is a visual environment for browsing and authoring Resource Description Framework (RDF) models represented as graphs. Since version 2.0, IsaViz can render RDF graphs using GSS (Graph Stylesheets), a stylesheet language derived from CSS and SVG for styling RDF models represented as node-link diagrams. In addition to the Sesame 2.0 implementation of FSL, there is now a Sesame 1.2.2 implementation from Ryan Lee from project Simile.
Main features:
- a 2.5D user interface allowing smooth zooming and navigation in the graph
- creation and editing of graphs by drawing ellipses, boxes and arcs
- RDF/XML, Notation 3 and N-Triple import
- RDF/XML, Notation 3 and N-Triple export, but also SVG and PNG export
<<less
Download (9.46MB)
Added: 2006-07-29 License: (FDL) GNU Free Documentation License Price:
1184 downloads
Peg Solitaire 0.0.1

Peg Solitaire 0.0.1


Peg Solitaire project is a game similar to Hi-Q. more>>
Peg Solitaire project is a game similar to Hi-Q.

It sports a variety of different boards, and crisp and clean SVG graphics.

Initially developed over 6 days using the Anjuta IDE and Glade-2. Lots of code was borrowed from klotksi (gnotski), and some was borrowed from gnobots2.

<<less
Download (0.34MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1032 downloads
SVG Icons 0.3.0

SVG Icons 0.3.0


The SVG Icons project provides SVG icon themes for desktop environments, including KDE and GNOME. more>>
The SVG Icons project provides SVG icon themes for desktop environments, including KDE and GNOME. They provide high rendering quality due to anti-aliasing, and reduce the amount of disk space required.

SVG Icons project has a goal to provide Open-Source reference implementation of SVG icon themes for leading Linux and UNIX Desktop Environments, in particular (but not limited to) KDE3 and GNOME2 Desktop environments.

SVG implementation for icons and other User Interface elements provides better rendering quality (due to extensive usage of anti-aliasing), reduces amount of disk space used, and decreases download time for icon themes over the web.

Developing icons in SVG also dramatically reduces development cycle, and allows to deliver results quickly, in prompted timeframe.
<<less
Download (4.3MB)
Added: 2005-04-25 License: BSD License Price:
960 downloads
wad2svg 0.1

wad2svg 0.1


wad2svg is a tool which draws a map of a Doom level as an SVG graphic. more>>
wad2svg project is a tool which draws a map of a Doom level as an SVG graphic.
A Doom level can be represented by a two-dimensional top-down map, such as that shown on the in-game automap display. Various standalone utilities exist for drawing a map of a Doom level. However no direct utility for creating an SVG map of a Doom level existed, to my knowledge, so I wrote one.
SVG stands for Scalable Vector Graphics, the new standard from the W3C for vector graphics on the Internet. SVG ties in with other web standards, so for instance it would be possible to start with a SVG graphic of a Doom level, and create hyperlinked parts of the image to screenshots (wad2svg doesnt make use of any of this cool stuff itself, what you use the images for is down to you).
wad2svg is designed to be easily extensible to allow a wide range of different level components to be drawn, and command line parameters control which are drawn and options to use.
Main features:
- Drawing walls and openings - this is the default, similar to Dooms automap
- Drawing the nodes - the subdivisions of the level that Doom uses for rendering. Useful for me because I maintain a node building utility, and might be useful to people who have really big levels with visplanes problems.
<<less
Download (0.006MB)
Added: 2006-12-12 License: BSD License Price:
1047 downloads
gTSand 0.1.1

gTSand 0.1.1


Replacement for the GNOMEs folder icons more>>
gTSand 0.1.1 offers you an excellent product which is Mist theme replacement for the GNOMEs folder icons. gTSand is an icon theme similar to the Mist theme and acts as a replacement for GNOMEs folder icons. It is based on gTango theme (some gTango icons in other colors).

Enhancements:

  • Updated "index.theme" for correct working without Gnome Settings Manager
  • Updated some "user-trash.svg" icon colors for better contrast

Requirements: "GNOME" theme


<<less
Added: 2009-02-01 License: Creative Commons Att... Price: FREE
20 downloads
SVG::DOM 2.33

SVG::DOM 2.33


SVG::DOM is a Perl library of DOM (Document Object Model) methods for SVG objects. more>>
SVG::DOM is a Perl library with DOM (Document Object Model) methods for SVG objects.

SVG::DOM provides a selection of methods for accessing and manipulating SVG elements through DOM-like methods such as getElements, getChildren, getNextSibling and so on.

Currently only methods that provide read operations are supported. Methods to manipulate SVG elements will be added in a future release.

SYNOPSIS

my $svg=new SVG(id=>"svg_dom_synopsis", width=>"100", height=>"100");
my %attributes=$svg->getAttributes;

my $group=$svg->group(id=>"group_1");
my $name=$group->getElementName;
my $id=$group->getElementID;

$group->circle(id=>"circle_1", cx=>20, cy=>20, r=>5, fill=>"red");
my $rect=$group->rect(id=>"rect_1", x=>10, y=>10, width=>20, height=>30);
my $width=$rect->getAttribute("width");

my $has_children=$group->hasChildren();
my @children=$group->getChildren();

my $kid=$group->getFirstChild();
do {
print $kid->xmlify();
} while ($kid=$kid->getNextSibling);

my @ancestors=$rect->getParents();
my $is_ancestor=$group->isAncestor($rect);
my $is_descendant=$rect->isDescendant($svg);

my @rectangles=$svg->getElements("rect");
my $allelements_arrayref=$svg->getElements();

...and so on...

<<less
Download (0.050MB)
Added: 2007-04-23 License: Perl Artistic License Price:
915 downloads
SVGSlice 0.13

SVGSlice 0.13


SVGSlice is a simple tool which generates chopped up images from Inkscape SVG drawings. more>>
SVGSlice application can generate chopped up images from Inkscape SVG drawings.

To figure out where to cut, SVGSlice can use Inkscapes built in guides (for simpler, grid-like cuts), or it can use a specially named "slices" layer that contains rectangles that mark areas to slice.

Demo files showing both approaches are included.

<<less
Download (0.005MB)
Added: 2006-04-17 License: GPL (GNU General Public License) Price:
1288 downloads
Chessmonk 0.1

Chessmonk 0.1


Chessmonk is an open source Chess Viewer and Database Tool. more>>
Chessmonk is an open source Chess Viewer and Database Tool.

Currently only PGN viewing is implemented, but that it does well. It features a scalable board with SVG piece graphics, move animation, a game list and a detailed display of the notation, including comments and variations.

Planned features among others are editing, computer analysis, and database queries. Chessmonk is intended to be an easy to use alternative to chess suites like ChessBase or scid.

<<less
Download (0.076MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
671 downloads
TransWhite 2.0

TransWhite 2.0


TransWhite is a simple system status theme. more>>
TransWhite is a simple system status theme.

Also included svg source file with all parts of interface.

Backgrounds for other than 2 filesystems sections also included (to use them You must edit theme file in section karamba, background and mountpoint definitions).

<<less
Download (0.055MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1205 downloads
The Blog Icon 2007.05.18

The Blog Icon 2007.05.18


The Blog Icon package contains a collection of high quality vectorial icons to represent common ideas and actions of the blogosp more>>
The Blog Icon package contains a collection of high quality vectorial icons to represent common ideas and actions of the blogosphere.

They were based on the SVG work from FeedIcons.com. The base button is the same, but mathematically simplified on the XML level. New buttons were added based on other popular icons found on the web or created by myself. Also some redesign was made for new shapes to make the icons look better when exported to smaller image sizes.

By the way, I am not a designer nor an artist. I just know how to use SVG-creation tools as Inkscape or make good XML. Or I just have a blog demanding for these icons. So I’m sure people can contribute better color mixings an outlines. Let me know and lets integrate your ideas into this project in the right way.

Please share alike this icons. They have a Creative Commons license. I appreciate if you can link to my blog when using them.
<<less
Download (1.1MB)
Added: 2007-05-21 License: GPL (GNU General Public License) Price:
887 downloads
SVG-cards 2.0.1

SVG-cards 2.0.1


SVG-cards is a set of playing cards made from pure SVG with all kings, queens, jacks, numbers, jokers, and backs of cards. more>>
SVG-cards is a set of playing cards made from pure SVG with all kings, queens, jacks, numbers, jokers, and backs of cards.
You can use SVG-cards everywhere you like : Web pages, games, the GNOME desktop, the KDE desktop, and so on...
You can print them on your color printer and make real cards or T-shirts.
The kings, queens and jacks are based on the french representation, because I find them beautiful. You can access to each either by rendering the file into a pixmap and clipping each card or by using their name with a DOM interface. All cards are inside a SVG group.
Example :
the king of spade is inside this group :
< g id="king_spade" >
...
< /g >
Names are the following :
black_joker
red_joker
back
{king,queen,jack}_{club,diamond,heart,spade}
{1,2,3,4,5,6,7,8,9,10}_{club,diamond,heart,spade}
Examples :
- the ace of club is 1_club
- the queen of diamond is queen_diamond
Enhancements:
- A bug that prevented SVG cards from being displayed in Firefox and Adobe Illustrator was fixed.
<<less
Download (0.34MB)
Added: 2006-06-30 License: LGPL (GNU Lesser General Public License) Price:
1219 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
Dia 0.96.1

Dia 0.96.1


Dia is designed to be much like the commercial Windows program Visio. more>>
Dia is designed to be much like the commercial Windows program Visio. It can be used to draw many different kinds of diagrams.

Dia project currently has special objects to help draw entity relationship diagrams, UML diagrams, network diagrams, flowcharts, and simple circuits. It is also possible to add support for new shapes by writing simple XML files, using a subset of SVG to draw the shape.

It can load and save diagrams to a custom XML format (gzipped by default, to save space), can export diagrams to EPS or SVG formats and can print diagrams (including ones that span multiple pages).

<<less
Download (6.2MB)
Added: 2007-03-29 License: GPL (GNU General Public License) Price:
1241 downloads
SVG::Parser 1.01

SVG::Parser 1.01


SVG::Parser is a Perl module with XML Parser for SVG documents. more>>
SVG::Parser is a Perl module with XML Parser for SVG documents.

SYNOPSIS

#!/usr/bin/perl -w
use strict;
use SVG::Parser;

die "Usage: $0 n" unless @ARGV;

my $xml;
{
local $/=undef;
$xml=;
}

my $parser=new SVG::Parser(-debug => 1);
my $svg=$parser->parse($xml);
print $svg->xmlify;

and:

#!/usr/bin/perl -w
use strict;
use SVG::Parser qw(SAX=XML::LibXML::Parser::SAX Expat SAX);

die "Usage: $0 n" unless @ARGV;
my $svg=SVG::Parser->new()->parsefile($ARGV[0]);
print $svg->xmlify;

SVG::Parser is an XML parser for SVG Documents. It takes XML as input and produces an SVG object as its output.

SVG::Parser supports both XML::SAX and XML::Parser (Expat) parsers, with SAX preferred by default. Only one of these needs to be installed for SVG::Parser to function.

A list of preferred parsers may be specified in the import list - SVG::Parser will use the first parser that successfully loads. Some basic measures are taken to provide cross-compatability. Applications requiring more advanced parser features should use the relevant parser module directly; see SVG::Parser::Expat and SVG::Parser::SAX

<<less
Download (0.014MB)
Added: 2006-09-20 License: Perl Artistic License Price:
1131 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5