Search found 12 matches

by Wolfgang Tsafack
Wed Nov 11, 2009 6:09 am
Forum: Common Lisp
Topic: how can I launching external programs?
Replies: 23
Views: 25244

Re: how can I launching external programs?

@methusala I really don't understand what you mean. You decsrible an xml-script. How can i put my Text inside the svg-image? @others 1. That' perhaps the better thing to do: visiting an Imagemagick-forum. I will do it, but let talk about the problem again 2. I got it with this code last weekend: (sy...
by Wolfgang Tsafack
Mon Nov 09, 2009 2:17 am
Forum: Common Lisp
Topic: how can I launching external programs?
Replies: 23
Views: 25244

Re: how can I launching external programs?

@Ramarren, As far as I can tell, it is not possible. At... I got it in only one image with adding the command line option append like this: typing this convert D:/LispWorks/AA/Belege-ocr/20060623-11-48-23Kopie.txt [b]+append[/b] D:/LispWorks/AA/Belege-ocr/20060623-11-48-23Kopie.jpg on the DOS comand...
by Wolfgang Tsafack
Sun Nov 08, 2009 11:53 am
Forum: Common Lisp
Topic: how can I launching external programs?
Replies: 23
Views: 25244

Re: how can I launching external programs?

I enjoy to early. whe work on command line editor for windows, i discover that it was not necessary to enter on the imageMagick directory to convert the file: ImageMagick ist installed on my system at: C:\Program Files\ImageMagick-6.5.7-Q16 . But I use my editor at: C:\User\Willy> an then I typed: c...
by Wolfgang Tsafack
Sun Nov 08, 2009 11:31 am
Forum: Common Lisp
Topic: how can I launching external programs?
Replies: 23
Views: 25244

Re: how can I launching external programs?

@Ramarren I got it. I wokr! But there is a problem: When converting a long file, ImageMagick make two image files. For example I try to convert file123.txt, imageMagick make the 2 files file123-0.jpg and file123-1.jpg. How can I make sure that, it convert the given file into only one file123.jpg Tha...
by Wolfgang Tsafack
Sun Nov 08, 2009 4:28 am
Forum: Common Lisp
Topic: Get last element of a list
Replies: 5
Views: 12741

Re: Get last element of a list

(defun getAllLastElems(listOfLists) (mapcar (lambda (list-elem) (last list-elem) ) listOfLists) ) Hello, I make an error when writing this last post. The function last return a list not a value (last '(a d 6)) --> (6) So you have to add first/or car into the lambda-function. So the correct code is ...
by Wolfgang Tsafack
Sun Nov 08, 2009 2:07 am
Forum: Common Lisp
Topic: how can I launching external programs?
Replies: 23
Views: 25244

Re: how can I launching external programs?

@Ramerren Are you seen this post. Please help solve this problem: ____________________________________________________________ Re: how can I launching external programs? Postby Wolfgang Tsafack » Sat Nov 07, 2009 12:18 pm @Ramarren When try tu run this peace of code on Lispworks 5.0.1, I saw the sh...
by Wolfgang Tsafack
Sat Nov 07, 2009 12:18 pm
Forum: Common Lisp
Topic: how can I launching external programs?
Replies: 23
Views: 25244

Re: how can I launching external programs?

@Ramarren When try tu run this peace of code on Lispworks 5.0.1, I saw the shell fastly showing wiht a lot of thinks inside. But I didn't any image file on my computer. I search the file Belege-txt/20060629-10-14-56.jpg , but not one. Where did the file was stored? I don't have any idea. That was wh...
by Wolfgang Tsafack
Sat Nov 07, 2009 6:36 am
Forum: Common Lisp
Topic: Get last element of a list
Replies: 5
Views: 12741

Re: Get last element of a list

@daimous You need to use mapcar in combination wiht the lambda-function. it's the best way to solve your problem! (defun getAllLastElems(listOfLists) (mapcar (lambda (list-elem) (last list-elem) ) listOfLists) ) just try it. I don't know if the function (last list) is correct. If it isn't, try to fo...
by Wolfgang Tsafack
Sat Nov 07, 2009 5:57 am
Forum: Common Lisp
Topic: how can I launching external programs?
Replies: 23
Views: 25244

Re: how can I launching external programs?

@Remarren thanks a lot for your help. That is right with the jpg option! But for my work it is not more important. However I'll make it wiht gif extension. I'll want to clear somme point in the calling of (system:call-system "convert txt:example-text-file example-text-file.jpg") : 1. I sup...
by Wolfgang Tsafack
Sat Nov 07, 2009 3:54 am
Forum: Common Lisp
Topic: how can I launching external programs?
Replies: 23
Views: 25244

Re: how can I launching external programs?

Thank you very much Rammaren,

I think I will use ImageMagick! I didn't know that. This software is not very used by us.

But what about the question to save it as jpg-image? after call call-system function?
I don't have any idea?

Thanks