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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
/* This file is part of ksquirrel-libs (http://ksquirrel.sf.net)
Copyright (c) 2005 Dmitry Baryshev <ksquirrel@tut.by>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later
version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include <iostream>
#include <sstream>
#include <stdio.h>
#include <string.h>
#include "ksquirrel-libs/fmt_types.h"
#include "ksquirrel-libs/fileio.h"
#include "ksquirrel-libs/fmt_utils.h"
#include "fmt_codec_sct_defs.h"
#include "fmt_codec_sct.h"
#include "ksquirrel-libs/error.h"
#include "../xpm/codec_sct.xpm"
fmt_codec::fmt_codec() : fmt_codec_base()
{}
fmt_codec::~fmt_codec()
{}
void fmt_codec::options(codec_options *o)
{
o->version = "0.2.2";
o->name = "Scitex CT";
o->filter = "*.sct *.ct ";
o->config = "";
o->mime = "";
o->mimetype = "image/x-sct";
o->pixmap = codec_sct;
o->readable = true;
o->canbemultiple = false;
o->writestatic = false;
o->writeanimated = false;
o->needtempfile = false;
}
s32 fmt_codec::read_init(const std::string &file)
{
frs.open(file.c_str(), ios::binary | ios::in);
if(!frs.good())
return SQE_R_NOFILE;
currentImage = -1;
read_error = false;
finfo.animated = false;
return SQE_OK;
}
s32 fmt_codec::read_next()
{
currentImage++;
if(currentImage)
return SQE_NOTOK;
fmt_image image;
s8 comment[0x50 + 1], sig[2];
if(!frs.readK(comment, sizeof(comment) - 1)) return SQE_R_BADFILE;
if(!frs.readK(sig, sizeof(sig))) return SQE_R_BADFILE;
comment[0x50] = '\0';
frs.seekg(0x400, ios::beg);
if(!frs.readK(&sct, sizeof(sct_header))) return SQE_R_BADFILE;
sct.format = fmt_utils::konvertWord(sct.format);
if(sct.format != SCT_FORMAT_RGB && sct.format != SCT_FORMAT_GRAY && sct.format != SCT_FORMAT_CMYK)
return SQE_R_BADFILE;
if(sct.format == SCT_FORMAT_RGB && sct.channels != 3)
return SQE_R_BADFILE;
if(sct.format == SCT_FORMAT_GRAY && sct.channels != 1)
return SQE_R_BADFILE;
if(sct.format == SCT_FORMAT_CMYK && sct.channels != 4)
return SQE_R_BADFILE;
if((sct.width[0] != '+' && sct.width[0] != '-') || (sct.height[0] != '+' && sct.height[0] != '-'))
return SQE_R_BADFILE;
std::string buf;
buf.assign(sct.width, sizeof(sct.width));
std::stringstream ss(buf);
ss.setf(ios::hex);
ss >> image.h;
buf.assign(sct.height, sizeof(sct.height));
std::stringstream ss1(buf);
ss1.setf(ios::hex);
ss1 >> image.w;
image.compression = "-";
switch(sct.format)
{
case SCT_FORMAT_RGB:
image.colorspace = "RGB";
image.bpp = 24;
break;
case SCT_FORMAT_GRAY:
image.colorspace = "Grayscale";
image.bpp = 8;
break;
case SCT_FORMAT_CMYK:
image.colorspace = "CMYK";
image.bpp = 32;
break;
}
fmt_metaentry mt;
mt.group = "Comment";
mt.data = comment;
addmeta(mt);
finfo.image.push_back(image);
frs.seekg(0x800, ios::beg);
return (frs.good()) ? SQE_OK : SQE_R_BADFILE;
}
s32 fmt_codec::read_next_pass()
{
return SQE_OK;
}
s32 fmt_codec::read_scanline(RGBA *scan)
{
RGB rgb;
RGBA rgba;
u8 c, *p;
fmt_image *im = image(currentImage);
fmt_utils::fillAlpha(scan, im->w);
switch(sct.format)
{
case SCT_FORMAT_RGB:
for(s32 ch = 0;ch < 3;ch++)
for(s32 i = 0;i < im->w;i++)
{
if(!frs.readK(&c, sizeof(u8))) return SQE_R_BADFILE;
p = (u8 *)(scan + i);
*(p + ch) = c;
}
break;
case SCT_FORMAT_GRAY:
for(s32 i = 0;i < im->w;i++)
{
if(!frs.readK(&c, sizeof(c))) return SQE_R_BADFILE;
(scan+i)->r = c;
(scan+i)->g = c;
(scan+i)->b = c;
}
break;
case SCT_FORMAT_CMYK:
for(s32 ch = 0;ch < 4;ch++)
for(s32 i = 0;i < im->w;i++)
{
if(!frs.readK(&c, sizeof(u8))) return SQE_R_BADFILE;
p = (u8 *)(scan + i);
*(p + ch) = c;
}
for(s32 i = 0;i < im->w;i++)
{
scan[i].r = (scan[i].r * scan[i].a) >> 8;
scan[i].g = (scan[i].g * scan[i].a) >> 8;
scan[i].b = (scan[i].b * scan[i].a) >> 8;
scan[i].a = 255;
}
break;
}
return SQE_OK;
}
void fmt_codec::read_close()
{
frs.close();
finfo.meta.clear();
finfo.image.clear();
}
#include "fmt_codec_cd_func.h"
|