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
233
234
235
236
237
238
239
|
/*
* Authors:
* Christopher Brown <audiere@gmail.com>
* Ted Gould <ted@gould.cx>
*
* Copyright (C) 2007 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <libintl.h>
#include <gtkmm/box.h>
#include <gtkmm/adjustment.h>
#include <gtkmm/spinbutton.h>
#include <gtkmm.h>
#include <glib/gstdio.h>
#include "desktop.h"
#include "desktop-handles.h"
#include "selection.h"
#include "sp-object.h"
#include "util/glib-list-iterators.h"
#include "extension/effect.h"
#include "extension/system.h"
#include "imagemagick.h"
namespace Inkscape {
namespace Extension {
namespace Internal {
namespace Bitmap {
class ImageMagickDocCache: public Inkscape::Extension::Implementation::ImplementationDocumentCache {
friend class ImageMagick;
private:
void readImage(char const *xlink, Magick::Image *image);
protected:
Inkscape::XML::Node** _nodes;
Magick::Image** _images;
int _imageCount;
char** _caches;
unsigned* _cacheLengths;
const char** _originals;
public:
ImageMagickDocCache(Inkscape::UI::View::View * view);
~ImageMagickDocCache ( );
};
ImageMagickDocCache::ImageMagickDocCache(Inkscape::UI::View::View * view) :
Inkscape::Extension::Implementation::ImplementationDocumentCache(view),
_nodes(NULL),
_images(NULL),
_imageCount(0),
_caches(NULL),
_cacheLengths(NULL),
_originals(NULL)
{
SPDesktop *desktop = (SPDesktop*)view;
const GSList *selectedReprList = desktop->selection->reprList();
int selectCount = g_slist_length((GSList *)selectedReprList);
// Init the data-holders
_nodes = new Inkscape::XML::Node*[selectCount];
_originals = new const char*[selectCount];
_caches = new char*[selectCount];
_cacheLengths = new unsigned int[selectCount];
_images = new Magick::Image*[selectCount];
_imageCount = 0;
// Loop through selected nodes
for (; selectedReprList != NULL; selectedReprList = g_slist_next(selectedReprList))
{
Inkscape::XML::Node *node = reinterpret_cast<Inkscape::XML::Node *>(selectedReprList->data);
if (!strcmp(node->name(), "image") || !strcmp(node->name(), "svg:image"))
{
_nodes[_imageCount] = node;
char const *xlink = node->attribute("xlink:href");
_originals[_imageCount] = xlink;
_caches[_imageCount] = "";
_cacheLengths[_imageCount] = 0;
_images[_imageCount] = new Magick::Image();
readImage(xlink, _images[_imageCount]);
_imageCount++;
}
}
}
ImageMagickDocCache::~ImageMagickDocCache ( ) {
if (_nodes)
delete _nodes;
if (_originals)
delete _originals;
if (_caches)
delete _caches;
if (_cacheLengths)
delete _cacheLengths;
if (_images)
delete _images;
return;
}
void
ImageMagickDocCache::readImage(const char *xlink, Magick::Image *image)
{
// Find if the xlink:href is base64 data, i.e. if the image is embedded
char *search = (char *) g_strndup(xlink, 30);
if (strstr(search, "base64") != (char*)NULL) {
// 7 = strlen("base64") + strlen(",")
const char* pureBase64 = strstr(xlink, "base64") + 7;
Magick::Blob blob;
blob.base64(pureBase64);
image->read(blob);
}
else {
const gchar *path = xlink;
if (strncmp (xlink,"file:", 5) == 0) {
path = g_filename_from_uri(xlink, NULL, NULL);
}
try {
image->read(path);
} catch (...) {}
}
g_free(search);
}
bool
ImageMagick::load(Inkscape::Extension::Extension */*module*/)
{
return true;
}
Inkscape::Extension::Implementation::ImplementationDocumentCache *
ImageMagick::newDocCache (Inkscape::Extension::Extension * /*ext*/, Inkscape::UI::View::View * view) {
return new ImageMagickDocCache(view);
}
void
ImageMagick::effect (Inkscape::Extension::Effect *module, Inkscape::UI::View::View *document, Inkscape::Extension::Implementation::ImplementationDocumentCache * docCache)
{
refreshParameters(module);
if (docCache == NULL) { // should never happen
docCache = newDocCache(module, document);
}
ImageMagickDocCache * dc = dynamic_cast<ImageMagickDocCache *>(docCache);
if (dc == NULL) { // should really never happen
printf("AHHHHHHHHH!!!!!");
exit(1);
}
for (int i = 0; i < dc->_imageCount; i++)
{
try
{
Magick::Image effectedImage = *dc->_images[i]; // make a copy
applyEffect(&effectedImage);
Magick::Blob *blob = new Magick::Blob();
effectedImage.write(blob);
std::string raw_string = blob->base64();
const int raw_len = raw_string.length();
const char *raw_i = raw_string.c_str();
unsigned new_len = (int)(raw_len * (77.0 / 76.0) + 100);
if (new_len > dc->_cacheLengths[i]) {
dc->_cacheLengths[i] = (int)(new_len * 1.2);
dc->_caches[i] = new char[dc->_cacheLengths[i]];
}
char *formatted_i = dc->_caches[i];
const char *src;
for (src = "data:image/"; *src; )
*formatted_i++ = *src++;
for (src = effectedImage.magick().c_str(); *src ; )
*formatted_i++ = *src++;
for (src = ";base64, \n" ; *src; )
*formatted_i++ = *src++;
int col = 0;
while (*raw_i) {
*formatted_i++ = *raw_i++;
if (col++ > 76) {
*formatted_i++ = '\n';
col = 0;
}
}
if (col) {
*formatted_i++ = '\n';
}
*formatted_i = '\0';
dc->_nodes[i]->setAttribute("xlink:href", dc->_caches[i], true);
dc->_nodes[i]->setAttribute("sodipodi:absref", NULL, true);
}
catch (Magick::Exception &error_) {
printf("Caught exception: %s \n", error_.what());
}
//while(Gtk::Main::events_pending()) {
// Gtk::Main::iteration();
//}
}
}
/** \brief A function to get the prefences for the grid
\param moudule Module which holds the params
\param view Unused today - may get style information in the future.
Uses AutoGUI for creating the GUI.
*/
Gtk::Widget *
ImageMagick::prefs_effect(Inkscape::Extension::Effect *module, Inkscape::UI::View::View * view, sigc::signal<void> * changeSignal, Inkscape::Extension::Implementation::ImplementationDocumentCache * /*docCache*/)
{
SPDocument * current_document = view->doc();
using Inkscape::Util::GSListConstIterator;
GSListConstIterator<SPItem *> selected = sp_desktop_selection((SPDesktop *)view)->itemList();
Inkscape::XML::Node * first_select = NULL;
if (selected != NULL) {
first_select = (*selected)->getRepr();
}
return module->autogui(current_document, first_select, changeSignal);
}
}; /* namespace Bitmap */
}; /* namespace Internal */
}; /* namespace Extension */
}; /* namespace Inkscape */
|