From fec755c9cf5855bae97c5df501bc73e9e6171d38 Mon Sep 17 00:00:00 2001 From: Mau Magnaguagno Date: Sun, 6 Mar 2016 17:35:16 -0300 Subject: [PATCH] Updated SVG with background example size --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 44b1894..3359da9 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ img.save_bmp('red.bmp') # BMPs are uncompressed, eat HD (3.05 KB) img.save_png('red.png') # PNGs are compressed, eat CPU (100 bytes) # SVGs are vector based, CPU and HD usage varies img.save_svg('red1.svg') # Without background (1.87 KB) -img.save_svg('red2.svg', 255, 0, 0) # With red background (126 bytes) +img.save_svg('red2.svg', 255, 0, 0) # With red background (114 bytes) ``` You can also load BMPs and PNGs, but PNGs already exploded for me with ZLib deflating under Ruby 1.8.7.