Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-12 | svg: Remove newlines from fz_warn messages. | Tor Andersson | |
2016-10-11 | Free document in fz_drop_document(), not in subclassing documents. | Sebastian Rasmussen | |
2016-10-09 | Open document file in fz_open_document(). | Sebastian Rasmussen | |
This relieves all document formats from reimplementing opening a fz_stream unless the format wants to do something more than just opening the raw file. | |||
2016-09-20 | SVG: If no width/height given, then guess from viewBox. | Robin Watts | |
2016-09-19 | Update SVG document handler; circles. | Robin Watts | |
Cope with circles, rounded rects, etc. Not the worlds best approximation to a circular arc, but it's better than nothing. | |||
2016-09-19 | svg: Throw on nonconforming transform attributes. | Sebastian Rasmussen | |
2016-09-18 | svg: Use fz_atof() and fz_strtod(). | Sebastian Rasmussen | |
2016-09-18 | svg: Ensure that read svg file is null-terminated. | Sebastian Rasmussen | |
fz_parse_xml() assumes a null-terminated xml string. | |||
2016-09-18 | svg: Fix typo in opacity attribute variable name. | Sebastian Rasmussen | |
2016-09-16 | Silence some warnings. | Robin Watts | |
2016-07-18 | Bug 696927: Move debug printfs to fz_warn. | Robin Watts | |
I did debate about removing these, but it looks like they are flagging up places where processing is incomplete, so I've left them in, and they will just appear on stderr now. | |||
2016-07-08 | Separate close and drop functionality for devices and writers. | Tor Andersson | |
Closing a device or writer may throw exceptions, but much of the foreign language bindings (JNI and JS) depend on drop to never throw an exception (exceptions in finalizers are bad). | |||
2016-05-20 | html: Add SVG image support. | Tor Andersson | |
2016-04-26 | Improve fz_new_document | Robin Watts | |
Use a macro to make fz_new_document nicer (akin to fz_malloc_struct). | |||
2016-04-26 | svg: Add fz_new_display_list_from_svg function. | Tor Andersson | |
2016-04-26 | Fix refcounting on SVG documents. | Robin Watts | |
2016-04-26 | svg: Add SVG parser. | Tor Andersson | |
svg: Implement graphics state stack. svg: Use idmap for symbol and use elements. svg: Put viewport and viewBox in state stack. svg: Rebase to version 1.9 master. |