Most active commenters
  • AlienRobot(3)

←back to thread

Inkscape 1.4

(inkscape.org)
561 points s1291 | 31 comments | | HN request time: 1.236s | source | bottom
Show context
tetris11 ◴[] No.41873413[source]
The more I learn about the SVG spec, the more I understand the rationale of some of the UI decisions inkscape made, and the more impressed I am by how they implemented advanced techniques like shape union and intersection, clipping and masking.
replies(4): >>41874382 #>>41874729 #>>41876819 #>>41877529 #
1. AlienRobot ◴[] No.41874729[source]
From the little I know about SVG, I wish there was an open source alternative to Inkscape that didn't support standard SVG but used a proprietary format instead.

Almost everything you need to create vector art, SVG doesn't support.

Multiple outlines in a single shape? No. Varying thickness in an outline? No. Rounded corners on arbitrary vertices? No. Non-destructive boolean operations? No. I'm not even sure SVG supports paragraphs.

Many of these Inkscape implements as live filters, which are saved as SVG extensions in the XML .svg file that nobody but Inkscape can properly load.

SVG is ridiculously bad as a creation format. It's a good format to export to, but as a backend and it's just insane. It's like using a single PNG file as a backend for your multi-layer 128bpp raster project.

I use Inkscape a lot but I can't help but notice that the best vector art illustration come from Affinity Designer, Corel Draw, and Adobe Illustrator. If you compare the quality of artwork made with proprietary tools to those made with Inkscape, it's very clear that Inkscape severely limits what artists can achieve. You can easily create complex illustrations in other tools that would be a nightmare to manage in Inkscape. Just compare how you clip something in Inkscape to how you do it in Affinity. It's ridiculous how different the two workflows are.

replies(13): >>41874996 #>>41875026 #>>41875131 #>>41875637 #>>41875872 #>>41875900 #>>41875916 #>>41876228 #>>41876684 #>>41877417 #>>41878858 #>>41878960 #>>41903057 #
2. n3storm ◴[] No.41874996[source]
Are you creatively crippled by not being able to create multiple outlines on a single shape on a file format that can be viewed in almost any device from here to eternity at no cost? Cause you know Michelangelo didn't use procreate in a iPad...do you?
replies(1): >>41875193 #
3. WillAdams ◴[] No.41875026[source]
There is Cenon:

https://cenon.info/

which runs well in Mac OS and Linux and for the basics has the basic vector editing capabilities which folks would expect.

replies(1): >>41875632 #
4. anthk ◴[] No.41875131[source]
Use Krita for art.
replies(1): >>41875360 #
5. MindSpunk ◴[] No.41875193[source]
And the cavemen drawing on walls before Michelangelo didn't have paintbrushes, complex pigments and cathedrals to paint on? Heaven forbid we make better tools.

Considering those operations are available in other vector art tools that aren't constrained by directly using SVG as the fundamental editing format it seems like a reasonable complaint.

replies(1): >>41875650 #
6. HKH2 ◴[] No.41875360[source]
Krita is not for vector art.
7. AlienRobot ◴[] No.41875632[source]
That's interesting but what can it do better than Inkscape?
replies(1): >>41879396 #
8. bbkane ◴[] No.41875637[source]
You might look into https://graphite.rs/ . MS Paint is about my digital art interface complexity limit, but I do read Graphite's blog posts and their app sounds really attractive for more serious artists
replies(1): >>41875846 #
9. hinkley ◴[] No.41875650{3}[source]
This is my complaint about the current state of developer tools. You can buy beautiful tools to make a beautiful chest of drawers or a chair. We are, or at least were, trying to paint the Sistine Chapel with finger paints.

Maybe if we surrounded ourselves with beautiful and sensible tools it would be easier for us to write beautiful or sensible applications. Maybe there would be fewer dancing bears.

10. agnishom ◴[] No.41875846[source]
In what ways are they different from Inkscape? (My knowledge of Vector Editors is quite limited)
replies(1): >>41876378 #
11. sourcepluck ◴[] No.41875872[source]
I'm very ignorant in these areas, but if you don't mind me asking - how would using a proprietary format solve issues for Inkscape, or an imagined alternative to Inkscape?

