Re: [R] Load svg, eps or png into graphics device?

2020-06-22 Thread Rainer M Krug
> On 20 Jun 2020, at 01:30, Abby Spurdle wrote: > > If I understand your question correctly, you're already able to read > an EPS file. > So, essentially, you have an answer to your question. Well - there are some dependencies (system as well as package dependencies) which I would like to

Re: [R] Load svg, eps or png into graphics device?

2020-06-22 Thread Rainer M Krug
> On 21 Jun 2020, at 22:42, Paul Murrell wrote: > > Hi > > Do you mean you want to reduce *system requirements* ? system requirements and package dependencies. Yes. > I'm not sure you have many options. That was my impression as well, and that is why I asked here - possibly somebody has

Re: [R] Load svg, eps or png into graphics device?

2020-06-21 Thread Paul Murrell
Hi Do you mean you want to reduce *system requirements* ? I'm not sure you have many options. Looking at the plantuml output format options, there is ... png via 'png', which requires libpng svg via 'grImport2', which requires 'rsvg', which requires librsvg2 eps via 'grImport', which

Re: [R] Load svg, eps or png into graphics device?

2020-06-19 Thread Abby Spurdle
If I understand your question correctly, you're already able to read an EPS file. So, essentially, you have an answer to your question. Paul Murrell published an article on using raster graphics, in 2011. https://journal.r-project.org/archive/2011-1/RJournal_2011-1_Murrell.pdf I would assume

[R] Load svg, eps or png into graphics device?

2020-06-19 Thread Rainer M Krug
Hi I have a package, which plots from the plantuml syntax (https://plantuml.com) graphs via a knitr engine, into a file, or into a graphics device (https://github.com/rkrug/plantuml). I am using at the moment grImport for the eps import, but would like to cut down on dependencies. Is there