tatarize

Results 728 comments of tatarize

Well, looking at the plugin architecture, you'd might even want even the core plugins to be spun-off so people could uninstall/not-install-in-the-first-place the svg and hpgl aspects within `read` and `write`,...

I could see a couple having a couple other data types in your model. Rather than just a point list of lines, you could also have a 4 wide list...

meerk40t/svgelements#74 svgelements does not properly acknowledge or have a way to fully identify clipPath objects. Though I've encountered them before. There's also some fill types like gradient that get missed....

Having looked at the spec enough now, I must say I think the file generated there is wrong and that's why Inkscape failed to recognize it. The rules shouldn't work....

https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/clip-rule The clip-rule attribute only applies to graphics elements that are contained within a element. The clip-rule attribute basically works as the fill-rule attribute, except that it applies to definitions....

@abey79 The ability to do this now exists. Though 1.4.0 isn't merged, and likely won't be for a bit. I conducted a code review with the W3C tests and identified...

## Breaking Changes. The proper support for stroke width was in part because I was was talking about the whole implement layers and pen-width stuff and you can just move...

Yeah, I was hoping for a, maybe slower, easier couple functions. My project is uploaded to pypi but I can't really upload this without taking the namespace and having it...

I would expect to be able import a dither function or a function that accepts a type of dither and have a single drop-in file that would implement that stuff...

```python if image.mode !=' RGB': image.convert('RGB') ``` It not very harsh with regards to responsibility.