Do all the others (AD, CD, AI) use some proprietary format that makes their life easier? Is there no better alternative to SVG on the open source side of things?

replies(2): >>41875884 #>>41876217 #
12. insane_dreamer ◴[] No.41875884[source]
Illustrator uses its own proprietary .ai format (which Inkscape can load IIRC)
13. omoikane ◴[] No.41875900[source]
> proprietary format

I also used CorelDraw for many years before moving on to Inkscape, and there were definitely some features that I still miss (e.g. better power clip behavior, blend shapes, etc). But I have came to appreciate Inkscape using SVGs because it allowed me to build my own tooling around it, I only needed libraries that can read and write XML.

SVG is maybe not the best format and Inkscape has many extensions that made their SVGs nonstandard (e.g. mesh gradient), but it is a fairly accessible format. I am not sure the gains promised by a proprietary format would be worth losing out on various SVG/XML tools.

14. billfruit ◴[] No.41875916[source]
How is clipping different in Affinity and in Inkskape? Having used only Inkscape and not Affinity, I don't find the workflow Inkskape is using problematic.
replies(1): >>41876075 #
15. AlienRobot ◴[] No.41876075[source]
In affinity, you have something like a layer window with all your shapes, similar to layer and objects in Inkscape. The "layers" work like groups, so if you drag one shape into another shape, it gets clipped.

So say you want to make something like a wall with a tunnel/cave and a road in it. You can draw a rectnagle, a circle, put the circle inside the rectangle and it's clipped, then use a triangle for the road and put it inside the circle and it's clipped.

In Inkscape you need to select both shapes and use clip group. Which shape clips which depends on which shape is above the other. I can't tell you which one sould be above, by the way, because I never remember it. If you want to clip one shape by another shape that is already inside a clipping group, you have another problem because you need to double click the group to be able to selected the clipped shape. The more layers of clipping you have, the more you have to double click.

The layer structure is also different. In Affinity, the shape itself is the group and occupies only 1 line in the layers window. In Inkscape, every clipping group creates 3 entries in the objects window. One for the group itself, one for the shape at the background, and one for the shapes being clipped. So in Inkscape you have something like:

g277 (this is the group)

-> circle

-> Clip

---> rectangle

In affinity you have:

rectangle

-> circle

16. Gigachad ◴[] No.41876217[source]
A proprietary format would allow doing anything, without having to worry about how other programs will support it.

There’s a conflict between what is needed to simply display images, and what is needed for an ideal editable document.

A web browser doesn’t need the complexity of non destructive Boolean operations, but an editor program does. It can all be exported to SVG at the end once it doesn’t need to be edited anymore. Things like variable thickness outlines can just be turned in to filled Bézier curve shapes that happen to be the shape of the outline.

replies(2): >>41877452 #>>41879724 #
17. wraptile ◴[] No.41876228[source]
All of the things you mentioned can be done in SVG and I've done all of these things before.

For multiple lines just duplicate your shapes and group or even join them. For varying thickness you can duplicate your shape and layer them. Rounded corners are supported on every vertice so I'm not sure where are you geting that.

replies(1): >>41877181 #
18. pilaf ◴[] No.41876378{3}[source]
I haven't used Graphite, but from what I've seen it allows for non-destructive procedural editing using nodes (à la Blender), which Inkscape mostly doesn't do.
19. vasvir ◴[] No.41876684[source]
> No. I'm not even sure SVG supports paragraphs.

SVG 1.1 does not support wrapping (textflow). There are posts in stack-overflow on how to use a foreignObject (HTML) inside SVG to do the line wrapping.

SVG 1.2 apparently supports but I have never used it so I don't know.

20. Timwi ◴[] No.41877181[source]
I'm not the OP you're replying to but I think you missed some of their points.

1) multiple outlines: with your strategy, you can no longer edit the shape as a single shape afterwards.

2) varying thickness: it sounds like you're thinking of thickness varying abruptly from one line segment to another, but remaining constant throughout one segment. I would like a feature where the stroke width varies continuously from one vertex to another, that is, get smoothly thicker or thinner.

