Danton's Head

Want to talk about something that isn't covered by another category?

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
richmond62
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 10415
Joined: Fri Feb 19, 2010 10:17 am

Danton's Head

Post by richmond62 »

Was worth looking at,
-
Danton.jpg
Danton.jpg (121.05 KiB) Viewed 4959 times
-
and so is this:

https://sk1project.net/news.php?readmore=127

A very interesting Vector Graphics program.
Last edited by richmond62 on Mon Nov 12, 2018 9:29 am, edited 1 time in total.
bogs
Posts: 5480
Joined: Sat Feb 25, 2017 10:45 pm

Re: Danton's Head

Post by bogs »

Yup, seen it and used it a few times, as well as some others...
Hm...
Hm...
Some I use more regularly...
Maybe too much?
Maybe too much?
Image
richmond62
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 10415
Joined: Fri Feb 19, 2010 10:17 am

Re: Danton's Head

Post by richmond62 »

I am looking for something that will batch convert SVG files to EPS on Linux.
-
louisette.jpg
bogs
Posts: 5480
Joined: Sat Feb 25, 2017 10:45 pm

Re: Danton's Head

Post by bogs »

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 :oops: but I do suspect it would be no issue for Image magick.

Warning post about vector to vector conversion with Image magick.
Image
ClipArtGuy
Posts: 265
Joined: Wed Aug 19, 2015 4:29 pm

Re: Danton's Head

Post by ClipArtGuy »

richmond62 wrote: Sun Nov 11, 2018 1:54 pm I am looking for something that will batch convert SVG files to EPS on Linux.
InkScape CLI + Livecode works pretty good. This works for me to convert a folder of (only) SVG files to EPS in ubuntu 18.04

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
The double answer folders is a bit janky as far as that goes, but I just wrote this quickly to see if it worked, which it seems to do fairly well on my end.
Post Reply