mirror of https://github.com/GNOME/gimp.git
1089 lines
28 KiB
C
1089 lines
28 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
* PNM reading and writing code Copyright (C) 1996 Erik Nygren
|
|
*
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/* $Id$ */
|
|
|
|
/*
|
|
* The pnm reading and writing code was written from scratch by Erik Nygren
|
|
* (nygren@mit.edu) based on the specifications in the man pages and
|
|
* does not contain any code from the netpbm or pbmplus distributions.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <setjmp.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#include <ctype.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <libgimp/gimp.h>
|
|
|
|
#ifdef NATIVE_WIN32
|
|
#include <io.h>
|
|
#endif
|
|
|
|
#ifndef _O_BINARY
|
|
#define _O_BINARY 0
|
|
#endif
|
|
|
|
/* Declare local data types
|
|
*/
|
|
|
|
typedef struct _PNMScanner {
|
|
int fd; /* The file descriptor of the file being read */
|
|
char cur; /* The current character in the input stream */
|
|
int eof; /* Have we reached end of file? */
|
|
char *inbuf; /* Input buffer - initially 0 */
|
|
int inbufsize; /* Size of input buffer */
|
|
int inbufvalidsize; /* Size of input buffer with valid data */
|
|
int inbufpos; /* Position in input buffer */
|
|
} PNMScanner;
|
|
|
|
typedef struct _PNMInfo {
|
|
int xres, yres; /* The size of the image */
|
|
int maxval; /* For ascii image files, the max value
|
|
* which we need to normalize to */
|
|
int np; /* Number of image planes (0 for pbm) */
|
|
int asciibody; /* 1 if ascii body, 0 if raw body */
|
|
jmp_buf jmpbuf; /* Where to jump to on an error loading */
|
|
/* Routine to use to load the pnm body */
|
|
void (*loader)(PNMScanner *, struct _PNMInfo *, GPixelRgn *);
|
|
} PNMInfo;
|
|
|
|
/* Contains the information needed to write out PNM rows */
|
|
typedef struct _PNMRowInfo {
|
|
int fd; /* File descriptor */
|
|
char *rowbuf; /* Buffer for writing out rows */
|
|
int xres; /* X resolution */
|
|
int np; /* Number of planes */
|
|
unsigned char *red; /* Colormap red */
|
|
unsigned char *grn; /* Colormap green */
|
|
unsigned char *blu; /* Colormap blue */
|
|
} PNMRowInfo;
|
|
|
|
/* Save info */
|
|
typedef struct
|
|
{
|
|
gint raw; /* raw or ascii */
|
|
} PNMSaveVals;
|
|
|
|
typedef struct
|
|
{
|
|
gint run; /* run */
|
|
} PNMSaveInterface;
|
|
|
|
#define BUFLEN 512 /* The input buffer size for data returned
|
|
* from the scanner. Note that lines
|
|
* aren't allowed to be over 256 characters
|
|
* by the spec anyways so this shouldn't
|
|
* be an issue. */
|
|
|
|
#define SAVE_COMMENT_STRING "# CREATOR: The GIMP's PNM Filter Version 1.0\n"
|
|
|
|
/* Declare some local functions.
|
|
*/
|
|
static void query (void);
|
|
static void run (char *name,
|
|
int nparams,
|
|
GParam *param,
|
|
int *nreturn_vals,
|
|
GParam **return_vals);
|
|
static gint32 load_image (char *filename);
|
|
static gint save_image (char *filename,
|
|
gint32 image_ID,
|
|
gint32 drawable_ID);
|
|
|
|
static gint save_dialog ();
|
|
|
|
static void pnm_load_ascii (PNMScanner * scan,
|
|
PNMInfo * info,
|
|
GPixelRgn * pixel_rgn);
|
|
static void pnm_load_raw (PNMScanner * scan,
|
|
PNMInfo * info,
|
|
GPixelRgn * pixel_rgn);
|
|
static void pnm_load_rawpbm (PNMScanner * scan,
|
|
PNMInfo * info,
|
|
GPixelRgn * pixel_rgn);
|
|
|
|
static void pnmsaverow_ascii (PNMRowInfo * ri,
|
|
guchar * data);
|
|
static void pnmsaverow_raw (PNMRowInfo * ri,
|
|
guchar * data);
|
|
static void pnmsaverow_ascii_indexed (PNMRowInfo * ri,
|
|
guchar * data);
|
|
static void pnmsaverow_raw_indexed (PNMRowInfo * ri,
|
|
guchar * data);
|
|
|
|
static void pnmscanner_destroy (PNMScanner * s);
|
|
static void pnmscanner_createbuffer (PNMScanner * s,
|
|
int bufsize);
|
|
static void pnmscanner_getchar (PNMScanner * s);
|
|
static void pnmscanner_eatwhitespace (PNMScanner * s);
|
|
static void pnmscanner_gettoken (PNMScanner * s,
|
|
char * buf,
|
|
int bufsize);
|
|
|
|
static PNMScanner * pnmscanner_create (int fd);
|
|
|
|
static void save_close_callback (GtkWidget *widget,
|
|
gpointer data);
|
|
static void save_ok_callback (GtkWidget *widget,
|
|
gpointer data);
|
|
static void save_toggle_update (GtkWidget *widget,
|
|
gpointer data);
|
|
|
|
|
|
#define pnmscanner_eof(s) ((s)->eof)
|
|
#define pnmscanner_fd(s) ((s)->fd)
|
|
|
|
/* Checks for a fatal error */
|
|
#define CHECK_FOR_ERROR(predicate, jmpbuf, errmsg) \
|
|
if ((predicate)) \
|
|
{ /*gimp_message((errmsg));*/ longjmp((jmpbuf),1); }
|
|
|
|
static struct struct_pnm_types {
|
|
char name;
|
|
int np;
|
|
int asciibody;
|
|
int maxval;
|
|
void (*loader)(PNMScanner *, struct _PNMInfo *, GPixelRgn *pixel_rgn);
|
|
} pnm_types[] = {
|
|
{ '1', 0, 1, 1, pnm_load_ascii }, /* ASCII PBM */
|
|
{ '2', 1, 1, 255, pnm_load_ascii }, /* ASCII PGM */
|
|
{ '3', 3, 1, 255, pnm_load_ascii }, /* ASCII PPM */
|
|
{ '4', 0, 0, 1, pnm_load_rawpbm }, /* RAW PBM */
|
|
{ '5', 1, 0, 255, pnm_load_raw }, /* RAW PGM */
|
|
{ '6', 3, 0, 255, pnm_load_raw }, /* RAW PPM */
|
|
{ 0 , 0, 0, 0, NULL}
|
|
};
|
|
|
|
GPlugInInfo PLUG_IN_INFO =
|
|
{
|
|
NULL, /* init_proc */
|
|
NULL, /* quit_proc */
|
|
query, /* query_proc */
|
|
run, /* run_proc */
|
|
};
|
|
|
|
static PNMSaveVals psvals =
|
|
{
|
|
TRUE /* raw? or ascii */
|
|
};
|
|
|
|
static PNMSaveInterface psint =
|
|
{
|
|
FALSE /* run */
|
|
};
|
|
|
|
|
|
MAIN ()
|
|
|
|
static void
|
|
query ()
|
|
{
|
|
static GParamDef load_args[] =
|
|
{
|
|
{ PARAM_INT32, "run_mode", "Interactive, non-interactive" },
|
|
{ PARAM_STRING, "filename", "The name of the file to load" },
|
|
{ PARAM_STRING, "raw_filename", "The name of the file to load" },
|
|
};
|
|
static GParamDef load_return_vals[] =
|
|
{
|
|
{ PARAM_IMAGE, "image", "Output image" },
|
|
};
|
|
static int nload_args = sizeof (load_args) / sizeof (load_args[0]);
|
|
static int nload_return_vals = sizeof (load_return_vals) / sizeof (load_return_vals[0]);
|
|
|
|
static GParamDef save_args[] =
|
|
{
|
|
{ PARAM_INT32, "run_mode", "Interactive, non-interactive" },
|
|
{ PARAM_IMAGE, "image", "Input image" },
|
|
{ PARAM_DRAWABLE, "drawable", "Drawable to save" },
|
|
{ PARAM_STRING, "filename", "The name of the file to save the image in" },
|
|
{ PARAM_STRING, "raw_filename", "The name of the file to save the image in" },
|
|
{ PARAM_INT32, "raw", "Specify non-zero for raw output, zero for ascii output" }
|
|
};
|
|
static int nsave_args = sizeof (save_args) / sizeof (save_args[0]);
|
|
|
|
gimp_install_procedure ("file_pnm_load",
|
|
"loads files of the pnm file format",
|
|
"FIXME: write help for pnm_load",
|
|
"Erik Nygren",
|
|
"Erik Nygren",
|
|
"1996",
|
|
"<Load>/PNM",
|
|
NULL,
|
|
PROC_PLUG_IN,
|
|
nload_args, nload_return_vals,
|
|
load_args, load_return_vals);
|
|
|
|
gimp_install_procedure ("file_pnm_save",
|
|
"saves files in the pnm file format",
|
|
"PNM saving handles all image types except those with alpha channels.",
|
|
"Erik Nygren",
|
|
"Erik Nygren",
|
|
"1996",
|
|
"<Save>/PNM",
|
|
"RGB*, GRAY*, INDEXED*",
|
|
PROC_PLUG_IN,
|
|
nsave_args, 0,
|
|
save_args, NULL);
|
|
|
|
gimp_register_magic_load_handler ("file_pnm_load", "pnm,ppm,pgm,pbm", "",
|
|
"0,string,P1,0,string,P2,0,string,P3,0,string,P4,0,string,P5,0,string,P6");
|
|
gimp_register_save_handler ("file_pnm_save", "pnm,ppm,pgm,pbm", "");
|
|
}
|
|
|
|
static void
|
|
run (char *name,
|
|
int nparams,
|
|
GParam *param,
|
|
int *nreturn_vals,
|
|
GParam **return_vals)
|
|
{
|
|
static GParam values[2];
|
|
GRunModeType run_mode;
|
|
GStatusType status = STATUS_SUCCESS;
|
|
gint32 image_ID;
|
|
|
|
run_mode = param[0].data.d_int32;
|
|
|
|
*return_vals = values;
|
|
values[0].type = PARAM_STATUS;
|
|
values[0].data.d_status = STATUS_CALLING_ERROR;
|
|
values[1].type = PARAM_IMAGE;
|
|
values[1].data.d_image = -1;
|
|
|
|
if (strcmp (name, "file_pnm_load") == 0)
|
|
{
|
|
image_ID = load_image (param[1].data.d_string);
|
|
|
|
if (image_ID != -1)
|
|
{
|
|
values[0].data.d_status = STATUS_SUCCESS;
|
|
values[1].data.d_image = image_ID;
|
|
}
|
|
else
|
|
{
|
|
values[0].data.d_status = STATUS_EXECUTION_ERROR;
|
|
}
|
|
*nreturn_vals = 2;
|
|
}
|
|
else if (strcmp (name, "file_pnm_save") == 0)
|
|
{
|
|
switch (run_mode)
|
|
{
|
|
case RUN_INTERACTIVE:
|
|
/* Possibly retrieve data */
|
|
gimp_get_data ("file_pnm_save", &psvals);
|
|
|
|
/* First acquire information with a dialog */
|
|
if (! save_dialog ())
|
|
return;
|
|
break;
|
|
|
|
case RUN_NONINTERACTIVE:
|
|
/* Make sure all the arguments are there! */
|
|
if (nparams != 6)
|
|
status = STATUS_CALLING_ERROR;
|
|
if (status == STATUS_SUCCESS)
|
|
{
|
|
psvals.raw = (param[5].data.d_int32) ? TRUE : FALSE;
|
|
}
|
|
|
|
case RUN_WITH_LAST_VALS:
|
|
/* Possibly retrieve data */
|
|
gimp_get_data ("file_pnm_save", &psvals);
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (save_image (param[3].data.d_string, param[1].data.d_int32, param[2].data.d_int32))
|
|
{
|
|
/* Store psvals data */
|
|
gimp_set_data ("file_pnm_save", &psvals, sizeof (PNMSaveVals));
|
|
|
|
values[0].data.d_status = STATUS_SUCCESS;
|
|
}
|
|
else
|
|
values[0].data.d_status = STATUS_EXECUTION_ERROR;
|
|
*nreturn_vals = 1;
|
|
}
|
|
}
|
|
|
|
static gint32
|
|
load_image (char *filename)
|
|
{
|
|
GPixelRgn pixel_rgn;
|
|
gint32 image_ID;
|
|
gint32 layer_ID;
|
|
GDrawable *drawable;
|
|
int fd; /* File descriptor */
|
|
char *temp;
|
|
char buf[BUFLEN]; /* buffer for random things like scanning */
|
|
PNMInfo *pnminfo;
|
|
PNMScanner *scan;
|
|
int ctr;
|
|
|
|
temp = g_strdup_printf ("Loading %s:", filename);
|
|
gimp_progress_init (temp);
|
|
g_free (temp);
|
|
|
|
/* open the file */
|
|
fd = open(filename, O_RDONLY | _O_BINARY);
|
|
|
|
if (fd == -1)
|
|
{
|
|
/*gimp_message("pnm filter: can't open file\n");*/
|
|
return -1;
|
|
}
|
|
|
|
/* allocate the necessary structures */
|
|
pnminfo = (PNMInfo *) g_malloc(sizeof(PNMInfo));
|
|
|
|
scan = NULL;
|
|
/* set error handling */
|
|
if (setjmp (pnminfo->jmpbuf))
|
|
{
|
|
/* If we get here, we had a problem reading the file */
|
|
if (scan)
|
|
pnmscanner_destroy (scan);
|
|
close (fd);
|
|
g_free (pnminfo);
|
|
return -1;
|
|
}
|
|
|
|
if (!(scan = pnmscanner_create(fd)))
|
|
longjmp(pnminfo->jmpbuf,1);
|
|
|
|
/* Get magic number */
|
|
pnmscanner_gettoken(scan, buf, BUFLEN);
|
|
CHECK_FOR_ERROR(pnmscanner_eof(scan), pnminfo->jmpbuf,
|
|
"pnm filter: premature end of file\n");
|
|
CHECK_FOR_ERROR((buf[0] != 'P' || buf[2]), pnminfo->jmpbuf,
|
|
"pnm filter: %s is not a valid file\n");
|
|
|
|
/* Look up magic number to see what type of PNM this is */
|
|
for (ctr=0; pnm_types[ctr].name; ctr++)
|
|
if (buf[1] == pnm_types[ctr].name)
|
|
{
|
|
pnminfo->np = pnm_types[ctr].np;
|
|
pnminfo->asciibody = pnm_types[ctr].asciibody;
|
|
pnminfo->maxval = pnm_types[ctr].maxval;
|
|
pnminfo->loader = pnm_types[ctr].loader;
|
|
}
|
|
if (!pnminfo->loader)
|
|
{
|
|
/*gimp_message("pnm filter: file not in a supported format\n");*/
|
|
longjmp(pnminfo->jmpbuf,1);
|
|
}
|
|
|
|
pnmscanner_gettoken(scan, buf, BUFLEN);
|
|
CHECK_FOR_ERROR(pnmscanner_eof(scan), pnminfo->jmpbuf,
|
|
"pnm filter: premature end of file\n");
|
|
pnminfo->xres = isdigit(*buf)?atoi(buf):0;
|
|
CHECK_FOR_ERROR(pnminfo->xres<=0, pnminfo->jmpbuf,
|
|
"pnm filter: invalid xres while loading\n");
|
|
|
|
pnmscanner_gettoken(scan, buf, BUFLEN);
|
|
CHECK_FOR_ERROR(pnmscanner_eof(scan), pnminfo->jmpbuf,
|
|
"pnm filter: premature end of file\n");
|
|
pnminfo->yres = isdigit(*buf)?atoi(buf):0;
|
|
CHECK_FOR_ERROR(pnminfo->yres<=0, pnminfo->jmpbuf,
|
|
"pnm filter: invalid yres while loading\n");
|
|
|
|
if (pnminfo->np != 0) /* pbm's don't have a maxval field */
|
|
{
|
|
pnmscanner_gettoken(scan, buf, BUFLEN);
|
|
CHECK_FOR_ERROR(pnmscanner_eof(scan), pnminfo->jmpbuf,
|
|
"pnm filter: premature end of file\n");
|
|
|
|
pnminfo->maxval = isdigit(*buf)?atoi(buf):0;
|
|
CHECK_FOR_ERROR(((pnminfo->maxval<=0)
|
|
|| (pnminfo->maxval>255 && !pnminfo->asciibody)),
|
|
pnminfo->jmpbuf,
|
|
"pnm filter: invalid maxval while loading\n");
|
|
}
|
|
|
|
/* Create a new image of the proper size and associate the filename with it.
|
|
*/
|
|
image_ID = gimp_image_new (pnminfo->xres, pnminfo->yres, (pnminfo->np >= 3) ? RGB : GRAY);
|
|
gimp_image_set_filename (image_ID, filename);
|
|
|
|
layer_ID = gimp_layer_new (image_ID, "Background",
|
|
pnminfo->xres, pnminfo->yres,
|
|
(pnminfo->np >= 3) ? RGB_IMAGE : GRAY_IMAGE, 100, NORMAL_MODE);
|
|
gimp_image_add_layer (image_ID, layer_ID, 0);
|
|
|
|
drawable = gimp_drawable_get (layer_ID);
|
|
gimp_pixel_rgn_init (&pixel_rgn, drawable, 0, 0, drawable->width, drawable->height, TRUE, FALSE);
|
|
|
|
pnminfo->loader(scan, pnminfo, &pixel_rgn);
|
|
|
|
/* Destroy the scanner */
|
|
pnmscanner_destroy(scan);
|
|
|
|
/* free the structures */
|
|
g_free (pnminfo);
|
|
|
|
/* close the file */
|
|
close (fd);
|
|
|
|
/* Tell the GIMP to display the image.
|
|
*/
|
|
gimp_drawable_flush (drawable);
|
|
|
|
return image_ID;
|
|
}
|
|
|
|
|
|
static void
|
|
pnm_load_ascii (PNMScanner *scan,
|
|
PNMInfo *info,
|
|
GPixelRgn *pixel_rgn)
|
|
{
|
|
unsigned char *data, *d;
|
|
int x, y, i, b;
|
|
int start, end, scanlines;
|
|
int np;
|
|
char buf[BUFLEN];
|
|
|
|
np = (info->np)?(info->np):1;
|
|
data = g_malloc (gimp_tile_height () * info->xres * np);
|
|
|
|
/* Buffer reads to increase performance */
|
|
pnmscanner_createbuffer(scan, 4096);
|
|
|
|
for (y = 0; y < info->yres; )
|
|
{
|
|
start = y;
|
|
end = y + gimp_tile_height ();
|
|
end = MIN (end, info->yres);
|
|
scanlines = end - start;
|
|
d = data;
|
|
|
|
for (i = 0; i < scanlines; i++)
|
|
for (x = 0; x < info->xres; x++)
|
|
{
|
|
for (b = 0; b < np; b++)
|
|
{
|
|
/* Truncated files will just have all 0's at the end of the images */
|
|
CHECK_FOR_ERROR(pnmscanner_eof(scan), info->jmpbuf,
|
|
"pnm filter: premature end of file\n");
|
|
pnmscanner_gettoken(scan, buf, BUFLEN);
|
|
switch (info->maxval)
|
|
{
|
|
case 255:
|
|
d[b] = isdigit(*buf)?atoi(buf):0;
|
|
break;
|
|
case 1:
|
|
d[b] = (*buf=='0')?0xff:0x00;
|
|
break;
|
|
default:
|
|
d[b] = (unsigned char)(255.0*(((double)(isdigit(*buf)?atoi(buf):0))
|
|
/ (double)(info->maxval)));
|
|
}
|
|
}
|
|
|
|
d += np;
|
|
}
|
|
|
|
if ((y % 20) == 0)
|
|
gimp_progress_update ((double) y / (double) info->yres);
|
|
gimp_pixel_rgn_set_rect (pixel_rgn, data, 0, y, info->xres, scanlines);
|
|
y += scanlines;
|
|
}
|
|
|
|
g_free (data);
|
|
}
|
|
|
|
static void
|
|
pnm_load_raw (PNMScanner *scan,
|
|
PNMInfo *info,
|
|
GPixelRgn *pixel_rgn)
|
|
{
|
|
unsigned char *data, *d;
|
|
int x, y, i;
|
|
int start, end, scanlines;
|
|
int fd;
|
|
|
|
data = g_malloc (gimp_tile_height () * info->xres * info->np);
|
|
fd = pnmscanner_fd(scan);
|
|
|
|
for (y = 0; y < info->yres; )
|
|
{
|
|
start = y;
|
|
end = y + gimp_tile_height ();
|
|
end = MIN (end, info->yres);
|
|
scanlines = end - start;
|
|
d = data;
|
|
|
|
for (i = 0; i < scanlines; i++)
|
|
{
|
|
CHECK_FOR_ERROR((info->xres*info->np
|
|
!= read(fd, d, info->xres*info->np)),
|
|
info->jmpbuf,
|
|
"pnm filter: premature end of file\n");
|
|
|
|
if (info->maxval != 255) /* Normalize if needed */
|
|
{
|
|
for (x = 0; x < info->xres * info->np; x++)
|
|
d[x] = (unsigned char)(255.0*(double)(d[x]) / (double)(info->maxval));
|
|
}
|
|
|
|
d += info->xres * info->np;
|
|
}
|
|
|
|
if ((y % 20) == 0)
|
|
gimp_progress_update ((double) y / (double) info->yres);
|
|
gimp_pixel_rgn_set_rect (pixel_rgn, data, 0, y, info->xres, scanlines);
|
|
y += scanlines;
|
|
}
|
|
|
|
g_free (data);
|
|
}
|
|
|
|
void
|
|
static pnm_load_rawpbm (PNMScanner *scan,
|
|
PNMInfo *info,
|
|
GPixelRgn *pixel_rgn)
|
|
{
|
|
unsigned char *buf;
|
|
unsigned char curbyte;
|
|
unsigned char *data, *d;
|
|
int x, y, i;
|
|
int start, end, scanlines;
|
|
int fd;
|
|
int rowlen, bufpos;
|
|
|
|
fd = pnmscanner_fd(scan);
|
|
rowlen = (int)ceil((double)(info->xres)/8.0);
|
|
data = g_malloc (gimp_tile_height () * info->xres);
|
|
buf = g_malloc(rowlen*sizeof(unsigned char));
|
|
|
|
for (y = 0; y < info->yres; )
|
|
{
|
|
start = y;
|
|
end = y + gimp_tile_height ();
|
|
end = MIN (end, info->yres);
|
|
scanlines = end - start;
|
|
d = data;
|
|
|
|
for (i = 0; i < scanlines; i++)
|
|
{
|
|
CHECK_FOR_ERROR((rowlen != read(fd, buf, rowlen)),
|
|
info->jmpbuf, "pnm filter: error reading file\n");
|
|
bufpos = 0;
|
|
|
|
for (x = 0; x < info->xres; x++)
|
|
{
|
|
if ((x % 8) == 0)
|
|
curbyte = buf[bufpos++];
|
|
d[x] = (curbyte&0x80) ? 0x00 : 0xff;
|
|
curbyte <<= 1;
|
|
}
|
|
|
|
d += info->xres;
|
|
}
|
|
|
|
if ((y % 20) == 0)
|
|
gimp_progress_update ((double) y / (double) info->yres);
|
|
gimp_pixel_rgn_set_rect (pixel_rgn, data, 0, y, info->xres, scanlines);
|
|
y += scanlines;
|
|
}
|
|
|
|
g_free(buf);
|
|
g_free (data);
|
|
}
|
|
|
|
/* Writes out RGB and greyscale raw rows */
|
|
static void
|
|
pnmsaverow_raw (PNMRowInfo *ri,
|
|
unsigned char *data)
|
|
{
|
|
write(ri->fd, data, ri->xres*ri->np);
|
|
}
|
|
|
|
/* Writes out indexed raw rows */
|
|
static void
|
|
pnmsaverow_raw_indexed (PNMRowInfo *ri,
|
|
unsigned char *data)
|
|
{
|
|
int i;
|
|
char *rbcur = ri->rowbuf;
|
|
|
|
for (i = 0; i < ri->xres; i++)
|
|
{
|
|
*(rbcur++) = ri->red[*data];
|
|
*(rbcur++) = ri->grn[*data];
|
|
*(rbcur++) = ri->blu[*(data++)];
|
|
}
|
|
write(ri->fd, ri->rowbuf, ri->xres*3);
|
|
}
|
|
|
|
/* Writes out RGB and greyscale ascii rows */
|
|
static void
|
|
pnmsaverow_ascii (PNMRowInfo *ri,
|
|
unsigned char *data)
|
|
{
|
|
int i;
|
|
char *rbcur = ri->rowbuf;
|
|
|
|
for (i = 0; i < ri->xres*ri->np; i++)
|
|
{
|
|
sprintf((char *) rbcur,"%d\n", 0xff & *(data++));
|
|
rbcur += strlen(rbcur);
|
|
}
|
|
write(ri->fd, ri->rowbuf, strlen((char *) ri->rowbuf));
|
|
}
|
|
|
|
/* Writes out RGB and greyscale ascii rows */
|
|
static void
|
|
pnmsaverow_ascii_indexed (PNMRowInfo *ri,
|
|
unsigned char *data)
|
|
{
|
|
int i;
|
|
char *rbcur = ri->rowbuf;
|
|
|
|
for (i = 0; i < ri->xres; i++)
|
|
{
|
|
sprintf((char *) rbcur,"%d\n", 0xff & ri->red[*(data)]);
|
|
rbcur += strlen(rbcur);
|
|
sprintf((char *) rbcur,"%d\n", 0xff & ri->grn[*(data)]);
|
|
rbcur += strlen(rbcur);
|
|
sprintf((char *) rbcur,"%d\n", 0xff & ri->blu[*(data++)]);
|
|
rbcur += strlen(rbcur);
|
|
}
|
|
write(ri->fd, ri->rowbuf, strlen((char *) ri->rowbuf));
|
|
}
|
|
|
|
static gint
|
|
save_image (char *filename,
|
|
gint32 image_ID,
|
|
gint32 drawable_ID)
|
|
{
|
|
GPixelRgn pixel_rgn;
|
|
GDrawable *drawable;
|
|
GDrawableType drawable_type;
|
|
PNMRowInfo rowinfo;
|
|
void (*saverow)(PNMRowInfo *, unsigned char *);
|
|
unsigned char red[256];
|
|
unsigned char grn[256];
|
|
unsigned char blu[256];
|
|
unsigned char *data, *d;
|
|
char *rowbuf;
|
|
char buf[BUFLEN];
|
|
char *temp;
|
|
int np;
|
|
int xres, yres;
|
|
int ypos, yend;
|
|
int rowbufsize;
|
|
int fd;
|
|
|
|
drawable = gimp_drawable_get (drawable_ID);
|
|
drawable_type = gimp_drawable_type (drawable_ID);
|
|
gimp_pixel_rgn_init (&pixel_rgn, drawable, 0, 0, drawable->width, drawable->height, FALSE, FALSE);
|
|
|
|
/* Make sure we're not saving an image with an alpha channel */
|
|
if (gimp_drawable_has_alpha (drawable_ID))
|
|
{
|
|
/* gimp_message ("PNM save cannot handle images with alpha channels."); */
|
|
return FALSE;
|
|
}
|
|
|
|
temp = g_strdup_printf ("Saving %s:", filename);
|
|
gimp_progress_init (temp);
|
|
g_free (temp);
|
|
|
|
/* open the file */
|
|
fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | _O_BINARY, 0644);
|
|
|
|
if (fd == -1)
|
|
{
|
|
g_message ("pnm: can't open \"%s\"", filename);
|
|
return FALSE;
|
|
}
|
|
|
|
xres = drawable->width;
|
|
yres = drawable->height;
|
|
|
|
/* write out magic number */
|
|
if (psvals.raw == FALSE)
|
|
{
|
|
if (drawable_type == GRAY_IMAGE)
|
|
{
|
|
write(fd, "P2\n", 3);
|
|
np = 1;
|
|
rowbufsize = xres * 4;
|
|
saverow = pnmsaverow_ascii;
|
|
}
|
|
else if (drawable_type == RGB_IMAGE)
|
|
{
|
|
write(fd, "P3\n", 3);
|
|
np = 3;
|
|
rowbufsize = xres * 12;
|
|
saverow = pnmsaverow_ascii;
|
|
}
|
|
else if (drawable_type == INDEXED_IMAGE)
|
|
{
|
|
write(fd, "P3\n", 3);
|
|
np = 1;
|
|
rowbufsize = xres * 12;
|
|
saverow = pnmsaverow_ascii_indexed;
|
|
}
|
|
}
|
|
else if (psvals.raw == TRUE)
|
|
{
|
|
if (drawable_type == GRAY_IMAGE)
|
|
{
|
|
write(fd, "P5\n", 3);
|
|
np = 1;
|
|
rowbufsize = xres;
|
|
saverow = pnmsaverow_raw;
|
|
}
|
|
else if (drawable_type == RGB_IMAGE)
|
|
{
|
|
write(fd, "P6\n", 3);
|
|
np = 3;
|
|
rowbufsize = xres * 3;
|
|
saverow = pnmsaverow_raw;
|
|
}
|
|
else if (drawable_type == INDEXED_IMAGE)
|
|
{
|
|
write(fd, "P6\n", 3);
|
|
np = 1;
|
|
rowbufsize = xres * 3;
|
|
saverow = pnmsaverow_raw_indexed;
|
|
}
|
|
}
|
|
|
|
if (drawable_type == INDEXED_IMAGE)
|
|
{
|
|
int i;
|
|
unsigned char *cmap;
|
|
int colors;
|
|
|
|
cmap = gimp_image_get_cmap (image_ID, &colors);
|
|
|
|
for (i = 0; i < colors; i++)
|
|
{
|
|
red[i] = *cmap++;
|
|
grn[i] = *cmap++;
|
|
blu[i] = *cmap++;
|
|
}
|
|
|
|
rowinfo.red = red;
|
|
rowinfo.grn = grn;
|
|
rowinfo.blu = blu;
|
|
}
|
|
|
|
/* allocate a buffer for retrieving information from the pixel region */
|
|
data = (unsigned char *) g_malloc (gimp_tile_height () * drawable->width * drawable->bpp);
|
|
|
|
/* write out comment string */
|
|
write(fd, SAVE_COMMENT_STRING, strlen(SAVE_COMMENT_STRING));
|
|
|
|
/* write out resolution and maxval */
|
|
sprintf(buf, "%d %d\n255\n", xres, yres);
|
|
write(fd, buf, strlen(buf));
|
|
|
|
rowbuf = g_malloc(rowbufsize+1);
|
|
rowinfo.fd = fd;
|
|
rowinfo.rowbuf = rowbuf;
|
|
rowinfo.xres = xres;
|
|
rowinfo.np = np;
|
|
|
|
/* Write the body out */
|
|
for (ypos = 0; ypos < yres; ypos++)
|
|
{
|
|
if ((ypos % gimp_tile_height ()) == 0)
|
|
{
|
|
yend = ypos + gimp_tile_height ();
|
|
yend = MIN (yend, yres);
|
|
gimp_pixel_rgn_get_rect (&pixel_rgn, data, 0, ypos, xres, (yend - ypos));
|
|
d = data;
|
|
}
|
|
|
|
(*saverow)(&rowinfo, d);
|
|
d += xres*np;
|
|
|
|
if ((ypos % 20) == 0)
|
|
gimp_progress_update ((double) ypos / (double) yres);
|
|
}
|
|
|
|
/* close the file */
|
|
close (fd);
|
|
|
|
g_free(rowbuf);
|
|
g_free(data);
|
|
|
|
gimp_drawable_detach (drawable);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static gint
|
|
save_dialog ()
|
|
{
|
|
GtkWidget *dlg;
|
|
GtkWidget *button;
|
|
GtkWidget *toggle;
|
|
GtkWidget *frame;
|
|
GtkWidget *toggle_vbox;
|
|
GSList *group;
|
|
gchar **argv;
|
|
gint argc;
|
|
gint use_raw = (psvals.raw == TRUE);
|
|
gint use_ascii = (psvals.raw == FALSE);
|
|
|
|
argc = 1;
|
|
argv = g_new (gchar *, 1);
|
|
argv[0] = g_strdup ("save");
|
|
|
|
gtk_init (&argc, &argv);
|
|
gtk_rc_parse (gimp_gtkrc ());
|
|
|
|
dlg = gtk_dialog_new ();
|
|
gtk_window_set_title (GTK_WINDOW (dlg), "Save as PNM");
|
|
gtk_window_position (GTK_WINDOW (dlg), GTK_WIN_POS_MOUSE);
|
|
gtk_signal_connect (GTK_OBJECT (dlg), "destroy",
|
|
(GtkSignalFunc) save_close_callback,
|
|
NULL);
|
|
|
|
/* Action area */
|
|
button = gtk_button_new_with_label ("OK");
|
|
GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
|
|
gtk_signal_connect (GTK_OBJECT (button), "clicked",
|
|
(GtkSignalFunc) save_ok_callback,
|
|
dlg);
|
|
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->action_area), button, TRUE, TRUE, 0);
|
|
gtk_widget_grab_default (button);
|
|
gtk_widget_show (button);
|
|
|
|
button = gtk_button_new_with_label ("Cancel");
|
|
GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
|
|
gtk_signal_connect_object (GTK_OBJECT (button), "clicked",
|
|
(GtkSignalFunc) gtk_widget_destroy,
|
|
GTK_OBJECT (dlg));
|
|
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->action_area), button, TRUE, TRUE, 0);
|
|
gtk_widget_show (button);
|
|
|
|
/* file save type */
|
|
frame = gtk_frame_new ("Data Formatting");
|
|
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_ETCHED_IN);
|
|
gtk_container_border_width (GTK_CONTAINER (frame), 10);
|
|
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox), frame, FALSE, TRUE, 0);
|
|
toggle_vbox = gtk_vbox_new (FALSE, 5);
|
|
gtk_container_border_width (GTK_CONTAINER (toggle_vbox), 5);
|
|
gtk_container_add (GTK_CONTAINER (frame), toggle_vbox);
|
|
|
|
group = NULL;
|
|
toggle = gtk_radio_button_new_with_label (group, "Raw");
|
|
group = gtk_radio_button_group (GTK_RADIO_BUTTON (toggle));
|
|
gtk_box_pack_start (GTK_BOX (toggle_vbox), toggle, FALSE, FALSE, 0);
|
|
gtk_signal_connect (GTK_OBJECT (toggle), "toggled",
|
|
(GtkSignalFunc) save_toggle_update,
|
|
&use_raw);
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), use_raw);
|
|
gtk_widget_show (toggle);
|
|
|
|
toggle = gtk_radio_button_new_with_label (group, "Ascii");
|
|
group = gtk_radio_button_group (GTK_RADIO_BUTTON (toggle));
|
|
gtk_box_pack_start (GTK_BOX (toggle_vbox), toggle, FALSE, FALSE, 0);
|
|
gtk_signal_connect (GTK_OBJECT (toggle), "toggled",
|
|
(GtkSignalFunc) save_toggle_update,
|
|
&use_ascii);
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), use_ascii);
|
|
gtk_widget_show (toggle);
|
|
|
|
gtk_widget_show (toggle_vbox);
|
|
gtk_widget_show (frame);
|
|
|
|
gtk_widget_show (dlg);
|
|
|
|
gtk_main ();
|
|
gdk_flush ();
|
|
|
|
if (use_raw)
|
|
psvals.raw = TRUE;
|
|
else
|
|
psvals.raw = FALSE;
|
|
|
|
return psint.run;
|
|
}
|
|
|
|
/**************** FILE SCANNER UTILITIES **************/
|
|
|
|
/* pnmscanner_create ---
|
|
* Creates a new scanner based on a file descriptor. The
|
|
* look ahead buffer is one character initially.
|
|
*/
|
|
static PNMScanner *
|
|
pnmscanner_create (int fd)
|
|
{
|
|
PNMScanner *s;
|
|
|
|
s = (PNMScanner *)g_malloc(sizeof(PNMScanner));
|
|
s->fd = fd;
|
|
s->inbuf = 0;
|
|
s->eof = !read(s->fd, &(s->cur), 1);
|
|
return(s);
|
|
}
|
|
|
|
/* pnmscanner_destroy ---
|
|
* Destroys a scanner and its resources. Doesn't close the fd.
|
|
*/
|
|
static void
|
|
pnmscanner_destroy (PNMScanner *s)
|
|
{
|
|
if (s->inbuf) g_free(s->inbuf);
|
|
g_free(s);
|
|
}
|
|
|
|
/* pnmscanner_createbuffer ---
|
|
* Creates a buffer so we can do buffered reads.
|
|
*/
|
|
static void
|
|
pnmscanner_createbuffer (PNMScanner *s,
|
|
int bufsize)
|
|
{
|
|
s->inbuf = g_malloc(sizeof(char)*bufsize);
|
|
s->inbufsize = bufsize;
|
|
s->inbufpos = 0;
|
|
s->inbufvalidsize = read(s->fd, s->inbuf, bufsize);
|
|
}
|
|
|
|
/* pnmscanner_gettoken ---
|
|
* Gets the next token, eating any leading whitespace.
|
|
*/
|
|
static void
|
|
pnmscanner_gettoken (PNMScanner *s,
|
|
char *buf,
|
|
int bufsize)
|
|
{
|
|
int ctr=0;
|
|
|
|
pnmscanner_eatwhitespace(s);
|
|
while (!(s->eof) && !isspace(s->cur) && (s->cur != '#') && (ctr<bufsize))
|
|
{
|
|
buf[ctr++] = s->cur;
|
|
pnmscanner_getchar(s);
|
|
}
|
|
buf[ctr] = '\0';
|
|
}
|
|
|
|
/* pnmscanner_getchar ---
|
|
* Reads a character from the input stream
|
|
*/
|
|
static void
|
|
pnmscanner_getchar (PNMScanner *s)
|
|
{
|
|
if (s->inbuf)
|
|
{
|
|
s->cur = s->inbuf[s->inbufpos++];
|
|
if (s->inbufpos >= s->inbufvalidsize)
|
|
{
|
|
if (s->inbufsize > s->inbufvalidsize)
|
|
s->eof = 1;
|
|
else
|
|
s->inbufvalidsize = read(s->fd, s->inbuf, s->inbufsize);
|
|
s->inbufpos = 0;
|
|
}
|
|
}
|
|
else
|
|
s->eof = !read(s->fd, &(s->cur), 1);
|
|
}
|
|
|
|
/* pnmscanner_eatwhitespace ---
|
|
* Eats up whitespace from the input and returns when done or eof.
|
|
* Also deals with comments.
|
|
*/
|
|
static void
|
|
pnmscanner_eatwhitespace (PNMScanner *s)
|
|
{
|
|
int state = 0;
|
|
|
|
while (!(s->eof) && (state != -1))
|
|
{
|
|
switch (state)
|
|
{
|
|
case 0: /* in whitespace */
|
|
if (s->cur == '#')
|
|
{
|
|
state = 1; /* goto comment */
|
|
pnmscanner_getchar(s);
|
|
}
|
|
else if (!isspace(s->cur))
|
|
state = -1;
|
|
else
|
|
pnmscanner_getchar(s);
|
|
break;
|
|
|
|
case 1: /* in comment */
|
|
if (s->cur == '\n')
|
|
state = 0; /* goto whitespace */
|
|
pnmscanner_getchar(s);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/* Save interface functions */
|
|
|
|
static void
|
|
save_close_callback (GtkWidget *widget,
|
|
gpointer data)
|
|
{
|
|
gtk_main_quit ();
|
|
}
|
|
|
|
static void
|
|
save_ok_callback (GtkWidget *widget,
|
|
gpointer data)
|
|
{
|
|
psint.run = TRUE;
|
|
gtk_widget_destroy (GTK_WIDGET (data));
|
|
}
|
|
|
|
static void
|
|
save_toggle_update (GtkWidget *widget,
|
|
gpointer data)
|
|
{
|
|
int *toggle_val;
|
|
|
|
toggle_val = (int *) data;
|
|
|
|
if (GTK_TOGGLE_BUTTON (widget)->active)
|
|
*toggle_val = TRUE;
|
|
else
|
|
*toggle_val = FALSE;
|
|
}
|