/[public]/psiconv/trunk/program/psiconv/gen_image.c
ViewVC logotype

Diff of /psiconv/trunk/program/psiconv/gen_image.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 49 Revision 270
1/* 1/*
2 * gen_image.c - Part of psiconv, a PSION 5 file formats converter 2 * gen_image.c - Part of psiconv, a PSION 5 file formats converter
3 * Copyright (c) 1999 Frodo Looijaard <frodol@dds.nl> 3 * Copyright (c) 1999-2005 Frodo Looijaard <frodo@frodo.looijaard.name>
4 * 4 *
5 * This program is free software; you can redistribute it and/or modify 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 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 7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version. 8 * (at your option) any later version.
16 * along with this program; if not, write to the Free Software 16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */ 18 */
19 19
20#include "config.h" 20#include "config.h"
21#include "data.h" 21#include "psiconv/data.h"
22#include "gen.h" 22#include "gen.h"
23#include "psiconv.h"
23#include <string.h> 24#include <string.h>
24#include "psiconv.h" 25#include <stdlib.h>
25 26
26#if IMAGEMAGICK 27#ifdef IMAGEMAGICK
27#include <magick/magick.h> 28#include "magick-aux.h"
29#endif
30
31#ifdef DMALLOC
32#include "dmalloc.h"
33#endif
34
35#ifdef IMAGEMAGICK
36static Image *get_paint_data_section(psiconv_paint_data_section sec);
37static void image_to_list(psiconv_list list,Image *image,const char *dest);
38static void gen_image_list(const psiconv_config config,psiconv_list list,
39 const psiconv_list sections, const char *dest);
40static void gen_clipart(const psiconv_config config,psiconv_list list,
41 const psiconv_clipart_f f, const char *dest);
42static void gen_mbm(const psiconv_config config,psiconv_list list,
43 const psiconv_mbm_f f, const char *dest);
44static void gen_sketch(const psiconv_config config,psiconv_list list,
45 const psiconv_sketch_f f, const char *dest);
46static int gen_image(psiconv_config config, psiconv_list list,
47 const psiconv_file file, const char *dest,
48 const encoding encoding_type);
28 49
29/* This is ridiculously simple using ImageMagick. Without it, it would 50/* This is ridiculously simple using ImageMagick. Without it, it would
30 be quite somewhat harder - it will be left for later on. 51 be quite somewhat harder - it will be left for later on.
31 Note that we ignore any errors. Dangerous... */ 52 Note that we ignore any errors. Dangerous... */
32 53
33static Image *get_paint_data_section(psiconv_paint_data_section sec) 54Image *get_paint_data_section(psiconv_paint_data_section sec)
34{ 55{
35 Image *image; 56 Image *image;
36 float *pixel, *p, *red, *green, *blue; 57 float *pixel, *p, *red, *green, *blue;
37 int x,y; 58 int x,y;
38 ExceptionInfo *exc; 59 ExceptionInfo exc;
39 60
40 GetExceptionInfo(exc); 61 GetExceptionInfo(&exc);
41 red = sec->red; 62 red = sec->red;
42 green = sec->green; 63 green = sec->green;
43 blue = sec->blue; 64 blue = sec->blue;
44 p = pixel = malloc(sec->xsize * sec->ysize * 3 * sizeof(float)); 65 p = pixel = malloc(sec->xsize * sec->ysize * 3 * sizeof(float));
45 for (y = 0; y < sec->ysize; y++) { 66 for (y = 0; y < sec->ysize; y++) {
47 *p++ = *red++; 68 *p++ = *red++;
48 *p++ = *green++; 69 *p++ = *green++;
49 *p++ = *blue++; 70 *p++ = *blue++;
50 } 71 }
51 } 72 }
73
52 image = ConstituteImage(sec->xsize,sec->ysize,"RGB",FloatPixel,pixel,exc); 74 image = ConstituteImage(sec->xsize,sec->ysize,"RGB",FloatPixel,pixel,&exc);
75 if (! image || (exc.severity != UndefinedException)) {
76 MagickError(exc.severity,exc.reason,exc.description);
77 exit(1);
78 }
53 free(pixel); 79 free(pixel);
80
54 DestroyExceptionInfo(exc); 81 DestroyExceptionInfo(&exc);
55 82
56 return image; 83 return image;
57} 84}
58 85
59#endif
60 86
61static int psiconv_gen_image_clipart(FILE *of, psiconv_clipart_f f, 87void image_to_list(psiconv_list list,Image *image,const char *dest)
62 const char *dest)
63{ 88{
64#if IMAGEMAGICK
65 psiconv_clipart_section section;
66 MagickInfo *mi = GetMagickInfo(dest);
67 ImageInfo image_info; 89 ImageInfo *image_info;
90 ExceptionInfo exc;
91 size_t length;
92 char *data;
93 int i;
94
95 strcpy(image->magick,dest);
96 image_info = CloneImageInfo(NULL);
97 GetExceptionInfo(&exc);
98 data = ImageToBlob(image_info,image,&length,&exc);
99 if (!data || (exc.severity != UndefinedException)) {
100 MagickError(exc.severity,exc.reason,exc.description);
101 exit(1);
102 }
103 for (i = 0; i < length; i++) {
104 if (psiconv_list_add(list,data+i)) {
105 fprintf(stderr,"Out of memory error");
106 exit(1);
107 }
108 }
109 DestroyExceptionInfo(&exc);
110 DestroyImageInfo(image_info);
111}
112
113void gen_image_list(const psiconv_config config,psiconv_list list,
114 const psiconv_list sections, const char *dest)
115{
116 psiconv_paint_data_section section;
117 const MagickInfo *mi;
118 ImageInfo *image_info;
68 Image *image = NULL; 119 Image *image = NULL;
69 Image *last_image = NULL; 120 Image *last_image = NULL;
70 Image *this_image; 121 Image *this_image, *images;
122 ExceptionInfo exc;
71 int i; 123 int i;
124
125 GetExceptionInfo(&exc);
126 mi = GetMagickInfo(dest,&exc);
127 if (!mi || (exc.severity != UndefinedException)) {
128 MagickError(exc.severity,exc.reason,exc.description);
129 exit(1);
72 130 }
131
73 if ((psiconv_list_length(f->sections) < 1) || 132 if ((psiconv_list_length(sections) < 1) ||
74 ((psiconv_list_length(f->sections)) > 1 && ! (mi->adjoin))) 133 ((psiconv_list_length(sections)) > 1 && ! (mi->adjoin))) {
75#endif 134 fprintf(stderr,"This image type supports only one image\n");
76 return -1; 135 exit(1);
77#if IMAGEMAGICK 136 }
137
78 for (i = 0; i < psiconv_list_length(f->sections); i++) { 138 for (i = 0; i < psiconv_list_length(sections); i++) {
79 section = psiconv_list_get(f->sections,i); 139 if (!(section = psiconv_list_get(sections,i))) {
140 fprintf(stderr,"Internal data structures corrupted\n");
141 exit(1);
142 }
80 this_image = get_paint_data_section(section->picture); 143 this_image = get_paint_data_section(section);
81 if (! image) { 144 if (! image) {
82 image = this_image; 145 image = this_image;
83 last_image = image;
84 } else { 146 } else {
85 last_image->next=this_image; 147 last_image->next=this_image;
86 this_image->previous=last_image; 148 this_image->previous=last_image;
87 this_image->scene=i; 149 }
88 last_image=this_image; 150 last_image = this_image;
89 } 151 }
152
153 image_info = CloneImageInfo(NULL);
154 if (image->next) {
155 images = CoalesceImages(image,&exc);
156 if (!images || (exc.severity != UndefinedException)) {
157 MagickError(exc.severity,exc.reason,exc.description);
158 exit(1);
90 } 159 }
160 } else
161 images = image;
91 162
163 image_to_list(list,image,dest);
164
165 DestroyExceptionInfo(&exc);
92 GetImageInfo(&image_info); 166 DestroyImageInfo(image_info);
93 image_info.file = of; 167 if (image != images)
94 strcpy(image->magick, dest); 168 DestroyImages(image);
95 image_info.adjoin=1; 169 DestroyImages(images);
96 WriteImage(&image_info,image);
97 return 0;
98#endif
99} 170}
100 171
101static int psiconv_gen_image_mbm(FILE *of, psiconv_mbm_f f, const char *dest) 172void gen_clipart(const psiconv_config config,psiconv_list list,
173 const psiconv_clipart_f f, const char *dest)
102{ 174{
103#if IMAGEMAGICK
104 psiconv_paint_data_section section;
105 MagickInfo *mi = GetMagickInfo(dest);
106 ImageInfo image_info;
107 Image *image = NULL;
108 Image *last_image = NULL;
109 Image *this_image;
110 int i; 175 int i;
176 psiconv_list sections;
177 psiconv_clipart_section section;
178
179 if (!(sections = psiconv_list_new(sizeof(*section->picture)))) {
180 fprintf(stderr,"Out of memory error\n");
181 exit(1);
111 182 }
112 if ((psiconv_list_length(f->sections) < 1) ||
113 ((psiconv_list_length(f->sections)) > 1 && ! (mi->adjoin)))
114#endif
115 return -1;
116#if IMAGEMAGICK
117 for (i = 0; i < psiconv_list_length(f->sections); i++) { 183 for (i = 0; i < psiconv_list_length(f->sections); i ++) {
118 section = psiconv_list_get(f->sections,i); 184 if (!(section = psiconv_list_get(f->sections,i))) {
119 this_image = get_paint_data_section(section); 185 fprintf(stderr,"Internal data structures corrupted\n");
120 if (! image) { 186 exit(1);
121 image = this_image;
122 last_image = image;
123 } else {
124 last_image->next=this_image;
125 this_image->previous=last_image;
126 this_image->scene=i;
127 last_image=this_image;
128 }
129 } 187 }
130 188 if ((psiconv_list_add(sections,section->picture))) {
131 GetImageInfo(&image_info); 189 fprintf(stderr,"Out of memory error\n");
132 image_info.file = of; 190 exit(1);
133 strcpy(image->magick, dest); 191 }
134 image_info.adjoin=1; 192 }
135 WriteImage(&image_info,image); 193 gen_image_list(config,list,sections,dest);
136 return 0; 194 psiconv_list_free(sections);
137#endif
138} 195}
139 196
140static void psiconv_gen_image_sketch(FILE *of, psiconv_sketch_f f, 197void gen_mbm(const psiconv_config config,psiconv_list list,
141 const char *dest) 198 const psiconv_mbm_f f, const char *dest)
142{ 199{
143#if IMAGEMAGICK 200 gen_image_list(config,list,f->sections,dest);
144 ImageInfo image_info; 201}
202
203
204void gen_sketch(const psiconv_config config,psiconv_list list,
205 const psiconv_sketch_f f, const char *dest)
206{
145 Image *image; 207 Image *image;
146 208
147 image = get_paint_data_section(f->sketch_sec->picture); 209 image = get_paint_data_section(f->sketch_sec->picture);
148 GetImageInfo(&image_info); 210 image_to_list(list,image,dest);
149 image_info.file = of; 211 DestroyImage(image);
150 strcpy(image->magick, dest);
151 WriteImage(&image_info,image);
152#endif
153} 212}
154 213
155static int psiconv_gen_image(FILE * of, const psiconv_file file, 214
156 const char *dest) 215int gen_image(psiconv_config config, psiconv_list list,
216 const psiconv_file file, const char *dest,
217 const encoding encoding_type)
157{ 218{
158 if (file->type == psiconv_mbm_file) 219 if (file->type == psiconv_mbm_file)
159 return psiconv_gen_image_mbm(of,(psiconv_mbm_f) file->file,dest); 220 gen_mbm(config,list,(psiconv_mbm_f) file->file,dest);
160 if (file->type == psiconv_clipart_file) 221 else if (file->type == psiconv_clipart_file)
161 return psiconv_gen_image_clipart(of,(psiconv_clipart_f) file->file,dest); 222 gen_clipart(config,list,
223 (psiconv_clipart_f) file->file,dest);
224 else
162 else if (file->type == psiconv_sketch_file) { 225 if (file->type == psiconv_sketch_file) {
163 psiconv_gen_image_sketch(of,(psiconv_sketch_f) file->file,dest); 226 gen_sketch(config, list,(psiconv_sketch_f) file->file,dest);
164 return 0;
165 } else 227 } else
166 return -1; 228 return -1;
229 return 0;
167} 230}
231
232#endif
168 233
169void init_image(void) 234void init_image(void)
170{ 235{
171 struct psiconv_fileformat ff; 236 struct fileformat_s ff;
172#if IMAGEMAGICK 237#if IMAGEMAGICK
173 MagickInfo *mi; 238 const MagickInfo *mi;
174 ff.output = psiconv_gen_image; 239 ff.output = gen_image;
175 for (mi = GetMagickInfo(NULL); mi ; mi = mi->next) { 240 for (mi = GetMagickFileList(); mi ; mi = mi->next) {
176 if (mi->encoder) { 241 if (mi->encoder) {
177 ff.name = strdup(mi->tag); 242 ff.name = strdup(mi->name);
178 ff.description = strdup(mi->description); 243 ff.description = strdup(mi->description);
244 ff.supported_format = FORMAT_CLIPART_SINGLE | FORMAT_MBM_SINGLE |
245 FORMAT_SKETCH;
246 if (mi->adjoin)
247 ff.supported_format |= FORMAT_MBM_MULTIPLE | FORMAT_CLIPART_MULTIPLE;
179 psiconv_list_add(fileformat_list,&ff); 248 psiconv_list_add(fileformat_list,&ff);
180 } 249 }
181 } 250 }
182#endif 251#endif
183} 252}

Legend:
Removed from v.49  
changed lines
  Added in v.270

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26