summaryrefslogtreecommitdiffstats
path: root/src/helper/png-write.h
diff options
context:
space:
mode:
authorRalf Stephan <ralf@ark.in-berlin.de>2006-06-22 14:26:10 +0000
committerrwst <rwst@users.sourceforge.net>2006-06-22 14:26:10 +0000
commit2bef43626ceb10288cf4e289dad406608c588eaf (patch)
tree2068eaf3d22e88a66cd17bd8a5e107497660292e /src/helper/png-write.h
parentremove setDoc(), part of fix for #1509854 (diff)
downloadinkscape-2bef43626ceb10288cf4e289dad406608c588eaf.tar.gz
inkscape-2bef43626ceb10288cf4e289dad406608c588eaf.zip
apply patch 1498946 by zbsz (fixes #1492545 "PNG resolution value export")
(bzr r1262)
Diffstat (limited to 'src/helper/png-write.h')
-rw-r--r--src/helper/png-write.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helper/png-write.h b/src/helper/png-write.h
index 2d2c16544..f8011f53e 100644
--- a/src/helper/png-write.h
+++ b/src/helper/png-write.h
@@ -14,9 +14,9 @@
#include <glib/gtypes.h>
-int sp_png_write_rgba(gchar const *filename, guchar const *px, int width, int height, int rowstride);
+int sp_png_write_rgba(gchar const *filename, guchar const *px, int width, int height, double xdpi, double ydpi, int rowstride);
-int sp_png_write_rgba_striped(gchar const *filename, int width, int height,
+int sp_png_write_rgba_striped(gchar const *filename, int width, int height, double xdpi, double ydpi,
int (* get_rows) (guchar const **rows, int row, int num_rows, void *data),
void *data);