forked from autotrace/autotrace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
3411 lines (2082 loc) · 87.5 KB
/
ChangeLog
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
2005-09-19 Robin Adams <radams@linux-laser.org>
* output-ild.[ch]: New files.
2004-10-22 Masatake YAMATO <yamato@redhat.com>
* Makefile.am (output_src): Added output-plt.[ch].
2004-10-22 Steven P. Hirshman
* output-plt.[ch]: New files.
* module.c: Added plt.
2004-10-14 S. P. Hirshman
* output-emf.c:
Added #define ENMT_DELETEOBJECT 40
to define DeleteObject in Metafile dc
Added routine WriteDeleteObject to delete pens/brushes after they
are deselected out of the metafile dc (prevents resource depletion).
Rewrote GetEmfStats, OutputEmf routines to call WriteDeleteObject whenever
a pen/brush is deselected out of the dc. Also, modified the outer loop over
splines so that each new spline starts a new path bracket. Previously, if
the next color was the same as the previous spline's color, a new path was
NOT started. I needed this for my applique application, but it also follows the
philosophy of eps files which stroke/fill each new spline.
2004-05-01 Henning Makholm <henning@makholm.net>
* configure.in: Updated for ImageMagick 6.0.0.
2004-05-01 Masatake YAMATO <yamato@redhat.com>
* configure.in: Comment out popt check.
* autotrace.pc.in (Libs): Added @GLIB2_LIBS@.
* autotrace-config.af: Added @GLIB2_LIBS@ to AF_DEF_LIBS.
2004-02-26 Henning Makholm <henning@makholm.net>
* README: Added missing comma in the sample code.
2004-01-05 Masatake YAMATO <yamato@redhat.com>
* autotrace.h(enum _at_msg_type): Applied a patch
#843475 at sourceforge's patch tracker.
Jon A. Cruz:
Can't forward declare enums
when compiling with g++ (as when trying to include
autotrace or frontline support), it errors out on
typedefs of enums that occurr before the enum
declarations themselves.
2003-08-17 Masatake YAMATO <yamato@redhat.com>
* autotrace.c (at_time_string): check the value of
`debug'.
* *(*): bitmap_type and related macros are removed.
Use at_bitmap. at_bitmap_type is renamed to at_bitmap.
* input-png.c(rcsid): removed.
2003-08-06 Masatake YAMATO <yamato@redhat.com>
* *.[ch]: distance_map_type -> at_distance_map_type.
* private.h (at_time_string): New decl.
* autotrace.c (at_time_string): New function.
* output-*.c (output_*_header): remove `now'.
Use at_time_string. use g_free instead of free.
* *.[ch] (*): at_color_type -> at_color.
2003-08-05 Masatake YAMATO <yamato@redhat.com>
* curve.c (log_curve): Use %lx.
* output-pstoedit.c: Remove get_symbolicname decl.
* output-ugs.c (output_ugs_writer): Use %ld.
* thin-image.h: Use at_color_type instead of color_type.
color_type is obsoleted.
* fit.c: Likewise.
* image-proc.c: Likewise. Use TRUE and FALSE
instead of true and false.
* image-proc.h: Likewise.
* median.c: Likewise.
* output-dr2d.c: Likewise.
* output-dxf.c: Likewise.
* output-epd.c: Likewise.
* output-eps.c: Likewise.
* output-fig.c: Likewise.
(fig_hash): Use at_color_type.c instead
of r, g, b.
* output-mif.c: Likewise.
* output-p2e.c: Likewise.
* output-pdf.c: Likewise.
* output-pov.c: Likewise.
* output-svg.c: Likewise.
* pxl-outline.c: Likewise.
Use at_bitmap_get_color instead of GET_COLOR.
Use at_bitmap_equal_color.
* pxl-outline.h: Likewise.
* quantize.h (quantize): Likewise.
* thin-image.c: Likewise. Use at_color_luminance instead
of COLOR_LUMINANCE.
* autotrace.c (at_bitmap_get_color, at_bitmap_equal_color): New functions.
* autotrace.h: at color type is moved to color.h.
* color.c: Rewrote.
* color.h: color_type is removed. Use at_color_type.
* exception.c (at_error_quark): New function.
* exception.h (AtError, at_error_quark, AT_ERROR): New
data type, macro and decl.
* main.c (read_command_line): Use at_color_parse.
hctoi is removed.
* Makefile.am (autotraceinclude_HEADERS): Added color.h.
2003-07-05 Masatake YAMATO <yamato@redhat.com>
* configure.in (AC_MSG_ERROR): Fix a typo.
2003-07-04 Masatake YAMATO <yamato@redhat.com>
* output-eps.c (output_eps_header): Fix a
typo: TRUE -> true, FALSE -> false.
* types.h (_at_coord): Use gushort.
use AT_TYPES_H instead of TYPES_H.
2003-07-04 Masatake YAMATO <yamato@redhat.com>
* main.c (exception_handler): added const to msg.
* autotrace.h(at_msg_func): added const to msg.
* output.h(at_output_add_handler): remove duplicated declarations.
* output-ugs.c (output_splines): remove x and lastx.
These are not used.
(output_ugs_writer): return 0.
* Makefile.am (libautotrace_la_SOURCES): Added private.h.
* types.h (at_bool): replaced with gooolean.
(at_address): replaced with gpointer.
(at_real): replaced with gfloat.
(at_string): replaced with gchar *.
* exception.h (struct _at_exception_type): Fix a typo.
2003-07-02 Masatake YAMATO <yamato@redhat.com>
* Makefile.am(SUBDIRS): m4 is removed.
(ACLOCAL_AMFLAGS): removed.
* configure.in: Don't use AC_PROG_RANLIB.
2003-06-12 Serge Vakulenko <vak@cronyx.ru>
* input-gf.[ch]: New files.
* output-ugs.[ch]: New files.
2003-06-18 Masatake YAMATO <yamato@redhat.com>
* output-*.[ch] (output_*_writer): added user_data
as an argument.
* output-pstoedit.c: Rewrite.
* output.c: Rewrite(copied from input.c).
* autotrace.c (at_splines_write): don't call
pstoedit function directly here.
(autotrace_init): call at_output_init.
* autotrace.h(at_spline_writer): New data type.
(at_output_write_func): moved to output.h.
(at_splines_write): use at_splines_write instead
of at_output_write_func.
* input-magick.c (input_magick_reader): moved from
module.c.
* input-magick.[ch] (install_input_magick_readers): New
function.
(input_magick_reader): make static.
* input.c: include input.h.
* main.c: use new type at_spline_writer.
(output_list_formats): Added const modifiers to list,
tmp, suffix and descr.
* module.c: image magick related functions are moved to
input-magick.c.
(install_output_writers): new function.
* private.h (struct _at_spline_writer): New datum type.
(at_output_init): New function.
2003-06-15 Masatake YAMATO <yamato@redhat.com>
* main.c (read_command_line): added new parameter, input_opts.
(main): passed input_opts to read_command_line.
Don't set input_opts->background_color here.
(read_command_line): Set input_opts->background_color here.
(read_command_line): Set input_opts->charcode here.
2003-06-12 Serge Vakulenko <vak@cronyx.ru>
(Logged by Masatake.)
* autotrace.h (_at_fitting_opts_type): added charcode.
* autotrace.h (struct _at_input_opts_type): added charcode.
* fit.c (new_fitting_opts): Initialize charcode.
(fit_one_spline): Fixed two bugs, which caused unexpected aborts with
diagnostics "zero determinant of C0*C1"
and "assertion error in line 1276 of fit.c".
* main.c (read_command_line::long_options): Added
charcode as an option.
* module.c: Added gf input.
* output.c: included output-ugs.h.
(output_formats): Added ugs output.
2003-06-11 Masatake YAMATO <yamato@redhat.com>
* tools-version.sh (TOOLS): Added glib-gettextize.
* autogen.sh: Added -I m4 when invoking aclocal.
Invoke glib-gettextize instead of gettextize.
* configure.in (GETTEXT_PACKAGE): Use AM_GLIB_GNU_GETTEXT
instead of AM_GNU_GETTEXT.
(AC_OUTPUT): Don't output m4/Makefile.in.
2003-06-10 Masatake YAMATO <yamato@redhat.com>
* module.c (at_module_init): Use at_input_add_handler_full
for "PBM", "PNM", "PGM" and "PPM".
Added some preprocessor tricks to deal with ImageMagick.
(at_module_init): Use at_input_add_handler_full to deal
with ImageMagick.
* Makefile.am: Fix a typo.
(libautotrace_la_SOURCES): Added module.c.
Suggested by "jakobfrandsen" <jakobfrandsen@yahoo.dk>.
2003-06-08 Masatake YAMATO <yamato@redhat.com>
* private.h (struct _at_bitmap_reader): Defined.
(at_input_init, at_param_init): Declared.
* Makefile.am (output_src): Remove typo(+).
Suggested by "jakobfrandsen" <jakobfrandsen@yahoo.dk>.
2003-06-07 Mario Kleiner <mario.kleiner@tuebingen.mpg.de>
* output-mif.c (output_mif_writer): fixed bug in output
of spline sample points.
2003-03-10 Martin Weber <martweb@gmx.net>
* output-dxf.c: Now checks memory allocation.
2003-03-09 Martin Weber <martweb@gmx.net>
* output-sk.c: Fixed sketch output.
2003-02-13 Masatake YAMATO <yamato@redhat.com>
* input.c (_at_input_format_entry): Added new field,
user_data_destroy_func.
included private.h.
(at_input_format_new): added data, user_data_destroy_func
as arguments. Type of reader reader is changed to at_input_func.
(at_input_init): Use g_str_hash and g_str_equal.
(at_input_format_free): call user_data_destroy_func.
(at_input_add_handler_full): added data, user_data_destroy_func
as arguments.
(at_input_add_handler_full): call g_ascii_strdown.
(at_input_get_handler_by_suffix): return type is changed
to at_bitmap_reader.
(at_input_get_handler_by_suffix): call g_ascii_strdown.
* main.c: included glib.h.
at_input_func is used.
* input.h (at_input_func): added new type.
included glib.
* input.c: include private.h.
* input-tga.c (MAX, MIN): removed it. glib provides
the same functions.
* autotrace.h (at_bitmap_reader): introduced as the
replacement of at_input_read_func.
* input-* (input_*_reader): added an argument.
* autotrace.c (at_bitmap_read): call reader->func.
2003-02-09 Masatake YAMATO <yamato@redhat.com>
* autotrace.c: Include private.h.
(autotrace_init): invoke at_input_init and
at_module_init.
* input.c: rewrote. All imagemagick code are moved
to module.c.
* input.[ch] (at_input_add_handler_full): New function.
* module.c: New file.
* configure.in: Checking pkg-config.
* private.h: New file
2003-02-09 Masatake YAMATO <yamato@redhat.com>
* main.c (USAGE2): 1.0..0.0 => 0.0..1.0.
* Makefile.am (output_src): Added output-pov.*.
2003-02-08 Martin Weber <martweb@gmx.net>
* output.c, output-pov.[c,h]: Added new povray output filter.
2003-02-08 Masatake YAMATO <yamato@redhat.com>
* HACKING: Write about ACLOCAL_FLAGS.
2003-02-03 Martin Weber <martweb@gmx.net>
* main.c: Now images are dumped as ppm or pgm.
2003-01-30 Masatake YAMATO <yamato@redhat.com>
* Makefile.am (INCLUDES): Added GLIB2_CFLAGS.
(autotrace_LDADD): Added GLIB2_LIBS and POPT_LIBS.
* configure.in: Added scripts to check popt and its sanity.
Added scripts to check glib2.
2003-01-24 Martin Weber <martweb@gmx.net>
*** libautotrace API is a bit changed ***
* despeckle.[c,h], main.c, fit.c, autotrace.[c,h]: Added a new
parameter to the despeckle filter.
* despeckle.txt: Added an explanation about the despeckle filter.
* patchestoming02a.txt: Patches for Ming 0.2a from Wolfgang Glunz to
improve the swf export.
2003-01-24 Masatake YAMATO <yamato@redhat.com>
* configure.in (AUTOTRACE_VERSION): AC_SUBST for
autotrace.spec.in.
$VERSION is deleted from AC_DEFINE_UNQUOTED.
2003-01-23 Masatake YAMATO <yamato@redhat.com>
* autotrace.spec.in: Import
Dag Wieers <dag@wieers.com>'s better spec file.
2003-01-23 Masatake YAMATO <yamato@redhat.com>
Copied from sodipodi.
* distro, tools-version.sh: New files.
distro comes from distro-0.8.1(http://distro.pipfield.ca/).
distro and tools-version.sh should be included only in CVS version
of sodipodi.
* autogen.sh: Call tools-version.sh.
2003-01-23 Masatake YAMATO <yamato@redhat.com>
* configure.in: Added the dummy 2nd arg(1) to AC_DEFINE.
* Makefile.am (SUBDIRS): Added m4. intl is removed.
* acconfig.h: use AUTOTRACE_VERSION instead of VERSION.
See my change at 2002-12-19. I forgot commiting.
* configure.in: Added the 3rd argument for AC_DEFINE_UNQUOTED.
Added the 2nd added for AC_DEFINE.
Set, define, and subst GETTEXT_PACKAGE.
Use AC_CHECK_LIB instead of AC_CHECK_FUNC to check gettext.
Added m4/Makefile to AC_OUTPUT. Removed intl/Makefile to AC_OUTPUT.
Use AUTOTRACE_VERSION instead of VERSION.
2003-01-20 Martin Weber <martweb@gmx.net>
* despeckle.c: speedup and fix of bug in gray bitmap despeckle.
2003-01-20 Martin Weber <martweb@gmx.net>
* autotrace.[dsp,vcproj]: support of input-png added.
2003-01-19 Martin Weber <martweb@gmx.net>
* output-pstoedit.c (pstoedit_suffix_table_init): Fixed memory allocation.
2003-01-17 Martin Weber <martweb@gmx.net>
* output-pstoedit.c (get_symbolicname, pstoedit_suffix_table_init):
removed heap corruption when using pstoedit.
2003-01-10 Masatake YAMATO <yamato@redhat.com>
* intl.h: include config.h only if HAVE_CONFIG_H
is defined. suggested by Martin.
2003-01-08 Martin Weber <martweb@gmx.net>
* input.c, output.c, autotrace.h: compiler warnings for new ImageMagick
versions removed.
* autotrace.dsp, autotrace.vcproj: Adopted project files for new
ImageMagick and new pstoedit release.
2003-01-06 Martin Weber <martweb@gmx.net>
* output-pstoedit.h: Don't include pstoedit/pstoedll.h.
2003-01-06 Martin Weber <martweb@gmx.net>
* output.c: removed heap corruption when using pstoedit.
2002-12-18 Martin Weber <martweb@gmx.net>
* autotrace.c: fixed problem that , is used instead of . in ouput when
using German locale.
2002-12-19 Masatake YAMATO <yamato@redhat.com>
* autotrace.c: Likewise.
* configure.in: Don't use VERSION. This symbol is
reserved by VC++. Instead AUTOTRACE_VERSION is used.
2002-11-16 Martin Weber <martweb@gmx.net>
* despeckle.c: removed unnecessary for loop.
2002-11-16 Masatake YAMATO <yamato@redhat.com>
* Makefile.am (libautotrace_la_SOURCES): added intl.h
(AM_CPPFLAGS): added locale dir.
(autotrace_LDADD): added INTLLIBS.
(ACLOCAL_AMFLAGS): Added -I m4.
* acconfig.h: added PACKAGE and VERSION.
* autotrace.c (autotrace_init): New function.
(at_fitting_opts_doc_func): New function.
* autotrace.h (autotrace_init): New function.
(at_fitting_opts_doc): call at_fitting_opts_doc_func.
(at_fitting_opts_doc_func): New function.
* configure.in: remove AUTOTRACE_ prefix from version
number related variable names.
use DEFINE_UNQOTED macro instead of SUBST marco.
(AM_GNU_GETTEXT): Gettextiz'ed.
(AC_OUTPUT): intl/Makefile and po/Makefile.in are added.
* main.c: include intl.h and locale.h.
(main): set locale.
put _() to C strings.
2002-11-15 Martin Weber <martweb@gmx.net>
* autotrace.c, fit.c, input-tga.c,
output-cgm.c, output-dr2d.c, output-dxf.c,
output-fig.c, outputp2e.c, pxl-outline.c:
Fixed compilation errors and warnings for certain C compilers.
* output-pstoedit.h: Fixed compilation errors with Visual C++.
* output.c: Removed unnecessary streq.
2002-11-15 Masatake YAMATO <yamato@redhat.com>
* autotrace.h (enum _at_msg_type): Added
AT_MSG_NOT_SET.
* exception.c (at_exception_got_fatal):
return true or false explicitly.
(at_exception_new): Don't use GCC C extension.
Suggested by Nelson H. F. Beebe <beebe@math.utah.edu>.
2002-11-12 Masatake YAMATO <yamato@redhat.com>
* strgicmp.c (strgnicmp): Fix a typo.
2002-11-10 Martin Weber <martweb@gmx.net>
* strgicmp.c (strgnicmp): Use size_t instead of
long to avoid warnings from compilers.
Message-ID: <3DCCD9C3.9737E7C4@gmx.net>.
2002-11-09 Masatake YAMATO <yamato@redhat.com>
* autotrace.h (at_doc__width_weight_factor): Updated.
2002-11-09 Masatake YAMATO <yamato@redhat.com>
* configure.in: version 0.31.1.
echo building configuration at the
end of configure.
2002-11-09 Masatake YAMATO <yamato@redhat.com>
* autotrace.h: Don't define _().
* configure.in: LT_CURRENT=3.
See my change at 2002-10-31.
2002-11-09 Martin Weber <martweb@gmx.net>
* output-dr2d.c (BuildDRHD::FloatAsIEEEBytes):
Change the position where the datum is written.
Message-ID: <3DCBECAB.6198C58D@gmx.net>.
2002-11-09 Martin Weber <martweb@gmx.net>
* output-dxf.c (output_layer): move the
declaration of last_color to the out of loop.
Message-ID: <3DCBC646.8B714DA2@gmx.net>.
2002-11-09 Martin Weber <martweb@gmx.net>
* pxl-outline.c (find_one_centerline): search_dir,
an argument, is now actual value, not a pointer.
(*): passed a value to find_one_centerline at
the function argument, search_dir.
(*): fix a broken log fromat string.
Message-ID: <3DCBBBC9.A3F8985E@gmx.net>.
2002-11-08 Martin Weber <martweb@gmx.net>
* pxl-outline.c: Big changes again that fix a bug
related to centerline tracing. NOTE: A bug is still existed.
Message-ID: <3DCAAAD7.F55305EA@gmx.net>.
2002-11-07 Martin Weber <martweb@gmx.net>
* filename.c: Removed some 64 and 128 bit problems.
* input.c: ditto.
* output-cgm.c: ditto.
* output-emf.c: ditto.
* output-pdf.c: ditto.
* output.c: ditto.
* strgicmp.c: ditto.
* strgicmp.h: ditto.
Message-ID: <3DC96244.A37B85BB@gmx.net>.
2002-11-07 Masatake YAMATO <yamato@redhat.com>
* spline.[ch]: Removed unused ifdefs.
2002-11-04 Martin Weber <martweb@gmx.net>
* fit.c: fix code broken by Masatake at
2002-11-04.
2002-11-04 Masatake YAMATO <yamato@redhat.com>
* fit.c (new_fitting_opts::error_threshold):
Fix the default value to 2.0.
2002-11-03 Masatake YAMATO <yamato@redhat.com>
* fit.[ch]: Removed unused ifdefs.
2002-10-31 Masatake YAMATO <yamato@redhat.com>
* *: width_factor, weight_factor -> width_weight_factor.
* configure.in: added -lm to the macro
that checks libpng. Suggested by jlm <jsado@attbi.com>.
2002-10-29 Martin Weber <martweb@gmx.net>
* pxl-outline.c (is_valid_dir): used
COMPUTE_DELTA twice to avoid a bug.
Message-ID: <3DBEDC7E.9F1FD467@gmx.net>.
2002-10-30 Masatake YAMATO <yamato@redhat.com>
* configure.in: Display more messages
while checking pstoedit twice.
Suggested by Markus Demleitner
<msdemlei@cl.uni-heidelberg.de>.
2002-10-29 Martin Weber <martweb@gmx.net>
* pxl-outline.c (num_neighbors): New function.
(find_centerline_pixels): Use num_neighbors.
Message-ID: <3DBEB1A2.4CC602BA@gmx.net>.
2002-10-29 Masatake YAMATO <yamato@redhat.com>
* input-magick.c (input_magick_reader): Do DestroyImage
before DestroyImageInfo.
* main.c (main): Put a space in a message(inputformat).
(read_command_line): Fix a typo.
2002-10-26 Ralf Stubner <ralf.stubner@physik.uni-erlangen.de>
* autotrace.c: #include "output-pstoedit.h"
with ifdef.
2002-10-24 Masatake YAMATO <yamato@redhat.com>
* configure.in: version 0.31.0.
2002-10-24 Martin Weber <martweb@gmx.net>
* autotrace.dsp (RSC): Version 0.31.
* autotrace.vcproj: Ditto.
2002-10-23 Martin Weber <martweb@gmx.net>
* pxl-outline.c (is_valid_dir):
removed comment.
* NEWS: updated.
Message-ID: <21731.1035350777@www20.gmx.net>.
2002-10-23 Masatake YAMATO <yamato@redhat.com>
* output-pstoedit.c (get_symbolicname)
(pstoedit_suffix_table_init): free return
value of getPstoeditDriverInfo_plainC.
(get_symbolicname): returned value is strdup'ed.
(output_pstoedit_writer): free symbolicname.
* output-pstoedit.[ch]: rewrote code that
handles suffix.
* autotrace.c (at_splines_write): Use output_pstoedit_invoke_writer
if output_pstoedit_is_writer returns true for output_writer.
* HACKING: Updated about autotools.
2002-10-22 Masatake YAMATO <yamato@redhat.com>
* output-pstoedit.c (remove_temporary_file): Renamed
from remove_tmpfile.
(output_pstoedit_writer): Make static.
* pxl-outline.[ch]: removed unsed ifdefs.
2002-10-22 Martin Weber <martweb@gmx.net>
* pxl-outline.c: Big changes that fix a bug
related to centerline tracing.
2002-10-21 Martin Weber <martweb@gmx.net>
* input-magick.c: Checked autotrace works with
ImageMagick-5.5.2.
Message-ID: <3DB448EA.E3A63661@gmx.net>.
2002-10-20 Masatake YAMATO <yamato@redhat.com>
* autogen.sh: checked aclocal-1.4, automake-1.4
and autoconf-2.53 are available or not.
* autotrace.h: defined N_ and _ only if they are
not defined.
2002-10-10 Martin Weber <martweb@gmx.net>
* autotrace.1: updated again.
2002-10-10 Masatake YAMATO <yamato@redhat.com>
* configure.in: Use ' instead of " to retrieve
MAGICK_MAJOR_VERSION.
2002-10-10 Martin Weber <martweb@gmx.net>
* autotrace.1: updated.
2002-10-10 Masatake YAMATO <yamato@redhat.com>
* main.c (USAGE2): added <real> to width-factor.
2002-10-09 Masatake YAMATO <yamato@redhat.com>
* FAQ: Fix a typo. Suggested by Martin.
* configure.in: version 0.30.8.
Updated cocuments.
2002-10-08 Martin Weber <martweb@gmx.net>
* input-magick.c (input_magick_reader): Use AT_ macros.
antialiasing is switched off. Update comments. autotrace
is ready for ImageMagick 5.4.9.
Message-ID: <3DA2FFF4.5D564F9@gmx.net>.
2002-10-08 Martin Weber <martweb@gmx.net>
* fit.c (split_at_corners, fit_curve_list):
handle very small objects.
Message-ID: <3DA1C87D.786E8E52@gmx.net>
Message-ID: <3DA1DB6F.1DDA16A1@gmx.net>
2002-10-08 Masatake YAMATO <yamato@redhat.com>
* autotrace.h (at_doc__width_factor): added
label for width_factor.
2002-10-07 Masatake YAMATO <yamato@redhat.com>
* input-magick.c (input_magick_reader): removed
comments. suggested by Martin.
2002-10-07 Martin Weber <martweb@gmx.net>
* output-eps.c (out_splines): Now the eps output is
interpreted correctly by CorelDraw.
Message-ID: <3DA063E6.32835C45@gmx.net>.
2002-10-07 Martin Weber <martweb@gmx.net>
* fit.c (find_tangent): fixed a bug in tangent
calculation.
Message-ID: <3DA09336.DB788C68@gmx.net>.
2002-10-06 Masatake YAMATO <yamato@redhat.com>
* pxl-outline.c (free_pixel_outline): New function.
(CHECK_FATAL_DO): new macro.
(find_outline_pixels): free outline_list if an exception
is raised.
(find_one_outline): free outline if an exception is
raised.
(find_centerline_pixels): free outline if an exception
is raised. use free_pixel_outline.
2002-10-06 Masatake YAMATO <yamato@redhat.com>
* pxl-outline.c (find_centerline_pixels): free
unused outline and partial_outline after using.
* input-magick.c (input_magick_reader): freed
image_info and image.
* output.c (at_output_shortlist): driverdescription
is freed.
* median.c (quantize): removed debug print.
* input*.[ch]: renamed all loader.
* input-magick.c: added a forgotten argument.
2002-10-04 Masatake YAMATO <yamato@redhat.com>
* quantize.h: Added a declaration for
quantize_object_free.
* spline.[ch] (new_spline_list_with_spline): Renamed
from init_spline_list.
* fit.c (fit_curve_list): deleted temp.
* median.c (quantize_object_free): New function.
(quantize): Use quantize_object_free.
* autotrace.c (at_bitmap_read): Set new_opts.
2002-10-03 Masatake YAMATO <yamato@redhat.com>
* README: Updated.
2002-10-03 Martin Weber <martweb@gmx.net>
* autotrace.dsp: Updated.
2002-10-02 Masatake YAMATO <yamato@redhat.com>
* exception.h: renamed a type at_exception to at_exception_type.
* * (*): used at_exception_type.
* autotrace.h (at_doc__preserve_width::width_factor):
new member.
(struct _at_spline_list_array_type): Likewise.
(_, N_): New dummy macro for gettext.
2002-09-29 Masatake YAMATO <yamato@redhat.com>
* * (*): at_output_opts_type is introduced.
2002-09-29 Martin Weber <martweb@gmx.net>
README: added new option
image-proc.c: removed warnings
Message-ID: <3D97211D.85F25D9C@gmx.net>.
2002-09-29 Martin Weber <martweb@gmx.net>
*: now recognizes the line width
median.c: bugfix
Message-ID: <3D96F758.2B17DAB9@gmx.net>.
2002-09-29 Masatake YAMATO <yamato@redhat.com>
* input-png.c (read_png): my_bg.gray is
multiplied by 256.
* autotrace.c (at_bitmap_read): If opts
is null, give dummy to a handler.
(at_input_opts_copy): New function.
* configure.in: update library version.
LC_CURRENT=2, LT_REVISION=0, LT_AGE=0.
* main.c (main): Use new input opts.
* autotrace.h (at_input_read_func): added a new
argrument.
(at_bitmap_read): added the new argrument.
* input-*.[ch] (*_load_image): added the new argrument.
* input-png.c (read_png): Use background in the input option
if the option is given. Otherwise, use white.
* autotrace.c (at_input_opts_new, at_input_opts_free):
New functions.
* autotrace.h (struct _at_input_opts_type): New
data type.
2002-09-29 Martin Weber <martweb@gmx.net>
* pxl-outline.c: I introduced a bug in pxl-outline.c.
change back to the version used in 0.30.5.
Message-ID: <3D96120F.2780C779@gmx.net>.
2002-09-28 Masatake YAMATO <yamato@redhat.com>
* input-png.c (read_png): New function that can
handle transparent region (just fill with white).
(load_image): use read_png.
2002-09-27 Martin Weber <martweb@gmx.net>
* pxl-outline.c (find_centerline_pixels): During speed up
the code I introduced a bug. Here the fix.
Message-ID: <3D94C2E7.55A7C0C3@gmx.net>.
2002-09-26 Masatake YAMATO <yamato@redhat.com>
* autotrace.m4 ($LIBS): changed the order of appending
$LIBS to $AUTOTRACE_LIBS.
* Makefile.am (EXTRA_DIST): Added output-pstoedit.[ch].
* configure.in (HAVE_LIBPSTOEDIT): Fix typo.
2002-09-26 Martin Weber <martweb@gmx.net>
* vector.c: Now also works with C compilers that do not define true and false in the
standard way,
* pxl-outline.c: Ditto.
* output.c: Ditto.
* fit.c: Ditto.
* epsilon-equal.c: Ditto.
Message-ID: <8293.1032936123@www49.gmx.net>.
2002-09-25 Masatake YAMATO <yamato@redhat.com>
* configure.in: use pstoedit.m4 instead of pkg-config.
showed more message about pstoedit.
2002-09-21 Masatake YAMATO <yamato@redhat.com>
* configure.in: added -dl to LIBPSTOEDIT_LIBS.
2002-09-20 Martin Weber <martweb@gmx.net>
* output-er.c: corrected output format.
* pxl-outline.c: improved speed.
Message-ID: <3D89F00F.E3F18E48@gmx.net>
2002-09-20 Masatake YAMATO <yamato@redhat.com>
* autotrace.m4: did the same as frontline.m4.
$autotrace_exec_prefix or $autotrace_prefix only.
$autotrace_config_exec_prefix and $autotrace_config_prefix are
unnecessary variables.
used --exec_prefix instead of --exec-prefix. This is restriction
of autofig. Fix broken a if-condition. Added "bin" to exec_prefix.
(autotrace_config_args): removed. unnecessary variable.
2002-09-20 Martin Weber <martweb@gmx.net>
* color.c (GET_COLOR): Improved speed and better luminance calculation.
* color.h (COLOR_LUMINANCE): Ditto.
Message-ID: <32434.1032418120@www62.gmx.net>
2002-09-20 Martin Weber <martweb@gmx.net>
* thin-image.c (thin3): This fix corrects some problems
with the thinning of regions that touch the image borders.
Message-ID: <3D88C750.4AE643A5@gmx.net>.
2002-09-18 Masatake YAMATO <yamato@redhat.com>
* configure.in: Version 0.30.6.
* configure.in: Added workarround for pstoedit-3.32.0.
added c++ runtime library to LIBPSTOEDIT_LIBS.