Zhang Ji Peng

Results 34 comments of Zhang Ji Peng

I wrote some code to port thorvg to GTK2, using gtkgl support the opengl backend. Currently seems to be working normally. https://github.com/thorvg/thorvg/pull/2285

> > Do we know a use case for `absolute coordinate`? > > There are many cases using `absolute coordinate` in svg when desing. Here is a simple example: >...

Let me explain. Actually, SVG rendering has nothing to do with ThorVG. It relies only on the vector drawing capabilities provided by the LVGL ’s vector API. Currently, the vector...

@kisvegabor Do we have plans to support html widget? It is more friendly to large amounts of text layout rendering.

> [@onecoolx](https://github.com/onecoolx) I agree that we should achieve large amount of clean text rendering, it's a very good idea. However HTML - I am not a big fan of. IMHO...

> Perhaps [@onecoolx](https://github.com/onecoolx) has an idea on why/where this is caused. > > I'm thinking if there's some preprocessing I can do on the PC to prep the SVG, I'm...

> > could you provide me with your .svg file so I can test it locally and see what's happened? > > It's first image in the issue. When I...

> Do you know how to translate/convert these instructions in the data? Then I can see if I can automate this fix process. https://abion.com/how-to-svg-tiny-ps-file/ "In Illustrator, save the original file...

> ![Image](https://github.com/user-attachments/assets/66e67303-f1dc-40e8-ac75-e9f3aec228c1) > > This very simple SVG from Material Design Icons will not render. This is the SVG (from https://pictogrammers.com/library/mdi/): > > `` > > It has the A...

> svg_doc = lv_svg_load_data(svg_data0, sizeof(svg_data0) / sizeof(char)); I just noticed your code, it seems to be wrong here, sizeof(svg_data0) gets the size of the pointer, not the string length. I...