Hello James,
Wednesday, October 28, 2015, 12:49:20 PM, you wrote:
JS> I wrote a little program a couple years ago for my personal use
JS> to display images, and was surprised to find out that it now can
JS> display .svg files too, though it pops up a warning message saying
JS> "No handler found for image type." I checked my code, pretty sure
JS> that this one doesn't use any other libraries such as
JS> GraphicMagick. It apparently is a pure wxWidgets application. The
JS> question is: is the ability supported by a wxImageHandler,
JS> something like wxPNGHandler? and how to disable the warning message? Thanks.
If there was SVG support, it would not be for wxImage as it's a vector
format (as you probably know).
Your best option is wxSVG, but it requires Cairo under Windows.
http://sourceforge.net/projects/wxsvg/
Eric
--