3) you can only have rounded corners on every vertex or no vertex of a shape. You can't choose individually for each vertex.

I think these are all features that SVG would benefit from adding.

21. justinclift ◴[] No.41877417[source]
> From the little I know about SVG, I wish there was an open source alternative to Inkscape that didn't support standard SVG but used a proprietary format instead.

Maybe Flash will become popular again at some point, so a well heeled enthusiast (or group of) could buy the source for the Flash Authoring tool from Adobe then release it as OSS. :)

(not holding my breath though)

22. prmoustache ◴[] No.41877452{3}[source]
You don't have to have a proprietary format to do that.

You are doing the mistake of associating open format with standard format, which really are orthogonal concepts. Open format means the format specification is published under an open license. A standard format is one whose specification is maintained by a standards organization/body/consortium. It happens that most open formats are or end up being maintained by a standard body out of convenience[1] and because people often publish them in the open with the hope it will also be used by others but it doesn't have to be. You as developer of application foo can publish the spec of your .bar format on foo's website under an open license and do the fuck you want with it while not being limited by the potential slowness of a standard governing body.

[1] mostly to avoid multiple incompatible forked versions of the format being used with the same name and confusing others.

replies(2): >>41877935 #>>41879778 #
23. ltlnx ◴[] No.41877935{4}[source]
The problem with SVG is the different demands between browser vendors and graphic editors. Browsers for example don't need pages to be in SVG, but it's unavoidable for proper graphic design tools. That makes the advancement of an open format a lot harder, and AFAIK Inkscape devs have thought of extending SVG into their own format (in a talk at LGM).
24. latexr ◴[] No.41878858[source]
> I wish there was an open source alternative to Inkscape that didn't support standard SVG but used a proprietary format instead.

It didn’t need be a proprietary format, it could just as well be a new open format. Inkscape could itself create an open format that they saved to by default and supported many features SVG does not. They they publish the specification for it. Done.

A format doesn’t need to be popular, in widespread use, or proprietary to be useful.

replies(1): >>41880618 #
25. lightedman ◴[] No.41878960[source]
"Multiple outlines in a single shape? No."

Copy/paste/recenter/resize. No live filter needed. So good even EZCad does it and it can barely do any sort of SVG editing or creation.

26. WillAdams ◴[] No.41879396{3}[source]
It handles the basics of:

>shape union and intersection, clipping and masking.

in a fashion which most folks will find more familiar.

27. bobajeff ◴[] No.41879724{3}[source]
I suspect you could achieve a similar result with a standard specification format for vector graphics. You just need to be open to extensions for prototyping features. See open *OpenRaster.

The issue with using SVG is it's not meant for use as data exchange in vector graphics editors but for web publishing.

* https://en.m.wikipedia.org/wiki/OpenRaster

28. jasaldivara ◴[] No.41879778{4}[source]
I don't think they are saying "proprietary" as in "secret, closed source", but just as in "custom format" that is built around one particular application.
29. graypegg ◴[] No.41880618[source]
I also wonder if they could still base it off SVG, but just append to the spec for their own new format. It's just XML under the hood right? They already have all of the complex parsing set up for SVG XML documents.

If svgx files or whatever just had some non-svg node in the top level that contained all of the special inkscape-only info, you might even be able to keep it totally compatible with svg itself. (Just obviously, lacking the special inkscape features)

    <svg>
      <ink:inkscaperoot xmlns:ink="inkscapeschema">
        <effect href="#x">
          <border strokewidth="1"... />
          <border strokewidth="1"... />
          <border strokewidth="1"... />
        </effect>
      </ink:inkscaperoot>
    
      <g><rect id="x" />... regular svg...</g>
    </svg>
replies(1): >>41903097 #
30. account42 ◴[] No.41903057[source]
So you are asking for an authoring tool that has a format that can do what SVG can't and then show examples of how Inkscape can do that? What exactly are you missing then? Is the problem that Inkscape SVG has SVG in the name?
31. account42 ◴[] No.41903097{3}[source]
Great idea. But what would you call such a format? Perhaps "Inkscape SVG"?