summaryrefslogtreecommitdiffstats
path: root/src/dom/odf/SvgOdg.cpp
blob: 2b1161310727b3c861e5b6665c28eecf4a0eb9a7 (plain)
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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
/**
 *
 * This is a small experimental class for converting between
 * SVG and OpenDocument .odg files.   This code is not intended
 * to be a permanent solution for SVG-to-ODG conversion.  Rather,
 * it is a quick-and-easy test bed for ideas which will be later
 * recoded into C++.
 *
 * ---------------------------------------------------------------------
 *
 * SvgOdg - A program to experiment with conversions between SVG and ODG
 * Copyright (C) 2006 Bob Jamison
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 *
 * For more information, please write to rwjj@earthlink.net
 *
 */


/**
 *
 */
public class SvgOdg
{



/**
 * Namespace declarations
 */
public static final String SVG_NS =
    "http://www.w3.org/2000/svg";
public static final String XLINK_NS =
    "http://www.w3.org/1999/xlink";
public static final String ODF_NS =
    "urn:oasis:names:tc:opendocument:xmlns:office:1.0";
public static final String ODG_NS =
    "urn:oasis:names:tc:opendocument:xmlns:drawing:1.0";
public static final String ODSVG_NS =
    "urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0";


DecimalFormat nrfmt;
//static final double pxToCm = 0.0339;
static final double pxToCm  = 0.0275;
static final double piToRad = 0.0174532925;
BufferedWriter out;
BufferedReader in;
int imageNr;
int styleNr;

//########################################################################
//#  M E S S A G E S
//########################################################################

/**
 *
 */
void err(String msg)
{
    System.out.println("SvgOdg ERROR:" + msg);
}

/**
 *
 */
void trace(String msg)
{
    System.out.println("SvgOdg:" + msg);
}




//########################################################################
//#  I N P U T    /    O U T P U T
//########################################################################

boolean po(String s)
{
    try
        {
        out.write(s);
        }
    catch(IOException e)
        {
        return false;
        }
    return true;
}

//########################################################################
//#  U T I L I T Y
//########################################################################

public void dumpDocument(Document doc)
{
    String s = "";
    try
        {
        TransformerFactory factory = TransformerFactory.newInstance();
        Transformer trans = factory.newTransformer();
        DOMSource source = new DOMSource(doc);
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        StreamResult result = new StreamResult(bos);
        trans.transform(source, result);
        byte buf[] = bos.toByteArray();
        s = new String(buf);
        }
    catch (javax.xml.transform.TransformerException e)
        {
        }
    trace("doc:" + s);
}


//########################################################################
//#  I N N E R    C L A S S    ImageInfo
//########################################################################
public class ImageInfo
{
String name;
String newName;
byte   buf[];

public String getName()
{
    return name;
}

public String getNewName()
{
    return newName;
}


public byte[] getBuf()
{
    return buf;
}

public ImageInfo(String name, String newName, byte buf[])
{
    this.name = name;
    this.name = newName;
    this.buf  = buf;
}

}
//########################################################################
//#  I N N E R    C L A S S    StyleInfo
//########################################################################
public class StyleInfo
{

String name;
public String getName()
{
    return name;
}

String cssStyle;
public String getCssStyle()
{
    return cssStyle;
}

String stroke;
public String getStroke()
{
    return stroke;
}

String strokeColor;
public String getStrokeColor()
{
    return strokeColor;
}

String strokeWidth;
public String getStrokeWidth()
{
    return strokeWidth;
}

String fill;
public String getFill()
{
    return fill;
}

String fillColor;
public String getFillColor()
{
    return fillColor;
}

public StyleInfo(String name, String cssStyle)
{
    this.name     = name;
    this.cssStyle = cssStyle;
    fill  = "none";
    stroke = "none";
}

}
//########################################################################
//#  E N D    I N N E R    C L A S S E S
//########################################################################




//########################################################################
//#  V A R I A B L E S
//########################################################################

/**
 * ODF content.xml file
 */
Document content;
public Document getContent()
{
    return content;
}

/**
 * ODF meta.xml file
 */
Document meta;
public Document getMeta()
{
    return meta;
}

/**
 * SVG file
 */
Document       svg;
public Document getSvg()
{
    return svg;
}

/**
 * Loaded ODF or SVG images
 */
ArrayList<ImageInfo> images;
public ArrayList<ImageInfo> getImages()
{
    return images;
}

/**
 * CSS styles
 */
HashMap<String, StyleInfo> styles;
public HashMap<String, StyleInfo> getStyles()
{
    return styles;
}





//########################################################################
//#  S V G    T O    O D F
//########################################################################

class PathData
{
String cmd;
double nr[];
PathData(String s, double buf[])
{
    cmd=s; nr = buf;
}
}

double getPathNum(StringTokenizer st)
{
    if (!st.hasMoreTokens())
        return 0.0;
    String s = st.nextToken();
    double nr = Double.parseDouble(s);
    return nr;
}

String parsePathData(String pathData, double bounds[])
{
    double minx = Double.MAX_VALUE;
    double maxx = Double.MIN_VALUE;
    double miny = Double.MAX_VALUE;
    double maxy = Double.MIN_VALUE;
    //trace("#### pathData:" + pathData);
    ArrayList<PathData> data = new ArrayList<PathData>();
    StringTokenizer st = new StringTokenizer(pathData, " ,");
    while (true)
        {
        String s = st.nextToken();
        if ( s.equals("z") || s.equals("Z") )
            {
            PathData pd = new PathData(s, new double[0]);
            data.add(pd);
            break;
            }
        else if ( s.equals("h") || s.equals("H") )
            {
            double d[] = new double[1];
            d[0] = getPathNum(st) * pxToCm;
            if (d[0] < minx)  minx = d[0];
            else if (d[0] > maxx) maxx = d[0];
            PathData pd = new PathData(s, d);
            data.add(pd);
            }
        else if ( s.equals("v") || s.equals("V") )
            {
            double d[] = new double[1];
            d[0] = getPathNum(st) * pxToCm;
            if (d[0] < miny) miny = d[0];
            else if (d[0] > maxy) maxy = d[0];
            PathData pd = new PathData(s, d);
            data.add(pd);
            }
        else if ( s.equals("m") || s.equals("M") ||
             s.equals("l") || s.equals("L") ||
             s.equals("t") || s.equals("T")  )
            {
            double d[] = new double[2];
            d[0] = getPathNum(st) * pxToCm;
            d[1] = getPathNum(st) * pxToCm;
            if (d[0] < minx)  minx = d[0];
            else if (d[0] > maxx) maxx = d[0];
            if (d[1] < miny) miny = d[1];
            else if (d[1] > maxy) maxy = d[1];
            PathData pd = new PathData(s, d);
            data.add(pd);
            }
        else if ( s.equals("q") || s.equals("Q") ||
             s.equals("s") || s.equals("S")  )
            {
            double d[] = new double[4];
            d[0] = getPathNum(st) * pxToCm;
            d[1] = getPathNum(st) * pxToCm;
            if (d[0] < minx)  minx = d[0];
            else if (d[0] > maxx) maxx = d[0];
            if (d[1] < miny) miny = d[1];
            else if (d[1] > maxy) maxy = d[1];
            d[2] = getPathNum(st) * pxToCm;
            d[3] = getPathNum(st) * pxToCm;
            if (d[2] < minx)  minx = d[2];
            else if (d[2] > maxx) maxx = d[2];
            if (d[3] < miny) miny = d[3];
            else if (d[3] > maxy) maxy = d[3];
            PathData pd = new PathData(s, d);
            data.add(pd);
            }
        else if ( s.equals("c") || s.equals("C") )
            {
            double d[] = new double[6];
            d[0] = getPathNum(st) * pxToCm;
            d[1] = getPathNum(st) * pxToCm;
            if (d[0] < minx)  minx = d[0];
            else if (d[0] > maxx) maxx = d[0];
            if (d[1] < miny) miny = d[1];
            else if (d[1] > maxy) maxy = d[1];
            d[2] = getPathNum(st) * pxToCm;
            d[3] = getPathNum(st) * pxToCm;
            if (d[2] < minx)  minx = d[2];
            else if (d[2] > maxx) maxx = d[2];
            if (d[3] < miny) miny = d[3];
            else if (d[3] > maxy) maxy = d[3];
            d[4] = getPathNum(st) * pxToCm;
            d[5] = getPathNum(st) * pxToCm;
            if (d[4] < minx)  minx = d[4];
            else if (d[4] > maxx) maxx = d[4];
            if (d[5] < miny) miny = d[5];
            else if (d[5] > maxy) maxy = d[5];
            PathData pd = new PathData(s, d);
            data.add(pd);
            }
        else if ( s.equals("a") || s.equals("A") )
            {
            double d[] = new double[6];
            d[0] = getPathNum(st) * pxToCm;
            d[1] = getPathNum(st) * pxToCm;
            if (d[0] < minx)  minx = d[0];
            else if (d[0] > maxx) maxx = d[0];
            if (d[1] < miny) miny = d[1];
            else if (d[1] > maxy) maxy = d[1];
            d[2] = getPathNum(st) * piToRad;//angle
            d[3] = getPathNum(st) * piToRad;//angle
            d[4] = getPathNum(st) * pxToCm;
            d[5] = getPathNum(st) * pxToCm;
            if (d[4] < minx)  minx = d[4];
            else if (d[4] > maxx) maxx = d[4];
            if (d[5] < miny) miny = d[5];
            else if (d[5] > maxy) maxy = d[5];
            PathData pd = new PathData(s, d);
            data.add(pd);
            }
        //trace("x:" + x + " y:" + y);
        }

    trace("minx:"  + minx + " maxx:" + maxx +
          " miny:" + miny + " maxy:" + maxy);

    StringBuffer buf = new StringBuffer();
    for (PathData pd : data)
        {
        buf.append(pd.cmd);
        buf.append(" ");
        for (double d:pd.nr)
            {
            buf.append(nrfmt.format(d * 1000.0));
            buf.append(" ");
            }
        }

    bounds[0] = minx;
    bounds[1] = miny;
    bounds[2] = maxx;
    bounds[3] = maxy;

    return buf.toString();
}



boolean parseTransform(String transStr, AffineTransform trans)
{
    trace("== transform:"+ transStr);
    StringTokenizer st = new StringTokenizer(transStr, ")");
    while (st.hasMoreTokens())
        {
        String chunk = st.nextToken();
        StringTokenizer st2 = new StringTokenizer(chunk, " ,(");
        if (!st2.hasMoreTokens())
            continue;
        String name = st2.nextToken();
        trace("   ++name:"+ name);
        if (name.equals("matrix"))
            {
            double v[] = new double[6];
            for (int i=0 ; i<6 ; i++)
                {
                if (!st2.hasMoreTokens())
                    break;
                v[i] = Double.parseDouble(st2.nextToken()) * pxToCm;
                }
            AffineTransform mat = new AffineTransform(v);
            trans.concatenate(mat);
            }
        else if (name.equals("translate"))
            {
            double dx = 0.0;
            double dy = 0.0;
            if (!st2.hasMoreTokens())
                continue;
            dx = Double.parseDouble(st2.nextToken()) * pxToCm;
            if (st2.hasMoreTokens())
                dy = Double.parseDouble(st2.nextToken()) * pxToCm;
            trans.translate(dx, dy);
            }
        else if (name.equals("scale"))
            {
            double sx = 1.0;
            double sy = 1.0;
            if (!st2.hasMoreTokens())
                continue;
            sx = sy = Double.parseDouble(st2.nextToken());
            if (st2.hasMoreTokens())
                sy = Double.parseDouble(st2.nextToken());
            trans.scale(sx, sy);
            }
        else if (name.equals("rotate"))
            {
            double r  = 0.0;
            double cx = 0.0;
            double cy = 0.0;
            if (!st2.hasMoreTokens())
                continue;
            r = Double.parseDouble(st2.nextToken()) * piToRad;
            if (st2.hasMoreTokens())
                {
                cx = Double.parseDouble(st2.nextToken()) * pxToCm;
                if (!st2.hasMoreTokens())
                    continue;
                cy = Double.parseDouble(st2.nextToken()) * pxToCm;
                trans.rotate(r, cx, cy);
                }
            else
                {
                trans.rotate(r);
                }
            }
        else if (name.equals("skewX"))
            {
            double angle  = 0.0;
            if (!st2.hasMoreTokens())
                continue;
            angle = Double.parseDouble(st2.nextToken());
            trans.shear(angle, 0.0);
            }
        else if (name.equals("skewY"))
            {
            double angle  = 0.0;
            if (!st2.hasMoreTokens())
                continue;
            angle = Double.parseDouble(st2.nextToken());
            trans.shear(0.0, angle);
            }
        }
    return true;
}



String coordToOdg(String sval)
{
    double nr = Double.parseDouble(sval);
    nr = nr * pxToCm;
    String s = nrfmt.format(nr) + "cm";
    return s;
}


boolean writeSvgAttributes(Element elem, AffineTransform trans)
{
    NamedNodeMap attrs = elem.getAttributes();
    String ename = elem.getLocalName();
    for (int i=0 ; i<attrs.getLength() ; i++)
        {
        Attr attr = (Attr)attrs.item(i);
        String aname = attr.getName();
        String aval  = attr.getValue();
        if (aname.startsWith("xmlns"))
            continue;
        else if (aname.equals("d"))//already handled
            continue;
        else if (aname.startsWith("transform"))
            {
            parseTransform(aval, trans);
            continue;
            }
        else if (aname.equals("style"))
            {
            StyleInfo style = styles.get(aval);
            if (style != null)
                {
                po(" draw:style-name=\"");
                po(style.getName());
                po("\"");
                }
            continue;
            }
        if (aname.equals("x") || aname.equals("y") ||
            aname.equals("width") || aname.equals("height"))
            {
            aval = coordToOdg(aval);
            }
        if ("id".equals(aname))
            po(" ");
        else if ("transform".equals(aname))
            po(" draw:");
        else
            po(" svg:");
        po(aname);
        po("=\"");
        po(aval);
        po("\"");
        }

    //Output the current transform
    if (!trans.isIdentity() &&
        !(
          ename.equals("g")     ||
          ename.equals("defs")  ||
          ename.equals("metadata")
         )
        )
        {
        double v[] = new double[6];
        trans.getMatrix(v);
        po(" draw:transform=\"matrix(" +
            nrfmt.format(v[0]) + "," +
            nrfmt.format(v[1]) + "," +
            nrfmt.format(v[2]) + "," +
            nrfmt.format(v[3]) + "," +
            nrfmt.format(v[4]) + "," +
            nrfmt.format(v[5]) + ")\"");
        }
    return true;
}

public boolean writeOdfContent(Element elem, AffineTransform trans)
{
    String ns = elem.getNamespaceURI();
    String tagName = elem.getLocalName();
    //trace("ns:" + ns + " tagName:" + tagName);
    if (!ns.equals(SVG_NS))
        return true;
    if (tagName.equals("svg"))
        {
        NodeList children = elem.getChildNodes();
        for (int i=0 ; i<children.getLength() ; i++)
            {
            Node n = children.item(i);
            if (n.getNodeType() == Node.ELEMENT_NODE)
                if (!writeOdfContent((Element)n,
                     (AffineTransform)trans.clone()))
                    return false;
            }
        }
    else if (tagName.equals("g"))
        {
        //String transform = elem.getAttribute("transform");
        po("<draw:g");
        writeSvgAttributes(elem, trans); po(">\n");
        NodeList children = elem.getChildNodes();
        for (int i=0 ; i<children.getLength() ; i++)
            {
            Node n = children.item(i);
            if (n.getNodeType() == Node.ELEMENT_NODE)
                if (!writeOdfContent((Element)n,
                     (AffineTransform)trans.clone()))
                    return false;
            }
        po("</draw:g>\n");
        }
    else if (tagName.equals("text"))
        {
        String x         = coordToOdg(elem.getAttribute("x"));
        String y         = coordToOdg(elem.getAttribute("y"));
        String width     = "5cm";
        String height    = "2cm";
        String txt       = elem.getTextContent();
        po("<draw:frame draw:style-name=\"grx1\" draw:layer=\"layout\" ");
        po("svg:x=\"" + x + "\" svg:y=\"" + y + "\" ");
        po("svg:width=\""  + width + "\" svg:height=\"" + height + "\"");
        po(">\n");
        po("    <draw:text-box draw:auto-grow-height=\"true\" draw:auto-grow-width=\"true\">\n");
        po("    <text:p text:style-name=\"P1\"> " + txt + "</text:p>\n");
        po("    </draw:text-box>\n");
        po("</draw:frame>\n");
        return true;
        }
    else if (tagName.equals("image"))
        {
        String x         = coordToOdg(elem.getAttribute("x"));
        String y         = coordToOdg(elem.getAttribute("y"));
        String width     = coordToOdg(elem.getAttribute("width"));
        String height    = coordToOdg(elem.getAttribute("height"));
        String imageName = elem.getAttributeNS(XLINK_NS, "href");
        po("<draw:frame draw:style-name=\"grx1\" draw:layer=\"layout\" ");
        po("svg:x=\"" + x + "\" svg:y=\"" + y + "\" ");
        po("svg:width=\""  + width + "\" svg:height=\"" + height + "\">\n");
        po("    <draw:image xlink:href=\"Pictures/" + imageName + "\" xlink:type=\"simple\" xlink:show=\"embed\" xlink:actuate=\"onLoad\"><text:p/></draw:image>\n");
        po("</draw:frame>\n");
        return true;
        }
    else if (tagName.equals("path"))
        {
        double bounds[] = new double[4];
        String d      = elem.getAttribute("d");
        String newd   = parsePathData(d, bounds);
        double x      = bounds[0];
        double y      = bounds[1];
        double width  = (bounds[2]-bounds[0]);
        double height = (bounds[3]-bounds[1]);
        po("<draw:path draw:layer=\"layout\" \n");
        po("    svg:x=\"" + nrfmt.format(x) + "cm\" ");
        po("svg:y=\"" + nrfmt.format(y) + "cm\" ");
        po("svg:width=\""  + nrfmt.format(width) + "cm\" ");
        po("svg:height=\"" + nrfmt.format(height) + "cm\" ");
        po("svg:viewBox=\"0.0 0.0 " +
             nrfmt.format(bounds[2] * 1000.0) + " " +
             nrfmt.format(bounds[3] * 1000.0) + "\"\n");
        po("    svg:d=\"" + newd + "\"\n   ");

        writeSvgAttributes(elem, trans); po("/>\n");
        //po("    svg:d=\"" + d + "\"/>\n");
        return true;
        }

    else
        {
        //Verbatim tab mapping
        po("<draw:"); po(tagName);
        writeSvgAttributes(elem, trans); po(">\n");
        po("</draw:"); po(tagName); po(">\n");
        }

    return true;
}


boolean writeOdfContent(ZipOutputStream outs)
{
    try
        {
        ZipEntry ze = new ZipEntry("content.xml");
        outs.putNextEntry(ze);
        out = new BufferedWriter(new OutputStreamWriter(outs));
        }
    catch (IOException e)
        {
        return false;
        }

    NodeList res = svg.getElementsByTagNameNS(SVG_NS, "svg");
    if (res.getLength() < 1)
        {
        err("saveOdf: no <svg> root in .svg file");
        return false;
        }
    Element root = (Element)res.item(0);


    po("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
    po("<office:document-content\n");
    po("    xmlns:office=\"urn:oasis:names:tc:opendocument:xmlns:office:1.0\"\n");
    po("    xmlns:style=\"urn:oasis:names:tc:opendocument:xmlns:style:1.0\"\n");
    po("    xmlns:text=\"urn:oasis:names:tc:opendocument:xmlns:text:1.0\"\n");
    po("    xmlns:table=\"urn:oasis:names:tc:opendocument:xmlns:table:1.0\"\n");
    po("    xmlns:draw=\"urn:oasis:names:tc:opendocument:xmlns:drawing:1.0\"\n");
    po("    xmlns:fo=\"urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0\"\n");
    po("    xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n");
    po("    xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n");
    po("    xmlns:meta=\"urn:oasis:names:tc:opendocument:xmlns:meta:1.0\"\n");
    po("    xmlns:number=\"urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0\"\n");
    po("    xmlns:presentation=\"urn:oasis:names:tc:opendocument:xmlns:presentation:1.0\"\n");
    po("    xmlns:svg=\"urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0\"\n");
    po("    xmlns:chart=\"urn:oasis:names:tc:opendocument:xmlns:chart:1.0\"\n");
    po("    xmlns:dr3d=\"urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0\"\n");
    po("    xmlns:math=\"http://www.w3.org/1998/Math/MathML\"\n");
    po("    xmlns:form=\"urn:oasis:names:tc:opendocument:xmlns:form:1.0\"\n");
    po("    xmlns:script=\"urn:oasis:names:tc:opendocument:xmlns:script:1.0\"\n");
    po("    xmlns:ooo=\"http://openoffice.org/2004/office\"\n");
    po("    xmlns:ooow=\"http://openoffice.org/2004/writer\"\n");
    po("    xmlns:oooc=\"http://openoffice.org/2004/calc\"\n");
    po("    xmlns:dom=\"http://www.w3.org/2001/xml-events\"\n");
    po("    xmlns:xforms=\"http://www.w3.org/2002/xforms\"\n");
    po("    xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n");
    po("    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n");
    po("    xmlns:smil=\"urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0\"\n");
    po("    xmlns:anim=\"urn:oasis:names:tc:opendocument:xmlns:animation:1.0\"\n");
    po("    office:version=\"1.0\">\n");
    po("\n");
    po("\n");
    po("<office:scripts/>\n");
    po("<office:automatic-styles>\n");
    po("<style:style style:name=\"dp1\" style:family=\"drawing-page\"/>\n");
    po("<style:style style:name=\"grx1\" style:family=\"graphic\" style:parent-style-name=\"standard\">\n");
    po("  <style:graphic-properties draw:stroke=\"none\" draw:fill=\"solid\" draw:textarea-horizontal-align=\"center\" draw:textarea-vertical-align=\"middle\" draw:color-mode=\"standard\" draw:luminance=\"0%\" draw:contrast=\"0%\" draw:gamma=\"100%\" draw:red=\"0%\" draw:green=\"0%\" draw:blue=\"0%\" fo:clip=\"rect(0cm 0cm 0cm 0cm)\" draw:image-opacity=\"100%\" style:mirror=\"none\"/>\n");
    po("</style:style>\n");
    po("<style:style style:name=\"P1\" style:family=\"paragraph\">\n");
    po("  <style:paragraph-properties fo:text-align=\"center\"/>\n");
    po("</style:style>\n");

    //##  Dump our style table
    for (StyleInfo s : styles.values())
        {
        po("<style:style style:name=\"" + s.getName() + "\" style:family=\"graphic\" style:parent-style-name=\"standard\">\n");
        po("  <style:graphic-properties");
        po(" draw:fill=\"" + s.getFill() + "\"");
        if (!s.getFill().equals("none"))
            po(" draw:fill-color=\"" + s.getFillColor() + "\"");
        po(" draw:stroke=\"" + s.getStroke() + "\"");
        if (!s.getStroke().equals("none"))
            {
            po(" svg:stroke-width=\"" + s.getStrokeWidth() + "\"");
            po(" svg:stroke-color=\"" + s.getStrokeColor() + "\"");
            }
        po("/>\n");
        po("</style:style>\n");
        }
    po("</office:automatic-styles>\n");
    po("\n");
    po("\n");
    po("<office:body>\n");
    po("<office:drawing>\n");
    po("<draw:page draw:name=\"page1\" draw:style-name=\"dp1\" draw:master-page-name=\"Default\">\n");
    po("\n\n\n");
    AffineTransform trans = new AffineTransform();
    //trans.scale(12.0, 12.0);
    po("<!-- ######### CONVERSION FROM SVG STARTS ######## -->\n");
    writeOdfContent(root, trans);
    po("<!-- ######### CONVERSION FROM SVG ENDS ######## -->\n");
    po("\n\n\n");

    po("</draw:page>\n");
    po("</office:drawing>\n");
    po("</office:body>\n");
    po("</office:document-content>\n");


    try
        {
        out.flush();
        outs.closeEntry();
        }
    catch (IOException e)
        {
        err("writeOdfContent:" + e);
        return false;
        }
    return true;
}

boolean writeOdfMeta(ZipOutputStream outs)
{
    try
        {
        ZipEntry ze = new ZipEntry("meta.xml");
        outs.putNextEntry(ze);
        out = new BufferedWriter(new OutputStreamWriter(outs));
        }
    catch (IOException e)
        {
        return false;
        }

    po("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
    po("<office:document-meta\n");
    po("    xmlns:office=\"urn:oasis:names:tc:opendocument:xmlns:office:1.0\"\n");
    po("    xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n");
    po("    xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n");
    po("    xmlns:meta=\"urn:oasis:names:tc:opendocument:xmlns:meta:1.0\"\n");
    po("    xmlns:presentation=\"urn:oasis:names:tc:opendocument:xmlns:presentation:1.0\"\n");
    po("    xmlns:ooo=\"http://openoffice.org/2004/office\"\n");
    po("    xmlns:smil=\"urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0\"\n");
    po("    xmlns:anim=\"urn:oasis:names:tc:opendocument:xmlns:animation:1.0\"\n");
    po("    office:version=\"1.0\">\n");
    po("<office:meta>\n");
    po("    <meta:generator>Inkscape-0.43</meta:generator>\n");
    po("    <meta:initial-creator>clark kent</meta:initial-creator>\n");
    po("    <meta:creation-date>2005-12-10T10:55:13</meta:creation-date>\n");
    po("    <dc:creator>clark kent</dc:creator>\n");
    po("    <dc:date>2005-12-10T10:56:20</dc:date>\n");
    po("    <dc:language>en-US</dc:language>\n");
    po("    <meta:editing-cycles>2</meta:editing-cycles>\n");
    po("    <meta:editing-duration>PT1M13S</meta:editing-duration>\n");
    po("    <meta:user-defined meta:name=\"Info 1\"/>\n");
    po("    <meta:user-defined meta:name=\"Info 2\"/>\n");
    po("    <meta:user-defined meta:name=\"Info 3\"/>\n");
    po("    <meta:user-defined meta:name=\"Info 4\"/>\n");
    po("    <meta:document-statistic meta:object-count=\"2\"/>\n");
    po("</office:meta>\n");
    po("</office:document-meta>\n");


    try
        {
        out.flush();
        outs.closeEntry();
        }
    catch (IOException e)
        {
        err("writeOdfContent:" + e);
        return false;
        }
    return true;
}


boolean writeOdfManifest(ZipOutputStream outs)
{
    try
        {
        ZipEntry ze = new ZipEntry("META-INF/manifest.xml");
        outs.putNextEntry(ze);
        out = new BufferedWriter(new OutputStreamWriter(outs));
        }
    catch (IOException e)
        {
        return false;
        }

    po("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
    po("<!DOCTYPE manifest:manifest PUBLIC \"-//OpenOffice.org//DTD Manifest 1.0//EN\" \"Manifest.dtd\">\n");
    po("<manifest:manifest xmlns:manifest=\"urn:oasis:names:tc:opendocument:xmlns:manifest:1.0\">\n");
    po("    <manifest:file-entry manifest:media-type=\"application/vnd.oasis.opendocument.graphics\" manifest:full-path=\"/\"/>\n");
    po("    <manifest:file-entry manifest:media-type=\"text/xml\" manifest:full-path=\"content.xml\"/>\n");
    po("    <manifest:file-entry manifest:media-type=\"text/xml\" manifest:full-path=\"meta.xml\"/>\n");
    po("    <!--List our images here-->\n");
    for (int i=0 ; i<images.size() ; i++)
        {
        ImageInfo ie = images.get(i);
        String fname = ie.getName();
        if (fname.length() < 5)
            {
            err("image file name too short:" + fname);
            return false;
            }
        String ext = fname.substring(fname.length() - 4);
        po("    <manifest:file-entry manifest:media-type=\"");
        if (ext.equals(".gif"))
            po("image/gif");
        else if (ext.equals(".png"))
            po("image/png");
        else if (ext.equals(".jpg") || ext.equals(".jpeg"))
            po("image/jpeg");
        po("\" manifest:full-path=\"");
        po(fname);
        po("\"/>\n");
        }
    po("</manifest:manifest>\n");

    try
        {
        out.flush();
        outs.closeEntry();
        }
    catch (IOException e)
        {
        err("writeOdfContent:" + e);
        return false;
        }
    return true;
}

boolean writeOdfImages(ZipOutputStream outs)
{
    for (int i=0 ; i<images.size() ; i++)
        {
        ImageInfo ie = images.get(i);
        try
            {
            String iname = "Pictures/" + ie.getName();
            ZipEntry ze = new ZipEntry(iname);
            outs.putNextEntry(ze);
            outs.write(ie.getBuf());
            outs.closeEntry();
            }
        catch (IOException e)
            {
            err("writing images:" + e);
            return false;
            }
        }
    return true;
}

/**
 *
 */
public boolean writeOdf(OutputStream outs)
{
    try
        {
        ZipOutputStream zos = new ZipOutputStream(outs);
        if (!writeOdfContent(zos))
            return false;
        if (!writeOdfManifest(zos))
            return false;
        if (!writeOdfMeta(zos))
            return false;
        if (!writeOdfImages(zos))
            return false;
        //if (!writeOdfStyles(zos))
        //    return false;
        zos.close();
        }
    catch (IOException e)
        {
        err("closing ODF zip output stream:" + e);
        return false;
        }
    return true;
}



/**
 *
 */
public boolean saveOdf(String fileName)
{
    boolean ret = true;
    try
        {
        FileOutputStream fos = new FileOutputStream(fileName);
        ret = writeOdf(fos);
        fos.close();
        }
    catch (IOException e)
        {
        err("writing odf " + fileName + " : " + e);
        return false;
        }
    return ret;
}



boolean parseCss(String css)
{
    trace("##### STYLE ### :" + css);
    String name = "gr" + styleNr;
    styleNr++;
    StyleInfo si = new StyleInfo(name, css);
    StringTokenizer st = new StringTokenizer(css, ";");
    while (st.hasMoreTokens())
        {
        String style = st.nextToken();
        //trace("    " + style);
        int pos = style.indexOf(':');
        if (pos < 1 || pos > style.length()-2)
            continue;
        String attrName = style.substring(0, pos);
        String attrVal  = style.substring(pos+1);
        trace("    =" + attrName + ':' + attrVal);
        if ("stroke".equals(attrName))
            {
            si.stroke = "solid";
            si.strokeColor = attrVal;
            }
        else if ("stroke-width".equals(attrName))
            {
            si.strokeWidth = attrVal;
            }
        else if ("fill".equals(attrName))
            {
            si.fill      = "solid";
            si.fillColor = attrVal;
            }
        }
    styles.put(css, si);
    return true;
}

boolean readSvg(InputStream ins)
{
    //### LOAD XML
    try
        {
        DocumentBuilderFactory factory =
            DocumentBuilderFactory.newInstance();
        factory.setNamespaceAware(true);
        DocumentBuilder builder =
            factory.newDocumentBuilder();
        builder.setEntityResolver(new EntityResolver()
               {
               public InputSource resolveEntity(String publicId, String systemId)
                   {
                   return new InputSource(new ByteArrayInputStream(new byte[0]));
                   }
               });
        Document doc = builder.parse(ins);
        svg = doc;
        }
    catch (javax.xml.parsers.ParserConfigurationException e)
        {
        err("making DOM parser:"+e);
        return false;
        }
    catch (org.xml.sax.SAXException e)
        {
        err("parsing svg document:"+e);
        return false;
        }
    catch (IOException e)
        {
        err("parsing svg document:"+e);
        return false;
        }
    //dumpDocument(svg);

    //### LOAD IMAGES
    imageNr = 0;
    images = new ArrayList<ImageInfo>();
    NodeList res = svg.getElementsByTagNameNS(SVG_NS, "image");
    for (int i=0 ; i<res.getLength() ; i++)
        {
        Element elem = (Element) res.item(i);
        String fileName = elem.getAttributeNS(XLINK_NS, "href");
        if (fileName == null)
            {
            err("No xlink:href pointer to image data for image");
            return false;
            }
        File f = new File(fileName);
        if (!f.exists())
            {
            err("image '" + fileName + "' does not exist");
            return false;
            }
        int bufSize = (int)f.length();
        byte buf[] = new byte[bufSize];
        int pos = 0;
        try
            {
            FileInputStream fis = new FileInputStream(fileName);
            while (pos < bufSize)
                {
                int len = fis.read(buf, pos, bufSize - pos);
                if (len < 0)
                    break;
                pos += len;
                }
            fis.close();
            }
        catch (IOException e)
            {
            err("reading image '" + fileName + "' :" + e);
            return false;
            }
        if (pos != bufSize)
            {
            err("reading image entry.  expected " +
                bufSize + ", found " + pos + " bytes.");
            return false;
            }
        ImageInfo ie = new ImageInfo(fileName, fileName, buf);
        images.add(ie);
        }

    //### Parse styles
    styleNr = 0;
    styles = new HashMap<String, StyleInfo>();
    res = svg.getElementsByTagName("*");
    for (int i=0 ; i<res.getLength() ; i++)
        {
        Element elem = (Element) res.item(i);
        trace("elem:"+ elem.getNodeName());
        String style = elem.getAttribute("style");
        if (style != null && style.length() > 0)
            parseCss(style);
        }

    return true;
}

boolean readSvg(String fileName)
{
    try
        {
        FileInputStream fis = new FileInputStream(fileName);
        if (!readSvg(fis))
            return false;
        fis.close();
        }
    catch (IOException e)
        {
        err("opening svg file:"+e);
        return false;
        }
    return true;
}


//########################################################################
//#  O D F    T O    S V G
//########################################################################

/**
 *
 */
public boolean readOdfEntry(ZipInputStream zis, ZipEntry ent)
{
    String fileName = ent.getName();
    trace("fileName:" + fileName);
    if (fileName.length() < 4)
        return true;
    String ext = fileName.substring(fileName.length() - 4);
    trace("ext:" + ext);
    ArrayList<Byte> arr = new ArrayList<Byte>();
    try
        {
        while (true)
            {
            int inb = zis.read();
            if (inb < 0)
                break;
            arr.add((byte)inb);
            }
        }
    catch (IOException e)
        {
        return false;
        }
    byte buf[] = new byte[arr.size()];
    for (int i=0 ; i<buf.length ; i++)
         buf[i] = arr.get(i);
    trace("bufsize:" + buf.length);

    if (ext.equals(".xml"))
        {
        try
            {
            DocumentBuilderFactory factory =
                DocumentBuilderFactory.newInstance();
            factory.setNamespaceAware(true);
            DocumentBuilder builder =
                factory.newDocumentBuilder();
            builder.setEntityResolver(new EntityResolver()
                   {
                   public InputSource resolveEntity(String publicId, String systemId)
                       {
                       return new InputSource(new ByteArrayInputStream(new byte[0]));
                       }
                   });
            //trace("doc:"+new String(buf));
            Document doc = builder.parse(new ByteArrayInputStream(buf));
            if (fileName.equals("content.xml"))
                content = doc;
            else if (fileName.equals("meta.xml"))
                meta = doc;
            else if (fileName.equals("styles.xml"))
                {
                //styles = doc;
                }
            }
        catch (javax.xml.parsers.ParserConfigurationException e)
            {
            err("making DOM parser:"+e);
            return false;
            }
        catch (org.xml.sax.SAXException e)
            {
            err("parsing document:"+e);
            return false;
            }
        catch (IOException e)
            {
            err("parsing document:"+e);
            return false;
            }
        }
    else if (ext.equals(".png")  ||
             ext.equals(".gif")  ||
             ext.equals(".jpg")  ||
             ext.equals(".jpeg")   )
        {
        String imageName = "image" + imageNr + ext;
        imageNr++;
        ImageInfo ie = new ImageInfo(fileName, imageName, buf);
        trace("added image '" + imageName + "'.  " + buf.length +" bytes.");
        images.add(ie);

        }
    dumpDocument(content);
    return true;
}


/**
 *
 */
public boolean readOdf(InputStream ins)
{
    imageNr = 0;
    images = new ArrayList<ImageInfo>();
    styleNr = 0;
    styles = new HashMap<String, StyleInfo>();
    ZipInputStream zis = new ZipInputStream(ins);
    while (true)
        {
        try
            {
            ZipEntry ent = zis.getNextEntry();
            if (ent == null)
                break;
            if (!readOdfEntry(zis, ent))
                return false;
            zis.closeEntry();
            }
        catch (IOException e)
            {
            err("reading zip entry");
            return false;
            }
        }

    return true;
}


/**
 *
 */
public boolean readOdf(String fileName)
{
    boolean ret = true;
    try
        {
        FileInputStream fis = new FileInputStream(fileName);
        ret = readOdf(fis);
        fis.close();
        }
    catch (IOException e)
        {
        err("reading " + fileName + " : " + e);
        ret = false;
        }
    return true;
}




public boolean writeSvgElement(Element elem)
{
    String ns = elem.getNamespaceURI();
    String tagName = elem.getLocalName();
    trace("tag:" + tagName + " : " + ns);
    if (ns.equals(ODSVG_NS))
        {
        po("<"); po(tagName);
        NamedNodeMap attrs = elem.getAttributes();
        for (int i=0 ; i<attrs.getLength() ; i++)
            {
            Attr attr = (Attr)attrs.item(i);
            String aname = attr.getName();
            String aval  = attr.getValue();
            //Replace image name
            if ("xlink:href".equals(aname) && "image".equals(tagName))
                {
                for (int j=0 ; j<images.size() ; j++)
                    {
                    ImageInfo ie = images.get(i);
                    if (aval.equals(ie.getName()))
                        aval = ie.getNewName();
                    }
                }
            po(" ");
            po(aname);
            po("=\"");
            po(aval);
            po("\"");
            }
        po(">\n");
        }
    NodeList children = elem.getChildNodes();
    for (int i=0 ; i<children.getLength() ; i++)
        {
        Node n = children.item(i);
        if (n.getNodeType() == Node.ELEMENT_NODE)
            if (!writeSvgElement((Element)n))
                return false;
        }
    if (ns.equals(ODSVG_NS))
        {
        po("</"); po(tagName); po(">\n");
        }
    return true;
}


public boolean saveSvg(String svgFileName)
{
    trace("====== Saving images ===========");
    try
        {
        for (int i=0 ; i<images.size() ; i++)
            {
            ImageInfo entry = images.get(i);
            trace("saving:" + entry.name);
            FileOutputStream fos = new FileOutputStream(entry.name);
            fos.write(entry.buf);
            fos.close();
            }
        }
    catch (IOException e)
        {
        err("saveAsSVG:" + e);
        return false;
        }

    try
        {
        out = new BufferedWriter(new FileWriter(svgFileName));
        }
    catch (IOException e)
        {
        err("save:" + e);
        return false;
        }

    if (content == null)
        {
        err("no content in odf");
        return false;
        }

    NodeList res = content.getElementsByTagNameNS(ODF_NS, "drawing");
    if (res.getLength() < 1)
        {
        err("save: no drawing in document");
        return false;
        }
    Element root = (Element)res.item(0);
    trace("NS:"+root.getNamespaceURI());

    res = root.getElementsByTagNameNS(ODG_NS, "page");
    if (res.getLength() < 1)
        {
        err("save: no page in drawing");
        return false;
        }
    Element page = (Element)res.item(0);

    po("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
    po("<svg\n");
    po("    xmlns:svg=\"http://www.w3.org/2000/svg\"\n");
    po("    xmlns=\"http://www.w3.org/2000/svg\"\n");
    po("    xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n");
    po("    version=\"1.0\"\n");
    po("    >\n");

    writeSvgElement(page);

    po("</svg>\n");

    try
        {
        out.close();
        }
    catch (IOException e)
        {
        err("save:close:" + e);
        return false;
        }
    return true;
}



//########################################################################
//#  C O N S T R U C T O R
//########################################################################

SvgOdg()
{
    //init, if necessary
    nrfmt = new DecimalFormat("#.####");
}


//########################################################################
//#  C O M M A N D    L I N E
//########################################################################

public boolean odfToSvg(String odfName, String svgName)
{
    if (!readOdf(odfName))
        return false;
    if (!saveSvg(svgName))
        return false;
    return true;
}

public boolean svgToOdf(String svgName, String odfName)
{
    if (!readSvg(svgName))
        return false;
    System.out.println("ok");
    if (!saveOdf(odfName))
        return false;
    return true;
}

void usage()
{
    System.out.println("usage: SvgOdf input_file.odg output_file.svg");
    System.out.println("       SvgOdf input_file.svg output_file.odg");
}


boolean parseArguments(String argv[])
{
    if (argv.length != 2)
        {
        usage();
        return false;
        }

    String fileName1 = argv[0];
    String fileName2 = argv[1];

    if (fileName1.length()<5 || fileName2.length()<5)
        {
        System.out.println("one or more file names is too short");
        usage();
        return false;
        }

    String ext1 = fileName1.substring(fileName1.length()-4);
    String ext2 = fileName2.substring(fileName2.length()-4);
    //System.out.println("ext1:"+ext1+" ext2:"+ext2);

    //##### ODG -> SVG #####
    if ((ext1.equals(".odg") || ext1.equals(".odf") || ext1.equals(".zip") ) &&
        ext2.equals(".svg"))
        {
        if (!odfToSvg(argv[0], argv[1]))
            {
            System.out.println("Conversion from ODG to SVG failed");
            return false;
            }
        }

    //##### SVG -> ODG #####
    else if (ext1.equals(".svg") &&
             ( ext2.equals(".odg") || ext2.equals(".odf") || ext2.equals(".zip") ) )
        {
        if (!svgToOdf(fileName1, fileName2))
            {
            System.out.println("Conversion from SVG to ODG failed");
            return false;
            }
        }

    //##### none of the above #####
    else
        {
        usage();
        return false;
        }
    return true;
}


public static void main(String argv[])
{
    SvgOdg svgodg = new SvgOdg();
    svgodg.parseArguments(argv);
}


}

//########################################################################
//#  E N D    O F    F I L E
//########################################################################