-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add first class support for SVG imports and exports #4630
Comments
Welcome! 👋 Thanks for opening your first issue here! And to ensure the community is able to respond to your issue, be sure to follow the issue template if you haven't already. |
I will need to export svg in my project too. Sometimes, we needed to edit the programmatic art in vector software. |
+1 for this |
https://editor.p5js.org/Bobcook47/sketches/Dk3Osbx3z |
+1 |
Try my p5 import library for svg, no export though
https://editor.p5js.org/Bobcook47/present/Dk3Osbx3z
…Sent from my iPad
On Feb 20, 2021, at 5:28 PM, Klavs <[email protected]> wrote:
+1
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#4630 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AAUCTBGAYANSA3MBOD2LIHTTAAZQDANCNFSM4N32FPSQ>.
|
+1 on this. Is there a place where this (support for vector exports from P5 for use with pen plotters and other digital fabrication workflows) is being discussed? I know there was a discussion here a while back, and that it's not an easy thing to implement. But not sure if it's a design question or an issue of finding someone with the expertise and time. The workflow for this is so nice in Processing, it would be incredible to have that capability in shareable web apps. There are other Javascript libraries that handle SVGs of course, but there's nothing like P5.js for tinkering and teaching. |
@nataliefreed No current discussions that I know of is going on though there had been pretty consistent interest in this. I think the lack of progress is mostly due to lack expertise and time. It's not a high priority project for p5.js officially at this time and I don't know of any addon projects that are working on this at the moment. |
Hi, I just released [email protected], which fixes a lot of bugs and should work with [email protected]. And the following are the examples for SVG imports and exports |
@zenozeng thanks for updating! this is super exciting, look forward to trying it out! |
Hi @zenozeng Cool, let me check There could be huge scope if we could import an SVG as a shape and then manipulate it in p5js, as the native shape doesn't properly support the translate function. So moving the shape becomes difficult |
It's great to see that the SVG support is added as a proposal for 2.0! |
Some prior discussion on importing SVG is here for context: #5779 |
+1 on an officially supported SVG export sometime please 🙏 |
Most appropriate sub-area of p5.js?
New feature details:
As an artist using p5.js for plotter drawings, I use vector graphics to power my Axidraw. There are very few options for this workflow out there, and p5.js has by far the best API.
Although I am still able to partially use it, the p5js.svg library was abandoned over 5 years ago. It is the only way to draw and export SVGs. It's plagued with many bugs that require a deep understanding to fix.
It would be amazing if p5.js natively supported SVG operations. The 2D API maps perfectly to it, and the only new option that would be nice is loading and manipulating external SVGs.
The text was updated successfully, but these errors were encountered: