Inkscape 0.44 - Faster, Bigger, Better
bbyakk writes "After 6 months of development, Inkscape 0.44 is out. This version of the
SVG-based vector graphics editor brings improved performance and tons of new features:
Layers dialog, docked color palette, clipping and masking, native PDF export with
transparency, configurable keyboard (including Xara emulation), Outline mode for
complex drawings, innovative 'node sculpting' and lots more. Check out the full
release notes, enjoy the screenshots, or download your
package for Windows, Linux or Mac OS X."
I've really enjoyed watching the progress of this app, along with Scribus and the GIMP. Inkscape has become one of the tools I use day in and day out (especially in conjunction with Scribus) and even though I can run older versions of CorelDraw and Illustrator on my FC5 box, I've really come to value Inkscape even though it doesn't have the collection of power tools that the Windows vector apps have (in all honesty, some of the "power tools" in those other guys are just imagesetter-chokers and you're better off leaving them be).
Now that Krita supports CMYK tiff files (with color management) the day has pretty much dawned in which I no longer have to jump over to my lone remaining Windows box to do some sort of previously-necessary file format conversion.
I love Inkscape. I do CS research, and I use it for illustrations in slides and papers. Gradients, highlights, anti-aliasing and such really make diagrams stand out. It's not any more difficult to work with than Word's or OpenOffice's vector drawing tools, either.
I got my Linux laptop at System76.
Having used Inkscape a little, it seems to introduce a lot of excess code into its files (although it may do it less now). Residue from deleted objects and stuff. It's also difficult to make sure your shapes have good names, although this is a problem with any GUI editor that auto-names objects. If I were producing SVG that I actually wanted to read, I'd hand code it, or at least give the generated code some frequent reviews to make sure it makes sense. Seeing box1, box2, box3, and group1 doesn't tell me much about what I'm looking at. My rule is: if you want readable code, then you have to write it.
Been using it for the past few days for a hobby project so I thought I'd post this. It shows the new layers and color palettes.
c reen.png (Mind the space in the address)
:(
http://www.friendlyskies.net.nyud.net:8080/inks
Sorry it's in KDE, seeing how Inkscape is GTK...at the moment Skype isn't working in Gnome, so...
Firefox 3 will have resampling since it uses Cairo for rendering. You can try out a nightly build to test that feature.
http://www.inkscape.org/screenshots/gallery/inksca pe-0.44-outlineview.png thats just purely... simply... insane! I wish I had enought time/patience to do something like that.
Can someone post a detailed comparison of features between Inkscape and Illustrator.
Which features are still missing (aside from PDF capabilities)?
Could Inkscape be used to generate art for a videogame? Are there any libraries to render this stuff?
Religion is a gateway psychosis. -- Dave Foley
Man, and I thought I was perfectionistic. You could have put all that effort into doing a little coding to make inkscape output what you'd like. It probably wouldn't be that bad. The optimizer someone was working on (to remove unused gradients etc) might have made it into .44, I'm not sure.
Since Xara has been opensourced and is freely available on Linux, the question arises: which is better? Is there really a big difference between them in terms of speed, features etc? Which one do you recommend?
I just wish the Inkscape developers could redesign the UI of GIMP...
GCHQ Quantum Insert installed. If only our tongues were made of glass, how much more careful we would be when we speak
Nope! The problem here is really the SVG spec, though, in that markers can't exactly inherit useful properties from the line they're being marked on.
My reading of the marker section in the SVG spec says that "fill: inherit" and "stroke: inherit" should be cause the colors to inherit off the parent element.
However: With arrow-heads, the arrow is being filled with a color, and the line is being stroked with a color. Even if Inkscape allowed markers to inherit stroke/fill properties from their parent, the best you could do is have a black arrow-head with a red line around it.
Even so, it's still possible to create red arrows with a red tip, just not easily. First create your normal arrow and set the tip onto it. Note the name of the arrow head you used. Next open up the XML editor. (Yeah - we're heading into tech-land here.) At the very top of the tree there should be a node marked "svg:defs". Open this up, and find the "svg:marker" element that has the same ID listed as the arrow head you used.
Click on it and then click the "duplicate node" button (it's the third from the left on the toolbar). You'll now have a new marker with a new, weird ID. You can edit the ID to be something like "red arrow head" or something useful.
Anyway, click on the "svg:path" element located within the "svg:marker" element. Click on the "style" attribute listed in the right pane. Edit the "fill" attribute listed below, changing it to match the color value of the line you want to use. Press Control-Enter to commit this change.
Then, finally, select your original arrow in the document. This will highlight the node for the path. Edit the style attribute here and change the appropriate "marker" element to point to the new ID of your new arrow head.
You may now optionally curse both Inkscape for making the process this boneheaded and the SVG spec for offering no way to suggest that maybe, just maybe, a marker might want to be filled with the same color the path it's being placed on was stroked with.
You are in a maze of twisty little relative jumps, all alike.