aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-10-25 01:56:52 +0200
committerMattias Andrée <maandree@operamail.com>2014-10-25 01:56:52 +0200
commitaa579a4415f10842e52094c236f4b8d20cc1535d (patch)
treeca05ea51f48b89efdd52adaffb82bafb00cc36e6 /src
parentm (diff)
downloadscrotty-aa579a4415f10842e52094c236f4b8d20cc1535d.tar.gz
scrotty-aa579a4415f10842e52094c236f4b8d20cc1535d.tar.bz2
scrotty-aa579a4415f10842e52094c236f4b8d20cc1535d.tar.xz
whoops + support all endiannesses
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rw-r--r--src/scrotty.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/scrotty.c b/src/scrotty.c
index 730d32f..021372f 100644
--- a/src/scrotty.c
+++ b/src/scrotty.c
@@ -24,6 +24,7 @@
#include <fcntl.h>
#include <string.h>
#include <stdlib.h>
+#include <stdint.h>
#ifndef PATH_MAX
@@ -95,7 +96,7 @@ static int save_pnm(const char* fbpath, int fbno, long width, long height, int f
/* The PNM image should begin with `P3\n%{width} %{height}\n%{colour max=255}\n`.
('\n' and ' ' can be exchanged at will.) */
- fprintf(file, "P3\n%l %l255\n", width, height);
+ fprintf(file, "P3\n%li %li\n255\n", width, height);
/* Convert raw framebuffer data into an PNM image. */
for (off = 0;;)
@@ -110,10 +111,12 @@ static int save_pnm(const char* fbpath, int fbno, long width, long height, int f
/* Convert read pixels. */
for (off = 0; off < got; off += 4)
{
- /* A pixel in the framebuffer is formatted as `%{blue}%{green}%{red}%{x}` in binary. */
- r = buf[off + 2] & 255;
- g = buf[off + 1] & 255;
- b = buf[off + 0] & 255;
+ /* A pixel in the framebuffer is formatted as `%{blue}%{green}%{red}%{x}`
+ in big-endian binary, or `%{x}%{red}%{green}%{blue}` in little-endian binary. */
+ uint32_t* pixel = (uint32_t*)(buf + off);
+ r = (*pixel >> 16) & 255;
+ g = (*pixel >> 8) & 255;
+ b = (*pixel >> 0) & 255;
/* A pixel in the PNM image is formatted as `%{red} %{green} %{blue} ` in text. */
fprintf(file, "%s%s%s", inttable[r], inttable[g], inttable[b]);
}