~ubuntu-branches/ubuntu/trusty/electricsheep/trusty-proposed

« back to all changes in this revision

Viewing changes to flam3/img.h

  • Committer: Bazaar Package Importer
  • Author(s): Alexis Sukrieh
  • Date: 2005-06-17 18:28:17 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050617182817-3ju56pnktawusjt8
Tags: 2.6.2-1
* New upstream release: 2.6.2.
  (closes: #309852)
* Added myself as maintainer (Sander Smeenk offered it to me).
* Added dpatch for handling changes applied on upstream sources.
* Added all missing manpages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    flame - cosmic recursive fractal flames
 
3
    Copyright (C) 2002-2003  Scott Draves <source@flam3.com>
 
4
 
 
5
    This program is free software; you can redistribute it and/or modify
 
6
    it under the terms of the GNU General Public License as published by
 
7
    the Free Software Foundation; either version 2 of the License, or
 
8
    (at your option) any later version.
 
9
 
 
10
    This program is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
    GNU General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU General Public License
 
16
    along with this program; if not, write to the Free Software
 
17
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
*/
 
19
 
 
20
 
 
21
static char *jpeg_h_id =
 
22
"@(#) $Id: img.h,v 1.5 2005/05/07 01:45:34 spotspot Exp $";
 
23
 
 
24
#include <stdio.h>
 
25
 
 
26
void write_jpeg(FILE *file, char *image, int width, int height);
 
27
void write_png(FILE *file, char *image, int width, int height);
 
28
 
 
29
/* returns RGBA pixel array or NULL on failure */
 
30
unsigned char *read_png(FILE *file, int *width, int *height);
 
31
unsigned char *read_jpeg(FILE *file, int *width, int *height);