• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

SVG won't export as SVG if contain gaussian blur

New Here ,
Sep 07, 2020 Sep 07, 2020

Copy link to clipboard

Copied

We made an illustration on Adobe Illustrator which contain some elements with Gaussian blur. Afterwhat we export the illustration as a SVG and then import it onto Adobe XD. Once imported on an artboard and  "Mark for export" the SVG we update our shared link for developement with the Downloadable assets checked.

When trying to downlaod the assets (from the shared link) there are only 2 choice available: PNG and PDF file format. SVG file format only appears as an option when we remove the Gaussian layers from the SVG.

So it appears that XD have some trouble to render SVGs with Gaussian blur and thus export it.

TOPICS
Import and export , Missing feature , Share or publish

Views

2.0K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Sep 08, 2020 Sep 08, 2020

Hi there,

 

Sorry to hear about the trouble. I understand that this could be a piece of sad news for you as there are certain un-supported features of SVG files in Adobe XD. For more information please refer to this link: https://helpx.adobe.com/xd/kb/import-export-issues.html#SVG-files-with-unsupported-properties

 

Feel free to reach out if you need any further assistance.


Regards

Rishabh

Votes

Translate

Translate
Adobe Employee ,
Sep 08, 2020 Sep 08, 2020

Copy link to clipboard

Copied

Hi there,

 

Sorry to hear about the trouble. I understand that this could be a piece of sad news for you as there are certain un-supported features of SVG files in Adobe XD. For more information please refer to this link: https://helpx.adobe.com/xd/kb/import-export-issues.html#SVG-files-with-unsupported-properties

 

Feel free to reach out if you need any further assistance.


Regards

Rishabh

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 15, 2020 Sep 15, 2020

Copy link to clipboard

Copied

Thanks for your response Rishabh

One further question though. There isn't any plan for making unsupported properties into supported one anytime soon?

Regards,

Charles

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Sep 22, 2020 Sep 22, 2020

Copy link to clipboard

Copied

Sorry for the delay in response, Charles. As of now, we don't have an official word on it however let me assure you, I will share your feedback with the Engineering Team.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Dec 26, 2022 Dec 26, 2022

Copy link to clipboard

Copied

LATEST

I am a programmer and I believe that XD is a web browser based software. And it has equivalent capabilities like Chromium and a V8 engine.

According to this info

https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feGaussianBlur

browsers have implemented this feature a long time ago. It's strange that the Adobe development team hasn't been able to implement this thing since 2023.

But if anyone still loves XD xd) you can fix it like me.

- SVG export.

- Then open it with a code editor such as (sublime, notepad++).

- Add new filter with unique id (id="blurMe") and set blur (stdDeviation="50").

Example:

<filter id="blurMe">
<feGaussianBlur stdDeviation="50" />
</filter>

- Find the path you want to blur and add a property with your filter ID (filter="url(#blurMe)")

Example:

<path id="shape_3" data-name="shape 3" d="M-15390.033-16249.094l424.966,121.833H-13716.9l-136.849-1312.312s-500.541,844.055-832.558,810.16S-15390.033-16249.094-15390.033-16249.094Z" transform="translate(15691 17070)" fill="url(#linear-gradient-2)" filter="url(#blurMe)"/>

 

To be honest, I think it's not a problem for the development team to implement this.

But for users, it is a big problem, since it is easier to implement this in a graphical editor and export to SVG than to do it using CSS.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines