diff --git a/README.md b/README.md index 4ea24e1..fd6e7e8 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ You can see that the inner image contains the raster now instead of the blue rec ![image](https://user-images.githubusercontent.com/908389/133010015-a1713504-33b6-4c26-960d-6da50b5a9561.png) -### Save to PDF +## Save to PDF I prefer [`cairosvg`](https://github.com/Kozea/CairoSVG): @@ -133,3 +133,11 @@ I prefer [`cairosvg`](https://github.com/Kozea/CairoSVG): import cairosvg cairosvg.svg2pdf(bytestring=svg, write_to='image.pdf') ``` + +## Layout a set of SVGs + +Sometimes you just want to slap a bunch of SVGs together into a grid. You can do that with this method: + +```py +svg = skunk.layout_svgs(svgs) +```