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
|
/* This file is part of ksquirrel-libs (http://ksquirrel.sf.net)
Copyright (c) 2004 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
as32 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 <stdio.h>
#include <string.h>
#include "ksquirrel-libs/fmt_types.h"
#include "ksquirrel-libs/fmt_utils.h"
#include "ksquirrel-libs/fileio.h"
#include "ksquirrel-libs/error.h"
#include "fmt_codec_xwd_defs.h"
#include "fmt_codec_xwd.h"
#include "../xpm/codec_xwd.xpm"
/*
*
* The XWD (X Window Dump) format is used specifically to store screen
* dumps
*
* Created by the X Window System. Under X11, screen dumps are created by the
* xwd client. Using xwd, the window or background is selected to
* dump and an XWD file is produced containing an image of the window. If you
* issue the following command:
*
* $ xwd -root > output.xwd
*
*/
fmt_codec::fmt_codec() : fmt_codec_base()
{}
fmt_codec::~fmt_codec()
{}
void fmt_codec::options(codec_options *o)
{
o->version = "0.4.3";
o->name = "X Window Dump";
o->filter = "*.xwd ";
o->config = "";
o->mime = "";
o->mimetype = "image/x-xwd";
o->pixmap = codec_xwd;
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;
pal = NULL;
finfo.animated = false;
return SQE_OK;
}
s32 fmt_codec::read_next()
{
XWDFileHeader xfh;
currentImage++;
if(currentImage)
return SQE_NOTOK;
fmt_image image;
XWDColor color;
s8 str[256];
s32 i, ncolors;
if(!frs.readK(&xfh, sizeof(XWDFileHeader))) return SQE_R_BADFILE;
xfh.file_version = fmt_utils::konvertLong(xfh.file_version);
if(xfh.file_version != XWD_FILE_VERSION)
return SQE_R_BADFILE;
frs.get(str, 255, '\n');
frs.clear();
frs.seekg(fmt_utils::konvertLong(xfh.header_size), ios::beg);
pal_entr = ncolors = fmt_utils::konvertLong(xfh.ncolors);
pal = new RGB [ncolors];
if(!pal)
return SQE_R_NOMEMORY;
for(i = 0;i < ncolors;i++)
{
if(!frs.readK(&color, sizeof(XWDColor))) return SQE_R_BADFILE;
pal[i].r = (s8)fmt_utils::konvertWord(color.red);
pal[i].g = (s8)fmt_utils::konvertWord(color.green);
pal[i].b = (s8)fmt_utils::konvertWord(color.blue);
}
image.w = fmt_utils::konvertLong(xfh.pixmap_width);
image.h = fmt_utils::konvertLong(xfh.pixmap_height);
image.bpp = fmt_utils::konvertLong(xfh.bits_per_pixel);//fmt_utils::konvertLong(xfh.pixmap_depth);
if(image.bpp != 24 && image.bpp != 32)
return SQE_R_NOTSUPPORTED;
fmt_metaentry mt;
mt.group = "Window Name";
mt.data = str;
addmeta(mt);
image.compression = "-";
image.colorspace = "RGB";
filler = fmt_utils::konvertLong(xfh.bytes_per_line) - image.w * image.bpp / 8;
finfo.image.push_back(image);
return SQE_OK;
}
s32 fmt_codec::read_next_pass()
{
return SQE_OK;
}
s32 fmt_codec::read_scanline(RGBA *scan)
{
s32 i;
RGBA rgba;
RGB rgb;
u8 d;
fmt_image *im = image(currentImage);
fmt_utils::fillAlpha(scan, im->w);
switch(im->bpp)
{
case 24:
for(i = 0;i < im->w;i++)
{
if(!frs.readK(&rgb, sizeof(RGB))) return SQE_R_BADFILE;
memcpy(scan+i, &rgb, sizeof(RGB));
}
for(s32 s = 0;s < filler;s++)
if(!frs.readK(&d, 1))
return SQE_R_BADFILE;
break;
case 32:
for(i = 0;i < im->w;i++)
{
if(!frs.readK(&rgba, sizeof(RGBA))) return SQE_R_BADFILE;
scan[i].r = rgba.b;
scan[i].g = rgba.g;
scan[i].b = rgba.r;
}
for(s32 s = 0;s < filler;s++)
if(!frs.readK(&d, 1))
return SQE_R_BADFILE;
break;
}
return SQE_OK;
}
void fmt_codec::read_close()
{
frs.close();
delete [] pal;
pal = NULL;
finfo.meta.clear();
finfo.image.clear();
}
#include "fmt_codec_cd_func.h"
|