Search the web
Sign In
New User? Sign Up
autotrace
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 472 - 501 of 1209   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
472
The AutoTrace cvs contains new code for exporting dxf. When using no splines all works well but when using splines in the generated files the files cannot be...
Martin Weber
martweb2000
Offline Send Email
Dec 3, 2001
7:51 pm
473
I'll work on a project named autopack. The goal of autopack is to add rpm, deb, pkg and so on to Makefile generated from automake as targets. If you interested...
Masatake YAMATO
masata-y@...
Send Email
Dec 8, 2001
2:40 am
474
AutoTrace 0.28 is out. Several bugfixes, Progress bar, Cancel point, Efforts to make libautotrace.a thread-safe, Clean up library name space (all exported ...
Martin Weber
martweb2000
Offline Send Email
Dec 8, 2001
9:34 pm
475
Hi all, what do you think should be added in future versions of AutoTrace. Thanks Martin...
martweb2000
Offline Send Email
Dec 12, 2001
7:29 am
476
AutoTrace 0.28 was developed on a 32 bit platform using little endian. Please test it also on 64 bit and with big endian and tell me if all works right. Thanks...
martweb2000
Offline Send Email
Dec 12, 2001
7:33 am
477
... What I'd like to do: - library related: -- shared library on UNIX variants with using libtool -- input/ouput plugin - GUI related -- gnome canvas based GUI...
Masatake YAMATO
masata-y@...
Send Email
Dec 12, 2001
10:17 am
478
That are good ideas. 1. shared library on UNIX variants with using libtool: We should also do something similar for Windows that means we should use dlls. 2....
Martin Weber
martweb2000
Offline Send Email
Dec 12, 2001
11:04 am
479
... Before making shared library, I'd like to clean up APIs. ... As a first step, I'd like to split libautotrace.a into libautotrace_input.a and...
Masatake YAMATO
masata-y@...
Send Email
Dec 13, 2001
5:50 pm
480
As a first step, I'd like to split libautotrace.a into libautotrace_input.a and libautotrace_output.a. You mean you wan to split in libautotrace_input.a,...
Martin Weber
martweb2000
Offline Send Email
Dec 13, 2001
7:23 pm
481
... Yes. But I'd like to use the name libautotrace.a instead of libautotrace_core.a. I'll show the interface between libautotrace.a and libautotrace_input.a; ...
Masatake YAMATO
masata-y@...
Send Email
Dec 13, 2001
7:27 pm
482
Alright...
Martin Weber
martweb2000
Offline Send Email
Dec 13, 2001
9:23 pm
483
... doesn't work at all for me: $ autotrace foo.pbm > foo.eps fatal: Unsupported inputformat what's up? I don't have magick or PNG -- don't need 'em with PNM. ...
Stewart C. Russell
scrussatwork
Offline Send Email
Dec 14, 2001
8:58 am
484
Sorry, there is currently a bug. All inport formats that are directly supported by AutoTrace must have an uppercase extension. So do: $ autotrace foo.PBM >...
Martin Weber
martweb2000
Offline Send Email
Dec 14, 2001
11:14 am
485
... argh, that breaks all my scripts that use autotrace, and I suspect other programs (pfaedit, textrace) too. ... which I can't access -- I love firewalls ;-(...
Stewart C. Russell
scrussatwork
Offline Send Email
Dec 14, 2001
11:52 am
486
But you have access via the web interface: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/autotrace/autotrace/ ... -- GMX - Die Kommunikationsplattform im...
Martin Weber
martweb2000
Offline Send Email
Dec 14, 2001
12:22 pm
487
... I've created a CVS snapshot. Get it from ftp://ftp.gyve.org/pub/snapshot/autotrace-0.28post1.tar.gz Masatake...
Masatake YAMATO
masata-y@...
Send Email
Dec 14, 2001
1:24 pm
488
... Works beautifully. Thanks, Masatake!...
Stewart C. Russell
scrussatwork
Offline Send Email
Dec 14, 2001
1:38 pm
489
It seems that the output format is not selected automatically from the output file name. ./autotrace ~/pencam001.ppm --output=bar.svg above command line...
Masatake YAMATO
masata-y@...
Send Email
Dec 18, 2001
12:40 pm
490
You mean -output-file bar.svg instead of --output=bar.svg, but you are right. We should add something like that, but be aware that we will have some confusion...
Martin Weber
martweb2000
Offline Send Email
Dec 18, 2001
1:14 pm
491
... Yes. I should write "-output-file bar.svg". ... ...I understand why you didn't implement such a function:) However, I think such a function is really...
Masatake YAMATO
masata-y@...
Send Email
Dec 19, 2001
5:02 am
492
You are right. Here an other idea. First the outputformat, then the outputextension. What do you think of? {"dxf12", "dxf, "DXF format (without splines)",...
Martin Weber
martweb2000
Offline Send Email
Dec 19, 2001
6:38 am
493
... Could you expalin more? {"dxf12", "dxf, "DXF format (without splines)", output_dxf12_writer}, {"dxf14", "dxf, "DXF format (with splines)" ,...
Masatake YAMATO
masata-y@...
Send Email
Dec 19, 2001
7:13 am
494
Sorry, when the user doesn't specify the format explicitely we should use the first one with the extension dxf that we find in the list and that would be dx12....
Martin Weber
martweb2000
Offline Send Email
Dec 19, 2001
7:25 am
495
... Thank you for your explanation. Your idea is better than mine for users. Second one is interesting. The command line autotrace --output-file=-...
Masatake YAMATO
masata-y@...
Send Email
Dec 19, 2001
8:05 am
496
Okay ... -- GMX - Die Kommunikationsplattform im Internet. http://www.gmx.net...
Martin Weber
martweb2000
Offline Send Email
Dec 19, 2001
8:29 am
497
Just commited. 2001-12-19 Masatake YAMATO <jet@...> * main.c (read_command_line): Used output_get_handler_by_suffix. (main): Use at_output_get_handler. ...
Masatake YAMATO
masata-y@...
Send Email
Dec 19, 2001
8:47 am
498
A Merry Xmas and a Happy New Year to all of you. Martin...
Martin Weber
martweb2000
Offline Send Email
Dec 20, 2001
3:03 pm
499
... Let me join Martin in whishing you all a Merry Xmas and a wondrous 2002! :-) Ciao, Roberto....
Roberto Maurizzi
r_maurizzi
Offline Send Email
Dec 21, 2001
4:08 pm
500
How do you think following renaming: at_coordinate_type and coordinate_type -> at_coord at_real_coordinate_type and real_coordinate_type->...
Masatake YAMATO
masata-y@...
Send Email
Dec 23, 2001
10:53 am
501
Okay...
Martin Weber
martweb2000
Offline Send Email
Dec 23, 2001
12:28 pm
Messages 472 - 501 of 1209   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help