Casey Duckering

Results 64 comments of Casey Duckering

Would you still like to add the feature to do the auto-resize automatically? It should be easy to replace the current resize solution if you find a better one in...

I agree the user should express it. I liked your idea of doing it automatically when the user doesn't specify dimensions (or maybe a special flag like 'auto') when creating...

I'm OK with adding the style tag with the caveat (included in its doc string) that many SVG viewers (including `Drawing.rasterize()` which uses CairoSVG) do not support it and there...

You would use `Group` for this. It looks like there is no example in the README for `Group` yet. ```python d = draw.Drawing(...) map = draw.Group(id='map_panel', x=3, y=1) map.append(...) d.append(map)...

Re-opening this until I add an example to the documentation.

Right, x and y work with `Use` with may also be helpful for you. ```python d.append(draw.Use(map, 3, -1)) ```

If I understand correctly, you want to change the drawing's view port size. `setRenderSize` changes the final image scale, not the internal coordinate system. There is currently no way to...

Glad you solved it. Was the issue that you couldn't do something like this? ```python gradient = ... stop = gradient.addStop(...) # addStop doesn't return anything currently. stop.appendAnim(...) ``` Can...

Thanks. I'll consider this a bug with the package because you shouldn't be required to use manual ids like that. I'm going to reopen this issue until I (or someone...

Elements that are not `append`ed to the drawing but are referenced by other elements will automatically be included in ``. Example: ```python import drawSvg as draw d = draw.Drawing(100, 100)...