Samuel Ugochukwu

Results 57 comments of Samuel Ugochukwu

> no install command cmake scripts, could add it? @Shumpert820 maybe he is referring to ``make install``

Lemme update plutovg first

Lemme update plutovg first

Could you provide more details about the specific requirements or use cases you have in mind for rendering bitmaps in plutovg?

@rossanoparis @kariem2k @jry2 Added with this commit https://github.com/sammycage/lunasvg/commit/760e7e86519ced749e359d472a3a04620aa5cf00

Example: ```cpp auto document = Document::loadFromData(""); auto element = document->getElementById("a"); element.setAttribute("cx", "100"); element.setAttribute("cy", "100"); element.setAttribute("r", "100"); element.setAttribute("fill", "red"); document->updateLayout(); ``` @rossanoparis Reminder: Don't forget to call `Document::updateLayout` after modifying the...

@rossanoparis Hello! You have the flexibility to modify any attribute using the versatile `setAttribute` method. Take a look at the code snippet below for a practical example. This snippet demonstrates...