Skip to content
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

Symbol clipped in SharpVectors renderer #3670

Open
raiatea opened this issue May 7, 2024 · 7 comments
Open

Symbol clipped in SharpVectors renderer #3670

raiatea opened this issue May 7, 2024 · 7 comments

Comments

@raiatea
Copy link

raiatea commented May 7, 2024

Describe the problem
SVG output rendered with SharpVectors, symbols appear clipped

To Reproduce
Steps to reproduce the behavior:

  1. Load accid-001.mei from the tests
  2. Convert it to accid-001.svg
  3. Render with SharpVectors WPF SVG TestBox

Expected behavior
Shapes of the symbols complete

Input data
The smallest example to reproduce the problem

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="2100px" height="2970px" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:mei="http://www.music-encoding.org/ns/mei" overflow="visible">
   <desc>Engraved by Verovio 4.1.0[undefined]</desc>
   <defs>
      <symbol id="E0A4-1hmocrk" viewBox="0 0 1000 1000" overflow="inherit">
         <path transform="scale(1,-1)" d="M0 -39c0 68 73 172 200 172 c66 0 114 -37 114 -95 c0 -84 -106 -171 -218 -171  c-64 0 -96 30 -96 94z" />
      </symbol>
   </defs>
   <svg class="definition-scale" color="black" viewBox="0 0 21000 29700">
      <use xlink:href="#E0A4-1hmocrk" x="1283" y="1553" height="720px" width="720px" />
   </svg>
</svg>

Verovio information
See the header of SVG

Environment information (as appropriate)

  • OS: Windows 10

Screenshots
SharpVectors rendering
SharpVectors

Any online browser rendering
Webbrowser

Additional context
It seems that the SVG viewBox declaration in <symbol id="E0A4-1hmocrk" viewBox="0 0 1000 1000" overflow="inherit"> is interpreted by SharpVectors as an instruction to clip the rendering.
But the path of a symbol goes in the negative Ys, outside of the viewBox, and is clipped.
If viewBox is set to "0 -200 1000 1000" for example, the full shape reappears

Is the viewBox generated by Verovio correct ?

@craigsapp
Copy link
Contributor

This has happened before (or something similar), so there is probably an old issue for this (but I cannot find it at the moment).

@rettinghaus
Copy link
Contributor

rettinghaus commented May 7, 2024

It is probably connected to the handling of the overflow attribute set on symbol level.
See #2380 and Kozea/CairoSVG#300 for possible solutions to fix.

@craigsapp
Copy link
Contributor

Yes, I am pretty sure that is what I was thinking of.

@raiatea
Copy link
Author

raiatea commented May 7, 2024

The header of Verovio SVG ouput has overflow set to visible.
<svg ... overflow="visible">
<symbol ... viewBox="0 0 1000 1000" overflow="inherit">

I tried with overflow=visible for each element, without effect.

Documentation overflow at mozilla.org

This feature is not widely implemented yet.
If it has a value of visible, the attribute has no effect (i.e., a clipping rectangle is not created).

Even the example at Mozilla clips when overflow=visible, in their interactive rendering playground.

I see two possible issues:

  1. SharpVectors: the attribute should have no effect when overflow=visible.

Although the documentation is quoted in the source code before the code concerned with overflow, I'm not sure the attribute is effective.
Obviously it doesn't support well SMuFL.

  1. SMufl: the paths of the symbols should not exceed the boundaries of their viewBox.

For example the definitions of the glyph E0A4,
in Leipzig.xml <g c="E0A4" x="0.0" y="-133.0" w="314.0" h="266.0" h-a-x="314" n="noteheadBlack">
the bounding box is largely in the negatives.

In E0A4.xml, <symbol id="E0A4" viewBox="0 0 1000 1000" overflow="inherit"><path transform="scale(1,-1)" d="M0 -39c0 68 73 172 200 172c66 0 114 -37 114 -95c0 -84 -106 -171 -218 -171c-64 0 -96 30 -96 94z" /></symbol>
the viewBox is not fitted and only in the positives.

The viewBox can only clip the path. The same happens for all the fonts.

@craigsapp
Copy link
Contributor

craigsapp commented May 7, 2024

Here is some CSS code that I use on VHV, probably related to this problem:

svg:not(:root) {
        overflow: inherit;
}

This implies that probably the <symbol> is not necessarily the only element to add the overflow inheriting, and the entire tree strucure of the SVG needs it as well. In other words the tree structure from the root to the location where the symbol is used, probably needs overflow inherit. (otherwise, the symbol is probably inheriting from the location where it is being used.)

@raiatea
Copy link
Author

raiatea commented May 8, 2024

Inspecting the Leipzig font with FontForge, it appears the glyph origin is just where the path is clipped.

FontForge

I'm investigating the issue with the renderer SharpVectors.

@rettinghaus
Copy link
Contributor

I'm working on a solution in #3673.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants