SVGQuartzRenderer
SVGQuartzRenderer copied to clipboard
Simple SVG renderer implemented in Obj-C using CoreGraphics
If your svg has an entry like then the parser will detect that the gradient has no stops and will not draw it.
In SVGQuartzRenderer.m/applyTransformations function under AFFINE if statement there are the following lines: a = 1; b /= d; c /= a; d = 1; Don't know (or want to know)...
Color names "blue", "black", etc. are ignored by the renderer (at least for the "fill" attribute). Setting hex values for colors works.
Hi, I found your source does not support multi-byte characters like Japanese. I suggest you to handle text with UIKit API, because some functions (e.g. CGContextSelectFont() ) do not treat...