From d09910f413a8f7907abbe372c295d1db3bf6bc44 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 4 Sep 2019 18:02:46 -0700 Subject: [PATCH] Add changelog item for wx.svg --- CHANGES.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 560a5f3f..e62fb998 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -66,6 +66,12 @@ New and improved in this release: * Add some missing methods in wx.adv.BitmapComboBox (#1307) +* Added the wx.svg package which contains code for parsing SVG (Scalable Vector + Graphics) files, and also code for integrating with wxPython. It can rasterize + the SVG to a wx.Bitmap of any size with no loss of quality, and it can also + render the SVG directly to a wx.GraphicsContext using the GC's drawing + primitives. (PR #1323) +