From 3019a9172b36b9e2033d92dccdb8ff8e2282da7c Mon Sep 17 00:00:00 2001 From: Talustus Date: Sat, 6 Apr 2013 11:50:07 +0200 Subject: FB2PNG: Add fb2png source to TWRP * Add Source of fb2png to TWRP tree * Android.mk by PhilZ-cwm6 * Makefile for CrossCompiling via external toolchan by me (Talustus) Change-Id: If9680688df6e4c9c567f74f46dfc303566b868ba --- fb2png/fb2png.c | 121 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 fb2png/fb2png.c (limited to 'fb2png/fb2png.c') 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 + * + * 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 +#include +#include +#include +#include +#include +#include + +#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); +} + -- cgit v1.2.3