Was worth looking at,
-
-
and so is this:
https://sk1project.net/news.php?readmore=127
A very interesting Vector Graphics program.
Danton's Head
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
-
- Livecode Opensource Backer
- Posts: 10097
- Joined: Fri Feb 19, 2010 10:17 am
Danton's Head
Last edited by richmond62 on Mon Nov 12, 2018 9:29 am, edited 1 time in total.
Re: Danton's Head
Yup, seen it and used it a few times, as well as some others...
Some I use more regularly...

-
- Livecode Opensource Backer
- Posts: 10097
- Joined: Fri Feb 19, 2010 10:17 am
Re: Danton's Head
I am looking for something that will batch convert SVG files to EPS on Linux.
-
-
Re: Danton's Head
Image magick is what I use for batch conversion most of the time, because it is so drop dead simple.
I seem to remember there was a long post about just that thing in this thread Image Magick and LiveCode, in fact, but don't recall if EPS was among the things being converted
but I do suspect it would be no issue for Image magick.
Warning post about vector to vector conversion with Image magick.
I seem to remember there was a long post about just that thing in this thread Image Magick and LiveCode, in fact, but don't recall if EPS was among the things being converted

Warning post about vector to vector conversion with Image magick.

-
- Posts: 253
- Joined: Wed Aug 19, 2015 4:29 pm
Re: Danton's Head
InkScape CLI + Livecode works pretty good. This works for me to convert a folder of (only) SVG files to EPS in ubuntu 18.04richmond62 wrote: ↑Sun Nov 11, 2018 1:54 pmI am looking for something that will batch convert SVG files to EPS on Linux.
Code: Select all
on mouseup
answer folder "select a folder that contains ONLY SVG files"
set the defaultfolder to it
put the files into theFiles
set the itemdelimiter to "."
answer folder "Select a folder to save converted files to"
put it & "/" into tOutputFolder
repeat with x=1 to the number lines in theFiles
put shell("inkscape"&&(line x of theFiles)&&"-E"&&tOutputFolder&(item 1 of line x of theFiles)&".eps")
end repeat
end mouseup