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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
|
#define __SP_LATEX_C__
/*
* LaTeX Printing
*
* Author:
* Michael Forbes <miforbes@mbhs.edu>
*
* Copyright (C) 2004 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <signal.h>
#include <errno.h>
#include "libnr/n-art-bpath.h"
#include "sp-item.h"
#include "style.h"
#include "latex-pstricks.h"
#include <unit-constants.h>
#include "extension/system.h"
#include "extension/print.h"
#include "io/sys.h"
namespace Inkscape {
namespace Extension {
namespace Internal {
PrintLatex::PrintLatex (void): _stream(NULL)
{
}
PrintLatex::~PrintLatex (void)
{
if (_stream) fclose(_stream);
/* restore default signal handling for SIGPIPE */
#if !defined(_WIN32) && !defined(__WIN32__)
(void) signal(SIGPIPE, SIG_DFL);
#endif
return;
}
unsigned int
PrintLatex::setup (Inkscape::Extension::Print *mod)
{
return TRUE;
}
unsigned int
PrintLatex::begin (Inkscape::Extension::Print *mod, SPDocument *doc)
{
Inkscape::SVGOStringStream os;
int res;
FILE *osf, *osp;
const gchar * fn;
fn = mod->get_param_string("destination");
osf = NULL;
osp = NULL;
gsize bytesRead = 0;
gsize bytesWritten = 0;
GError* error = NULL;
gchar* local_fn = g_filename_from_utf8( fn,
-1, &bytesRead, &bytesWritten, &error);
fn = local_fn;
/* TODO: Replace the below fprintf's with something that does the right thing whether in
* gui or batch mode (e.g. --print=blah). Consider throwing an exception: currently one of
* the callers (sp_print_document_to_file, "ret = mod->begin(doc)") wrongly ignores the
* return code.
*/
if (fn != NULL) {
while (isspace(*fn)) fn += 1;
Inkscape::IO::dump_fopen_call(fn, "K");
osf = Inkscape::IO::fopen_utf8name(fn, "w+");
if (!osf) {
fprintf(stderr, "inkscape: fopen(%s): %s\n",
fn, strerror(errno));
return 0;
}
_stream = osf;
}
g_free(local_fn);
if (_stream) {
/* fixme: this is kinda icky */
#if !defined(_WIN32) && !defined(__WIN32__)
(void) signal(SIGPIPE, SIG_IGN);
#endif
}
res = fprintf(_stream, "%%LaTeX with PSTricks extensions\n");
/* flush this to test output stream as early as possible */
if (fflush(_stream)) {
/*g_print("caught error in sp_module_print_plain_begin\n");*/
if (ferror(_stream)) {
g_print("Error %d on output stream: %s\n", errno,
g_strerror(errno));
}
g_print("Printing failed\n");
/* fixme: should use pclose() for pipes */
fclose(_stream);
_stream = NULL;
fflush(stdout);
return 0;
}
// width and height in pt
_width = sp_document_width(doc) * PT_PER_PX;
_height = sp_document_height(doc) * PT_PER_PX;
NRRect d;
bool pageLandscape;
// printf("Page Bounding Box: %s\n", pageBoundingBox ? "TRUE" : "FALSE");
/* if (pageBoundingBox) {
d.x0 = d.y0 = 0;
d.x1 = ceil(_width);
d.y1 = ceil(_height);
} else */{ // no bounding boxes for now
SPItem* doc_item = SP_ITEM(sp_document_root(doc));
sp_item_invoke_bbox(doc_item, &d, sp_item_i2r_affine(doc_item), TRUE);
// convert from px to pt
d.x0 *= PT_PER_PX;
d.x1 *= PT_PER_PX;
d.y0 *= PT_PER_PX;
d.y1 *= PT_PER_PX;
}
if (res >= 0) {
os << "%%Creator: " << PACKAGE_STRING << "\n";
os << "%%Please note this file requires PSTricks extensions\n";
// 2004 Dec 10, BFC:
// The point of the following code is (1) to do the thing that's expected by users
// who have done File>New>A4_landscape or ...letter_landscape (i.e., rotate
// the output), while (2) not messing up users who simply want their output wider
// than it is tall (e.g., small figures for inclusion in LaTeX).
// The original patch by WQ only had the w>h condition.
{
double w = (d.x1 - d.x0); // width and height of bounding box, in pt
double h = (d.y1 - d.y0);
pageLandscape = (
(w > 0. && h > 0.) // empty documents fail this sanity check, have w<0, h<0
&& (w > h) // implies, but does not prove, the user wanted landscape
&& (w > 600) // approximate maximum printable width of an A4
)
? true : false;
}
if (pageLandscape) {
os << "\\rotate{90}\n";
}
os << "\\psset{xunit=.5pt,yunit=.5pt,runit=.5pt}\n";
// from now on we can output px, but they will be treated as pt
os << "\\begin{pspicture}(" << sp_document_width(doc) << "," << sp_document_height(doc) << ")\n";
}
return fprintf(_stream, "%s", os.str().c_str());
}
unsigned int
PrintLatex::finish (Inkscape::Extension::Print *mod)
{
int res;
if (!_stream) return 0;
res = fprintf(_stream, "\\end{pspicture}\n");
/* Flush stream to be sure. */
(void) fflush(_stream);
fclose(_stream);
_stream = NULL;
return 0;
}
unsigned int PrintLatex::comment (Inkscape::Extension::Print * module,
const char * comment)
{
if (!_stream) return 0; // XXX: fixme, returning -1 as unsigned.
return fprintf(_stream, "%%! %s\n",comment);
}
unsigned int
PrintLatex::fill(Inkscape::Extension::Print *mod,
NRBPath const *bpath, NRMatrix const *transform, SPStyle const *style,
NRRect const *pbox, NRRect const *dbox, NRRect const *bbox)
{
if (!_stream) return 0; // XXX: fixme, returning -1 as unsigned.
if (style->fill.type == SP_PAINT_TYPE_COLOR) {
Inkscape::SVGOStringStream os;
float rgb[3];
sp_color_get_rgb_floatv(&style->fill.value.color, rgb);
os << "{\n\\newrgbcolor{curcolor}{" << rgb[0] << " " << rgb[1] << " " << rgb[2] << "}\n";
os << "\\pscustom[fillstyle=solid,fillcolor=curcolor]\n{\n";
print_bpath(os, bpath->path, transform);
os << "}\n}\n";
fprintf(_stream, "%s", os.str().c_str());
}
return 0;
}
unsigned int
PrintLatex::stroke (Inkscape::Extension::Print *mod, const NRBPath *bpath, const NRMatrix *transform, const SPStyle *style,
const NRRect *pbox, const NRRect *dbox, const NRRect *bbox)
{
if (!_stream) return 0; // XXX: fixme, returning -1 as unsigned.
if (style->stroke.type == SP_PAINT_TYPE_COLOR) {
Inkscape::SVGOStringStream os;
float rgb[3];
sp_color_get_rgb_floatv(&style->stroke.value.color, rgb);
os << "{\n\\newrgbcolor{curcolor}{" << rgb[0] << " " << rgb[1] << " " << rgb[2] << "}\n";
os << "\\pscustom[linewidth=" << style->stroke_width.computed<< ",linecolor=curcolor";
if (style->stroke_dasharray_set &&
style->stroke_dash.n_dash &&
style->stroke_dash.dash) {
int i;
os << ",linestyle=dashed,dash=";
for (i = 0; i < style->stroke_dash.n_dash; i++) {
if ((i)) {
os << " ";
}
os << style->stroke_dash.dash[i];
}
}
os <<"]\n{\n";
print_bpath(os, bpath->path, transform);
os << "}\n}\n";
fprintf(_stream, "%s", os.str().c_str());
}
return 0;
}
void
PrintLatex::print_bpath(SVGOStringStream &os, const NArtBpath *bp, const NRMatrix *transform)
{
unsigned int closed;
NR::Matrix tf=*transform;
os << "\\newpath\n";
closed = FALSE;
while (bp->code != NR_END) {
using NR::X;
using NR::Y;
NR::Point const p1(bp->c(1) * tf);
NR::Point const p2(bp->c(2) * tf);
NR::Point const p3(bp->c(3) * tf);
double const x1 = p1[X], y1 = p1[Y];
double const x2 = p2[X], y2 = p2[Y];
double const x3 = p3[X], y3 = p3[Y];
switch (bp->code) {
case NR_MOVETO:
if (closed) {
os << "\\closepath\n";
}
closed = TRUE;
os << "\\moveto(" << x3 << "," << y3 << ")\n";
break;
case NR_MOVETO_OPEN:
if (closed) {
os << "\\closepath\n";
}
closed = FALSE;
os << "\\moveto(" << x3 << "," << y3 << ")\n";
break;
case NR_LINETO:
os << "\\lineto(" << x3 << "," << y3 << ")\n";
break;
case NR_CURVETO:
os << "\\curveto(" << x1 << "," << y1 << ")("
<< x2 << "," << y2 << ")("
<< x3 << "," << y3 << ")\n";
break;
default:
break;
}
bp += 1;
}
if (closed) {
os << "\\closepath\n";
}
}
bool
PrintLatex::textToPath(Inkscape::Extension::Print * ext)
{
return ext->get_param_bool("textToPath");
}
#include "clear-n_.h"
void
PrintLatex::init (void)
{
Inkscape::Extension::Extension * ext;
/* SVG in */
ext = Inkscape::Extension::build_from_mem(
"<inkscape-extension>\n"
"<name>" N_("LaTeX Print") "</name>\n"
"<id>" SP_MODULE_KEY_PRINT_LATEX "</id>\n"
"<param name=\"destination\" type=\"string\"></param>\n"
"<param name=\"textToPath\" type=\"boolean\">TRUE</param>\n"
"<print/>\n"
"</inkscape-extension>", new PrintLatex());
return;
}
} /* namespace Internal */
} /* namespace Extension */
} /* namespace Inkscape */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
|