screenshot: use gdk-pixbuf for writing png images

Signed-off-by: Tiago Vignatti <tiago.vignatti@intel.com>
diff --git a/clients/screenshot.c b/clients/screenshot.c
index b6ca48e..81d7513 100644
--- a/clients/screenshot.c
+++ b/clients/screenshot.c
@@ -28,6 +28,7 @@
 #include <unistd.h>
 #include <sys/mman.h>
 #include <glib.h>
+#include <gdk-pixbuf/gdk-pixbuf.h>
 
 #include "wayland-client.h"
 #include "wayland-glib.h"
@@ -151,11 +152,27 @@
 	return buffer;
 }
 
+static void
+write_png(int width, int height, void **data_out) {
+	GdkPixbuf *pixbuf, *normal;
+	GError *error = NULL;
+
+	g_type_init();
+	pixbuf = gdk_pixbuf_new_from_data(*data_out, GDK_COLORSPACE_RGB, TRUE,
+		                          8, width, height, width * 4, NULL,
+	                                  NULL);
+
+	normal = gdk_pixbuf_flip(pixbuf, FALSE);
+	gdk_pixbuf_save(normal, "wayland-screenshot.png", "png", &error, NULL);
+	g_object_unref(normal);
+	g_object_unref(pixbuf);
+}
+
 int main(int argc, char *argv[])
 {
 	struct wl_display *display;
 	struct wl_buffer *buffer;
-	void *data;
+	void *data = NULL;
 
 	display = wl_display_connect(NULL);
 	if (display == NULL) {
@@ -175,7 +192,7 @@
 	screenshooter_shoot(screenshooter, output, buffer);
 	roundtrip(display);
 
-	/* FIXME: write png */
+	write_png(output_width, output_height, &data);
 
 	return 0;
 }