summaryrefslogtreecommitdiff
path: root/png.c
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2015-02-15 17:27:22 +0100
committerLars-Dominik Braun <lars@6xq.net>2015-05-02 21:36:45 +0200
commitde0a8d8ff492fe1ede5ae2b3bad3d3bf659934d1 (patch)
treee90a20142ee0c1206480c04a69761bb5c2f38879 /png.c
parentb1dc710474fd86eb3d5ff2a51edcbfcaf0c7301c (diff)
downloadpucket-de0a8d8ff492fe1ede5ae2b3bad3d3bf659934d1.tar.gz
pucket-de0a8d8ff492fe1ede5ae2b3bad3d3bf659934d1.tar.bz2
pucket-de0a8d8ff492fe1ede5ae2b3bad3d3bf659934d1.zip
Remove all uses of getenv
Not much functionality lost here. Move on.
Diffstat (limited to 'png.c')
-rw-r--r--png.c43
1 files changed, 0 insertions, 43 deletions
diff --git a/png.c b/png.c
index a2917f5..1c28172 100644
--- a/png.c
+++ b/png.c
@@ -32,47 +32,9 @@
void write_png(FILE *file, void *image, int width, int height, flam3_img_comments *fpc, int bpc) {
png_structp png_ptr;
png_infop info_ptr;
- png_text text[FLAM3_PNG_COM];
size_t i;
unsigned short testbe = 1;
void **rows = malloc(sizeof(void *) * height);
- char *nick = getenv("nick");
- char *url = getenv("url");
- char *id = getenv("id");
- char *ai; /* For argi */
- int pngcom_enable = argi("enable_png_comments", 1);
-
- text[0].compression = PNG_TEXT_COMPRESSION_NONE;
- text[0].key = "flam3_version";
- text[0].text = flam3_version();
-
- text[1].compression = PNG_TEXT_COMPRESSION_NONE;
- text[1].key = "flam3_nickname";
- text[1].text = nick;
-
- text[2].compression = PNG_TEXT_COMPRESSION_NONE;
- text[2].key = "flam3_url";
- text[2].text = url;
-
- text[3].compression = PNG_TEXT_COMPRESSION_NONE;
- text[3].key = "flam3_id";
- text[3].text = id;
-
- text[4].compression = PNG_TEXT_COMPRESSION_NONE;
- text[4].key = "flam3_error_rate";
- text[4].text = fpc->badvals;
-
- text[5].compression = PNG_TEXT_COMPRESSION_NONE;
- text[5].key = "flam3_samples";
- text[5].text = fpc->numiters;
-
- text[6].compression = PNG_TEXT_COMPRESSION_NONE;
- text[6].key = "flam3_time";
- text[6].text = fpc->rtime;
-
- text[7].compression = PNG_TEXT_COMPRESSION_zTXt;
- text[7].key = "flam3_genome";
- text[7].text = fpc->genome;
for (i = 0; i < height; i++)
rows[i] = (unsigned char *)image + i * width * 4 * bpc;
@@ -95,11 +57,6 @@ void write_png(FILE *file, void *image, int width, int height, flam3_img_comment
PNG_COMPRESSION_TYPE_BASE,
PNG_FILTER_TYPE_BASE);
-#if 0
- if (pngcom_enable==1)
- png_set_text(png_ptr, info_ptr, text, FLAM3_PNG_COM);
-#endif
-
png_write_info(png_ptr, info_ptr);
/* Must set this after the write_info */