summaryrefslogtreecommitdiff
path: root/source/fitz/output-png.c
AgeCommit message (Collapse)Author
2016-09-23Fix warning: set but unused variable.Tor Andersson
2016-07-20Fix memory leak in fz_new_buffer_from_image_as_png.Robin Watts
2016-07-08Separate 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-06-17Add device space transform state to draw device.Tor Andersson
Allows us to remove the out parameter 'transform' from fz_begin_page.
2016-06-17Improve banding API.Robin Watts
Previously the API assumed that all bands had to be the same height. By moving the multiplication into the caller, we can lift that assumption.
2016-06-16Fix MSVC build; PATH_MAX not defined.Robin Watts
2016-06-16Add PNG output for mutool convert.Tor Andersson
2016-06-16Drop save_alpha argument from image writing functions.Tor Andersson
2016-06-16Split image output functions into separate files.Tor Andersson