]>
git.saurik.com Git - wxWidgets.git/blob - src/common/imagxpm.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxXPMHandler
4 // Author: Vaclav Slavik, Robert Roebling
6 // Copyright: (c) 2001 Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
12 This file is partially based on source code of ImageMagick by John Cristy. Its
13 license is as follows:
15 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
26 % Read/Write ImageMagick Image Format. %
34 % Copyright (C) 2001 ImageMagick Studio, a non-profit organization dedicated %
35 % to making software imaging solutions freely available. %
37 % Permission is hereby granted, free of charge, to any person obtaining a %
38 % copy of this software and associated documentation files ("ImageMagick"), %
39 % to deal in ImageMagick without restriction, including without limitation %
40 % the rights to use, copy, modify, merge, publish, distribute, sublicense, %
41 % and/or sell copies of ImageMagick, and to permit persons to whom the %
42 % ImageMagick is furnished to do so, subject to the following conditions: %
44 % The above copyright notice and this permission notice shall be included in %
45 % all copies or substantial portions of ImageMagick. %
47 % The software is provided "as is", without warranty of any kind, express or %
48 % implied, including but not limited to the warranties of merchantability, %
49 % fitness for a particular purpose and noninfringement. In no event shall %
50 % ImageMagick Studio be liable for any claim, damages or other liability, %
51 % whether in an action of contract, tort or otherwise, arising from, out of %
52 % or in connection with ImageMagick or the use or other dealings in %
55 % Except as contained in this notice, the name of the ImageMagick Studio %
56 % shall not be used in advertising or otherwise to promote the sale, use or %
57 % other dealings in ImageMagick without prior written authorization from the %
58 % ImageMagick Studio. %
60 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
66 #pragma implementation "imagxpm.h"
69 // For compilers that support precompilation, includes "wx.h".
70 #include "wx/wxprec.h"
80 #if wxUSE_IMAGE && wxUSE_XPM
82 #include "wx/imagxpm.h"
83 #include "wx/wfstream.h"
87 #include "wx/xpmdecod.h"
89 IMPLEMENT_DYNAMIC_CLASS(wxXPMHandler
,wxImageHandler
)
91 //-----------------------------------------------------------------------------
93 //-----------------------------------------------------------------------------
97 bool wxXPMHandler::LoadFile(wxImage
*image
,
98 wxInputStream
& stream
,
99 bool verbose
, int WXUNUSED(index
))
101 wxXPMDecoder decoder
;
103 wxImage img
= decoder
.ReadFile(stream
);
110 bool wxXPMHandler::SaveFile(wxImage
* image
,
111 wxOutputStream
& stream
, bool WXUNUSED(verbose
))
118 static const char Cixel
[MaxCixels
+1] =
119 " .XoO+@#$%&*=-;:>,<1234567890qwertyuipasdfghjk"
120 "lzxcvbnmMNBVCZASDFGHJKLPIUYTREWQ!~^/()_`'][{}|";
125 cols
= image
->CountColours();
127 for ( k
= MaxCixels
; cols
> k
; k
*= MaxCixels
)
130 // 2. write the header:
131 tmp
.Printf("/* XPM */\n"
132 "static char *xpm_data[] = {\n"
133 "/* columns rows colors chars-per-pixel */\n"
134 "\"%i %i %i %i\",\n",
135 image
->GetWidth(), image
->GetHeight(), cols
, chars_per_pixel
);
136 stream
.Write(tmp
.mb_str(), tmp
.Length());
138 // 3. create color symbols table:
139 wxHashTable
table(wxKEY_INTEGER
);
140 image
->ComputeHistogram(table
);
142 char *symbols_data
= new char[cols
* (chars_per_pixel
+1)];
143 char **symbols
= new char*[cols
];
145 // 2a. find mask colour:
147 if (image
->HasMask())
148 mask_key
= (image
->GetMaskRed() << 16) |
149 (image
->GetMaskGreen() << 8) | image
->GetMaskBlue();
151 // 2b. generate colour table:
154 while ((node
= table
.Next()) != NULL
)
156 wxHNode
*hnode
= (wxHNode
*) node
->GetData();
157 long index
= hnode
->index
;
158 symbols
[index
] = symbols_data
+ index
* (chars_per_pixel
+1);
159 char *sym
= symbols
[index
];
161 k
= index
% MaxCixels
;
163 for (j
= 1; j
< chars_per_pixel
; j
++)
165 k
= ((index
- k
) / MaxCixels
) % MaxCixels
;
170 long key
= node
->GetKeyInteger();
173 tmp
.Printf(wxT("\"%s c Black\",\n"), sym
);
174 else if (key
== mask_key
)
175 tmp
.Printf(wxT("\"%s c None\",\n"), sym
);
177 tmp
.Printf(wxT("\"%s c #%s%s%s\",\n"), sym
,
178 wxDecToHex((unsigned char)(key
>> 16)).c_str(),
179 wxDecToHex((unsigned char)(key
>> 8)).c_str(),
180 wxDecToHex((unsigned char)(key
)).c_str());
181 stream
.Write(tmp
.mb_str(), tmp
.Length());
184 tmp
= wxT("/* pixels */\n");
185 stream
.Write(tmp
.mb_str(), tmp
.Length());
187 unsigned char *data
= image
->GetData();
188 for (j
= 0; j
< image
->GetHeight(); j
++)
190 tmp_c
= '\"'; stream
.Write(&tmp_c
, 1);
191 for (i
= 0; i
< image
->GetWidth(); i
++, data
+= 3)
193 unsigned long key
= (data
[0] << 16) | (data
[1] << 8) | (data
[2]);
194 wxHNode
*hnode
= (wxHNode
*) table
.Get(key
);
195 stream
.Write(symbols
[hnode
->index
], chars_per_pixel
);
197 tmp_c
= '\"'; stream
.Write(&tmp_c
, 1);
198 if ( j
+ 1 < image
->GetHeight() )
200 tmp_c
= ','; stream
.Write(&tmp_c
, 1);
202 tmp_c
= '\n'; stream
.Write(&tmp_c
, 1);
205 stream
.Write(tmp
.mb_str(), 3);
208 delete[] symbols_data
;
213 bool wxXPMHandler::DoCanRead(wxInputStream
& stream
)
215 wxXPMDecoder decoder
;
216 return decoder
.CanRead(stream
);
219 #endif // wxUSE_STREAMS
221 #endif // wxUSE_XPM && wxUSE_IMAGE