-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2857 lines (1741 loc) · 71.6 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
2002-11-09 Masatake YAMATO <[email protected]>
* configure.in: version 0.31.1.
echo building configuration at the
end of configure.
2002-11-09 Masatake YAMATO <[email protected]>
* autotrace.h: Don't define _().
* configure.in: LT_CURRENT=3.
See my change at 2002-10-31.
2002-11-09 Martin Weber <[email protected]>
* output-dr2d.c (BuildDRHD::FloatAsIEEEBytes):
Change the position where the datum is written.
Message-ID: <[email protected]>.
2002-11-09 Martin Weber <[email protected]>
* output-dxf.c (output_layer): move the
declaration of last_color to the out of loop.
Message-ID: <[email protected]>.
2002-11-09 Martin Weber <[email protected]>
* 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: <[email protected]>.
2002-11-08 Martin Weber <[email protected]>
* pxl-outline.c: Big changes again that fix a bug
related to centerline tracing. NOTE: A bug is still existed.
Message-ID: <[email protected]>.
2002-11-07 Martin Weber <[email protected]>
* 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: <[email protected]>.
2002-11-07 Masatake YAMATO <[email protected]>
* spline.[ch]: Removed unused ifdefs.
2002-11-04 Martin Weber <[email protected]>
* fit.c: fix code broken by Masatake at
2002-11-04.
2002-11-04 Masatake YAMATO <[email protected]>
* fit.c (new_fitting_opts::error_threshold):
Fix the default value to 2.0.
2002-11-03 Masatake YAMATO <[email protected]>
* fit.[ch]: Removed unused ifdefs.
2002-10-31 Masatake YAMATO <[email protected]>
* *: width_factor, weight_factor -> width_weight_factor.
* configure.in: added -lm to the macro
that checks libpng. Suggested by jlm <[email protected]>.
2002-10-29 Martin Weber <[email protected]>
* pxl-outline.c (is_valid_dir): used
COMPUTE_DELTA twice to avoid a bug.
Message-ID: <[email protected]>.
2002-10-30 Masatake YAMATO <[email protected]>
* configure.in: Display more messages
while checking pstoedit twice.
Suggested by Markus Demleitner
2002-10-29 Martin Weber <[email protected]>
* pxl-outline.c (num_neighbors): New function.
(find_centerline_pixels): Use num_neighbors.
Message-ID: <[email protected]>.
2002-10-29 Masatake YAMATO <[email protected]>
* 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 <[email protected]>
* autotrace.c: #include "output-pstoedit.h"
with ifdef.
2002-10-24 Masatake YAMATO <[email protected]>
* configure.in: version 0.31.0.
2002-10-24 Martin Weber <[email protected]>
* autotrace.dsp (RSC): Version 0.31.
* autotrace.vcproj: Ditto.
2002-10-23 Martin Weber <[email protected]>
* pxl-outline.c (is_valid_dir):
removed comment.
* NEWS: updated.
Message-ID: <[email protected]>.
2002-10-23 Masatake YAMATO <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* pxl-outline.c: Big changes that fix a bug
related to centerline tracing.
2002-10-21 Martin Weber <[email protected]>
* input-magick.c: Checked autotrace works with
ImageMagick-5.5.2.
Message-ID: <[email protected]>.
2002-10-20 Masatake YAMATO <[email protected]>
* 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 <[email protected]>
* autotrace.1: updated again.
2002-10-10 Masatake YAMATO <[email protected]>
* configure.in: Use ' instead of " to retrieve
MAGICK_MAJOR_VERSION.
2002-10-10 Martin Weber <[email protected]>
* autotrace.1: updated.
2002-10-10 Masatake YAMATO <[email protected]>
* main.c (USAGE2): added <real> to width-factor.
2002-10-09 Masatake YAMATO <[email protected]>
* FAQ: Fix a typo. Suggested by Martin.
* configure.in: version 0.30.8.
Updated cocuments.
2002-10-08 Martin Weber <[email protected]>
* 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: <[email protected]>.
2002-10-08 Martin Weber <[email protected]>
* fit.c (split_at_corners, fit_curve_list):
handle very small objects.
Message-ID: <[email protected]>
Message-ID: <[email protected]>
2002-10-08 Masatake YAMATO <[email protected]>
* autotrace.h (at_doc__width_factor): added
label for width_factor.
2002-10-07 Masatake YAMATO <[email protected]>
* input-magick.c (input_magick_reader): removed
comments. suggested by Martin.
2002-10-07 Martin Weber <[email protected]>
* output-eps.c (out_splines): Now the eps output is
interpreted correctly by CorelDraw.
Message-ID: <[email protected]>.
2002-10-07 Martin Weber <[email protected]>
* fit.c (find_tangent): fixed a bug in tangent
calculation.
Message-ID: <[email protected]>.
2002-10-06 Masatake YAMATO <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* README: Updated.
2002-10-03 Martin Weber <[email protected]>
* autotrace.dsp: Updated.
2002-10-02 Masatake YAMATO <[email protected]>
* 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 <[email protected]>
* * (*): at_output_opts_type is introduced.
2002-09-29 Martin Weber <[email protected]>
README: added new option
image-proc.c: removed warnings
Message-ID: <[email protected]>.
2002-09-29 Martin Weber <[email protected]>
*: now recognizes the line width
median.c: bugfix
Message-ID: <[email protected]>.
2002-09-29 Masatake YAMATO <[email protected]>
* 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 <[email protected]>
* pxl-outline.c: I introduced a bug in pxl-outline.c.
change back to the version used in 0.30.5.
Message-ID: <[email protected]>.
2002-09-28 Masatake YAMATO <[email protected]>
* 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 <[email protected]>
* pxl-outline.c (find_centerline_pixels): During speed up
the code I introduced a bug. Here the fix.
Message-ID: <[email protected]>.
2002-09-26 Masatake YAMATO <[email protected]>
* 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 <[email protected]>
* 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: <[email protected]>.
2002-09-25 Masatake YAMATO <[email protected]>
* configure.in: use pstoedit.m4 instead of pkg-config.
showed more message about pstoedit.
2002-09-21 Masatake YAMATO <[email protected]>
* configure.in: added -dl to LIBPSTOEDIT_LIBS.
2002-09-20 Martin Weber <[email protected]>
* output-er.c: corrected output format.
* pxl-outline.c: improved speed.
Message-ID: <[email protected]>
2002-09-20 Masatake YAMATO <[email protected]>
* 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 <[email protected]>
* color.c (GET_COLOR): Improved speed and better luminance calculation.
* color.h (COLOR_LUMINANCE): Ditto.
Message-ID: <[email protected]>
2002-09-20 Martin Weber <[email protected]>
* thin-image.c (thin3): This fix corrects some problems
with the thinning of regions that touch the image borders.
Message-ID: <[email protected]>.
2002-09-18 Masatake YAMATO <[email protected]>
* configure.in: Version 0.30.6.
* configure.in: Added workarround for pstoedit-3.32.0.
added c++ runtime library to LIBPSTOEDIT_LIBS.
2002-09-18 Martin Weber <[email protected]>
* autotrace.dsp:
* autotrace.vcproj: Updated.
Message-ID: <[email protected]>.
2002-09-12 Masatake YAMATO <[email protected]>
Martin suggested me that tmpnam is ANSI C
function so we don't have to check.
* acconfig.h: removed HAVE_TMPNAM.
* configure.in (HAVE_LIBPSTOEDIT): Checked mkstemp
only.
* output-pstoedit.c (make_temporary_file): used
tmpnam if mkstemp is not found.
2002-09-11 Masatake YAMATO <[email protected]>
* output-pstoedit.c (make_temporary_file): New function.
(output_pstoedit_writer): used make_temporary_file.
* configure.in: checked mkstemp and tmpnam if
HAVE_LIBPSTOEDIT is yes.
* acconfig.h: Added HAVE_MKSTEMP and HAVE_TMPNAM.
2002-09-10 Martin Weber <[email protected]>
* input.c (at_input_get_handler_by_suffix): added
cast to the returned value for Visual C++.
* output-pstoedit.c (output_pstoedit_get_writer):
Likewise.
Message-ID: <[email protected]>.
2002-09-10 Martin Weber <[email protected]>
* output-pstoedit.c: Include io.h if _VISUALC_
is defined.
(set_last_suffix): returned void.
(output_pstoedit_writer): tmpfd is typed
as char * if _VISUALC_ is defined.
(output_pstoedit_writer): Use _mktemp instead
of mkstemp if _VISUALC_ is defined.
(output_pstoedit_writer): do fopen if
_VISUALC_ is defined.
(output_pstoedit_writer): did fclose instead
of close.
(remove_tmpfile): Added const to the 1st parameter.
Message-ID: <[email protected]>.
2002-09-09 Masatake YAMATO <[email protected]>
* configure.in: Version 0.30.5.
2002-09-08 Masatake YAMATO <[email protected]>
* output.c (output_is_static_member): put #ifdef HAVE_LIBPSTOEDIT
- #endif arround the function. The problem is reported by Martin.
* configure.in: Version 0.30.4.
LT_CURRENT = 1, LT_AGE = 1.
* output-pstoedit.h: Addec comments about MT unsafe.
* output-pstoedit.c (get_last_suffix): New file.
Use get_last_suffix in all functions in output-pstoedit.c.
2002-09-06 Masatake YAMATO <[email protected]>
* main.c: removed unnecessary '\n' in FATAL*.
* output.c (at_output_get_handler_by_suffix): used
output_pstoedit_get_writer.
2002-09-05 Masatake YAMATO <[email protected]>
* output-pstoedit.[ch]: Use at_string.
(output_pstoedit_get_writer): New function.
(output_pstoedit_set_last_suffix): deleted.
* output-pstoedit.c (get_symbolicname): New function.
(remove_tmpfile): Print tmp file names if BO_DEBUG is 1.
(output_pstoedit_writer): Use two temporary files to keep
both the command line syntax of autotrace and the
pstoedit API.
(output_pstoedit_suffix): New variable.
* output.c (streq): New function.
(at_output_get_handler_by_suffix): Call
output_pstoedit_set_last_suffix.
(at_output_list_new): Use both suffixes and symbolicnames.
(at_output_shortlist): Likewise.
(output_is_static_member): Check both suffixes and symbolicnames.
* output-pstoedit.[ch] (output_pstoedit_set_last_suffix):
New function.
* main.c (output_list_formats): gave more
spaces to the output formats.
2002-08-27 Masatake YAMATO <[email protected]>
* configure.in: 0.30.3.
library version is set to 1.0.1.
* logreport.h (at_log_file): Renamed from
log_file. I guess the symbol `log_file'
conflicts with something defined on debian libc.
The bug is reported by Gerhard Gaussling <[email protected]>.
2002-07-10 Martin Weber <[email protected]>
* output.c (at_spline_list_foreach, at_spline_list_array_foreach):
Added "unsigned" to `i`.
included strgicmp.h.
Message-ID: <[email protected]>.
2002-07-09 Masatake YAMATO <[email protected]>
* configure.in: Version 0.30.2.
2002-07-01 Masatake YAMATO <[email protected]>
* configure.in: Don't use libdir value defined
in libMagick.al.
* output-pstoedit.h: Include pstoedit/pstoedit.h.
* Makefile.am: improved pstoedit supports.
* autotrace-config.af: Refer LIBPSTOEDIT_LIBS.
* autotrace.pc.in (Libs): Likewise.
2002-06-30 Masatake YAMATO <[email protected]>
* output.c (at_*_get_handler_by_suffix): Return
NULL if suffix is NULL pointer or an empty string.
* input.c (at_input_list_new): Pass both NULL and "*"
to GetMagickInfo. Suggested by [email protected]
* Makefile.am (EXTRA_DIST): Added autotrace-config.in.
* autotrace.c: Remove make_string.
* configure.in: Put double quotes arount version and url.
* input-magick.c (magick_load_image): Don't use msg_data
as a condition. Use msg_func instead. Use exception.reason
instead of exception.description.
Initialize image.
* autotrace.c (make_string): Put '"' around
an arg.
2002-06-26 Masatake YAMATO <[email protected]>
* Makefile.am (libautotrace_la_SOURCES): Use '()'
instead of "{}".
2002-06-11 Masatake YAMATO <[email protected]>
* README: Reorganized.
* exception.h, input.h, output.h and types.h: Added
extern "C" {} for C++ clinets.
2002-06-09 Masatake YAMATO <[email protected]>
* autotrace.c (make_string): New macro.
(at_version, at_home_site): Use make_string.
* configure.in (AUTOTRACE_VERSION): Remove double quotes.
(AUTOTRACE_WEB): Likewise.
(LT_*): Introduce libtool.
Check the broken ImageMagick.la.
* Makefile.am (lib_LTLIBRARIES): Introduce libtool.
2002-06-05 Masatake YAMATO <[email protected]>
* output.h (at_output_add_handler): Added stab.
* output.c: Added experimental pstoedit supports.
* output-pstoedit.[ch]: New files.
* configure.in(AC_ARG_PROGRAM, AM_SANITY_CHECK,AC_PROG_INSTALL):
Added.
Added experimental pstoedit supports.
* acconfig.h (HAVE_LIBPSTOEDIT): Added experimental pstoedit
supports.
* Makefile.am (EXTRA_DIST): Added HACKING.
(autotrace_LDADD, INCLUDES): Added experimental pstoedit
supports.
2002-05-12 Masatake YAMATO <[email protected]>
* configure.in: linker messages that warns symbols are multiply defined are
suppressed when the host is Darwin.
Suggested by Martin Kerscher <[email protected]>.
* input.c (at_input_list_new): Pass NULL to GetMagickInfo
instead of empty string.
* output.h (at_output_add_handler): Moved from autotrace.h.
* Makefile.am: Made output.h installed.
* spline.h: Use macros newly defined in output.h.
* output.[ch]: Added macros and functions that supports
accessing splines data. Don't include output.h.
* output-*.h: Use at_spline_list_array_type as a
formal argument instead of spline_list_array_type.
* output-fig.c: Include spline.h.
* autotrace.[ch] (at_color_equal): New function.
2002-05-06 Martin Weber <[email protected]>
* filename.c (make_suffix): length_through_dot
is typed to unsigned long for 64bit arch.
(remove_suffix): Likewise.
* curve.c (log_curve): Cast curve to unsigned long for 64bit
arch.
(log_entire_curve): Likewise.
* autotrace.vcproj: Added output-dr2d.[ch].
Message-ID: <[email protected]>.
Message-ID: <[email protected]>.
2002-05-04 Masatake YAMATO <[email protected]>
* *.c: include config.h.
* configure.in (AM_CONFIG_HEADER): Use config.h.
* acconfig.h: New file.
2002-05-01 Masatake YAMATO <[email protected]>
* configure.in: Version 0.30.1.
* autotrace.1: Updated.
* HACKING: Updated.
2002-04-30 Masatake YAMATO <[email protected]>
* Makefile.am (output_src): Added output-dr2d.c.
* output-dr2d.c: Moved the declarations in
output-dr2d.h to output-dr2d.c. Added static the
declarations.
2002-04-30 Martin Weber <[email protected]>
* autotrace.dsp: updated.
* autotrace.vcproj: ditto.
* output.c: Added dr2d output writer.
* output-dr2d.[ch]: New files.
Contributed by Andrew Elia.
Message-ID: <[email protected]>.
2002-04-30 Masatake YAMATO <[email protected]>
* output-svg.c (out_splines): Added `;' after `:none'.
* autotrace.h (_at_spline_list_array_type): Added
new field background_color.
* fit.c (fitted_splines): Copy background_color
into splines.
* autotrace.c (at_splines_free):
free background_color.
2002-04-30 Martin Weber <[email protected]>
* output-*.*: fixed output generation when option
background-color is active.
Message-ID: <[email protected]>.
2002-04-28 Masatake YAMATO <[email protected]>
* main.c, fit.c, autotrace.[ch]: Renamed
bgColor to background_color.
* fit.c (spline_linear_enough): Don't
log distance. It is function.
In stead, logging dist, at_real var.
2002-04-28 Martin Weber <[email protected]>
* input-magick.c: Now also tested with ImageMagick till 5.4.5.
Wrote about it in the comment area.
Message-ID: <[email protected]>.
2002-04-21 Masatake YAMATO <[email protected]>
* input-magick.c (magick_load_image): Don't use
MagickError. Instead use msg_func.
* autotrace.h (struct _at_fitting_opts_type): Rename
`filter_iteration_count' to `filter_iterations' in
order to make the field and its associated option name
same.
2002-04-16 Masatake YAMATO <[email protected]>
* autotrace.dsp: s/VERSION/AUTOTRACE_VERSION/g.
* autotrace.vcproj: ditto. Suggested by Martin.
* autotrace.c (at_version): Use AUTOTRACE_VERSION
instead of VERSION.
(at_home_site): Use AUTOTRACE_WEB.
* autotrace.m4 (AM_PATH_AUTOTRACE): Check version number.
* configure.in (AUTOTRACE_VERSION, AUTOTRACE_MAJOR_VERSION,
AUTOTRACE_MINOR_VERSION, AUTOTRACE_MICRO_VERSION,
AUTOTRACE_WEB):
New constants.
2002-04-15 Martin Weber <[email protected]>
* fit.c (find_half_tangent):
(find_tangent): Fixed a bug in tangent
calculation.
2002-04-15 Masatake YAMATO <[email protected]>
* COPYING.LIB: New file.
* despeckle.*: Change the license to LGPL.
* input*.*: Likewise.
* median.c: Likewise.
* output-*.*: Likewise.
* quantize.h: Likewise.
* thin-image.*: Likewise.
2002-04-03 Martin Weber <[email protected]>
* exception.[ch] (at_exception_fatal, at_exception_warning):
added "const" to the passig parameter.
* input-png.c (handle_warning, handle_error): Likewise.
(init_structs): Cast handle_error and handle_warning that
are passed to png_create_read_struct.
(load_image): make width, height and row unsigned short.
Casted values returned from png_get_image_width.
Message-ID: <[email protected]>.
2002-04-03 Masatake YAMATO <[email protected]>
* HACKING (Tag naming scheme): Updated.
* autotrace.spec.in: Updated.
* configure.in: Version 0.30.
* exception.c (at_exception_new): Fix wrong
parameter declaration.
2002-04-03 Martin Weber <[email protected]>
* exception.h (at_exception_new): Fix wrong
parameter declaration.
* input-pnm.c (struct _PNMRowInfo): Removed.
Message-ID: <[email protected]>.
2002-03-30 Martin Weber <[email protected]>
* output-swf.c (output_swf_writer): printed
warning if autotrace runs on windows.
* autotrace.dsp: Updated.
* autotrace.vcproj: Updated.
Message-ID: <[email protected]>.
2002-03-30 Martin Weber <[email protected]>
* main.c: fixed to remove some compiler warnings in
main.c
(dump): used at_bitmap_get_planes.
Message-ID: <[email protected]>.
2002-03-31 Masatake YAMATO <[email protected]>
* configure.in: Create a pre release(0.30pre2).
2002-03-30 Martin Weber <[email protected]>
* output-emf.c: Removed unnecessary #define,
set pen width to zero when in outline mode. Now checking whether
it should write to stdout only for Windows.
Message-ID: <[email protected]>.
2002-03-30 Martin Weber <[email protected]>
* output-pdf.c (out_splines): Reduced color precision to get
smaller files.
* output-p2e.c (out_splines): Likewise.
* output-eps.c (out_splines): Likewise.
* output-epd.c (out_splines): Likewise.
* main.c (main): using binary mode for dumping bitmaps.
* pxl-outline.c (*): The y values of the outline were always to
high by one.
Message-ID: <[email protected]> and
Message-ID: <[email protected]>.
2002-03-30 Masatake YAMATO <[email protected]>
* pxl-outline.c (find_outline_pixels): moved
test_cancel func to inner loop.
2002-03-28 Martin Weber <[email protected]>
* HACKING (Tools for debugging output): Updated.
* README: Updated.
* output.c (output_formats): Unify dxf output entry.
* main.c (USAGE1): dpi is used in mif output,
not emf.
2002-03-28 Martin Weber <[email protected]>
* output-emf.c: rewritten with Allen Barnett.
2002-03-28 Masatake YAMATO <[email protected]>
* HACKING (Tool for debugging output):
Write about viewers.
2002-03-28 Martin Weber <[email protected]>
* despeckle.c: despeckle now also works on gray
scale images.
2002-03-20 Martin Weber <[email protected]>
* main.c (main): Moved dumping of the bitmap so that quantize
and despeckle are also in effect.
Message-ID: <[email protected]>.
2002-03-24 Ian MacPhedran <[email protected]>
* output-fig.c (out_fig_splines): Added a new
local variable, fig_spline_close.
2002-03-20 Martin Weber <[email protected]>
* output-emf.c (GetEmfStats, GetEmfStats):
Number of records was not counted correctly.
Message-ID: <[email protected]>.
2002-03-21 Masatake YAMATO <[email protected]>
* Makefile.am (libautotrace_a_SOURCES): Added
strgicmp.c. This function must be in libautotrace.a
because input.c uses.
2002-03-20 Martin Weber <[email protected]>
* README updated.
* TODO: New file.
2002-03-20 Martin Weber <[email protected]>
* output-emf.c: Don't include output.h.
Message-ID: <[email protected]>.
2002-03-20 Masatake YAMATO <[email protected]>
* NEWS: Updated.
* configure.in: Create a pre release(0.30pre1).
2002-03-20 Martin Weber <[email protected]>
* output-emf.c: Include output.h.
Fixed bug when boundaries of the splines were larger than the
boundaries of the bitmap.
* output-cgm.c: removed FLOAT_TO_UI16.
Message-ID: <[email protected]>.
2002-03-20 Masatake YAMATO <[email protected]>
* NEWS: Updated for 0.30.
* autotrace.h: Added comments for at_splines_new.
2002-03-20 Martin Weber <[email protected]>
* fit.c (fitted_splines::total): Removed.
(*): Remove `_'(underscore) from variable
names to avoid conflicting with function
name. Initialized local variables to
avoid compiler warnings.
* thin-image.c: Put cast to avoid compiler
warnings.
* median.c (generate_histogram_rgb): Added