summaryrefslogtreecommitdiff
path: root/imageto/input-pbm.c
blob: 614321475e04e974184f867b5745167f5c9bccf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/* input-pbm.c: read PBM files.

Copyright (C) 1990, 1991, 2011 Free Software Foundation, Inc.

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 3, 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., 675 Mass Ave, Cambridge, MA 02139, USA.  */

#include "config.h"

#include "file-input.h"

#include "main.h"
#include "image-header.h"
#include "input-pbm.h"

#include "pbmplus.h"
#include "pbm.h"


/* Where the input comes from.  */
static FILE *pbm_input_file;
static string pbm_input_filename;



/* Only one file can be open at a time.  We do no path searching.  If
   FILENAME can't be opened, we quit.  */

void
pbm_open_input_file (string filename)
{
  assert (pbm_input_file == NULL);
  
  pbm_input_file = xfopen (filename, "r");
  pbm_input_filename = filename;
}


/* Close the input file.  If it hasn't been opened, we quit.  */

void
pbm_close_input_file ()
{
  assert (pbm_input_file != NULL);
  
  xfclose (pbm_input_file, pbm_input_filename);
  pbm_input_file = NULL;
}



/* Read the header information.
   Modifies the global image_header in main.c.  */

void
pbm_get_header ()
{
  int width, height, format;

  pbm_readpbminit (pbm_input_file, &width, &height, &format);
  image_header.width = (two_bytes) width;
  image_header.height = (two_bytes) height;
  image_header.depth = 0;
  image_header.format = (two_bytes) format;
}



/* Read one scanline of the image.  */

boolean
pbm_get_scanline (one_byte *line_in_bits)
{
  int c = getc (pbm_input_file);
  
  if (c == EOF)
    return false;
    
  ungetc (c, pbm_input_file);
  pbm_readpbmrow (pbm_input_file, line_in_bits, image_header.width, 
		  image_header.format);

  print_scanline (line_in_bits, image_header.width);
  return true;
}