summaryrefslogtreecommitdiffstats
path: root/fb2png/fb2png.c
diff options
context:
space:
mode:
authorTalustus <talustus@dream-irc.de>2013-04-06 11:50:07 +0200
committerDees_Troy <dees_troy@teamw.in>2013-07-01 22:22:17 +0200
commit3019a9172b36b9e2033d92dccdb8ff8e2282da7c (patch)
tree3938a34520ea3b6c3519efb93cbeadce64018e84 /fb2png/fb2png.c
parentFix some issues with wipe partition list (diff)
downloadandroid_bootable_recovery-3019a9172b36b9e2033d92dccdb8ff8e2282da7c.tar
android_bootable_recovery-3019a9172b36b9e2033d92dccdb8ff8e2282da7c.tar.gz
android_bootable_recovery-3019a9172b36b9e2033d92dccdb8ff8e2282da7c.tar.bz2
android_bootable_recovery-3019a9172b36b9e2033d92dccdb8ff8e2282da7c.tar.lz
android_bootable_recovery-3019a9172b36b9e2033d92dccdb8ff8e2282da7c.tar.xz
android_bootable_recovery-3019a9172b36b9e2033d92dccdb8ff8e2282da7c.tar.zst
android_bootable_recovery-3019a9172b36b9e2033d92dccdb8ff8e2282da7c.zip
Diffstat (limited to 'fb2png/fb2png.c')
-rw-r--r--fb2png/fb2png.c121
1 files changed, 121 insertions, 0 deletions
diff --git a/fb2png/fb2png.c b/fb2png/fb2png.c
new file mode 100644
index 000000000..a357b7fee
--- /dev/null
+++ b/fb2png/fb2png.c
@@ -0,0 +1,121 @@
+/**
+ * fb2png Save screenshot into .png.
+ *
+ * Copyright (C) 2012 Kyan <kyan.ql.he@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+#include <stdio.h>
+#include <stdlib.h>
+#include <fcntl.h>
+#include <sys/ioctl.h>
+#include <sys/mman.h>
+#include <linux/fb.h>
+#include <errno.h>
+
+#include "log.h"
+#include "fb2png.h"
+#include "fb.h"
+
+/**
+ * Get the {@code struct fb} from device's framebuffer.
+ * Return
+ * 0 for success.
+ */
+int get_device_fb(const char* path, struct fb *fb)
+{
+ int fd;
+ int bytespp;
+ int offset;
+ char *x;
+ struct fb_var_screeninfo vinfo;
+
+ fd = open(path, O_RDONLY);
+ if (fd < 0) return -1;
+
+ if(ioctl(fd, FBIOGET_VSCREENINFO, &vinfo) < 0) {
+ D("ioctl failed, %s\n", strerror(errno));
+ return -1;
+ }
+
+ bytespp = vinfo.bits_per_pixel / 8;
+
+ fb->bpp = vinfo.bits_per_pixel;
+ fb->size = vinfo.xres * vinfo.yres * bytespp;
+ fb->width = vinfo.xres;
+ fb->height = vinfo.yres;
+ fb->red_offset = vinfo.red.offset;
+ fb->red_length = vinfo.red.length;
+ fb->green_offset = vinfo.green.offset;
+ fb->green_length = vinfo.green.length;
+ fb->blue_offset = vinfo.blue.offset;
+ fb->blue_length = vinfo.blue.length;
+ fb->alpha_offset = vinfo.transp.offset;
+ fb->alpha_length = vinfo.transp.length;
+
+#ifdef ANDROID
+ /* HACK: for several of 3d cores a specific alignment
+ * is required so the start of the fb may not be an integer number of lines
+ * from the base. As a result we are storing the additional offset in
+ * xoffset. This is not the correct usage for xoffset, it should be added
+ * to each line, not just once at the beginning */
+
+ offset = vinfo.xoffset * bytespp;
+
+ /* Android use double-buffer, capture 2nd */
+ offset += vinfo.xres * vinfo.yoffset * bytespp;
+#else
+ offset = 0;
+#endif
+
+ x = malloc(fb->size);
+ if (!x) return -1;
+
+ lseek(fd, offset, SEEK_SET);
+
+ if (read(fd, x ,fb->size) != fb->size) goto oops;
+
+ fb->data = x;
+ close(fd);
+
+ return 0;
+
+oops:
+ close(fd);
+ free(x);
+ return -1;
+}
+
+int fb2png(const char *path)
+{
+ struct fb fb;
+ int ret;
+
+#ifdef ANDROID
+ ret = get_device_fb("/dev/graphics/fb0", &fb);
+#else
+ ret = get_device_fb("/dev/fb0", &fb);
+#endif
+
+ if (ret) {
+ D("Failed to read framebuffer.");
+ return -1;
+ }
+
+ fb_dump(&fb);
+
+ return fb_save_png(&fb, path);
+}
+