Re: [R] Magick Package

2021-06-07 Thread Duncan Murdoch
On 07/06/2021 5:09 a.m., Nick Wray wrote: Hello I'm trying to use the Magick package for animations - it has downloaded OK but says that it was built under version 4.0.5 and that fontconfig and x11 features are disabled. Atm I am using R 1.4.1103 That's not an R version number. It looks li

[R] Magick Package

2021-06-07 Thread Nick Wray
Hello I'm trying to use the Magick package for animations - it has downloaded OK but says that it was built under version 4.0.5 and that fontconfig and x11 features are disabled. Atm I am using R 1.4.1103 Am I being naive in assuming that all later versions of R subsume the features of earlier

Re: [R] magick package says format is PNG when we load an SVG.

2019-02-25 Thread Ashim Kapoor
Dear Peter, So when I convert from PDF to SVG it will first convert to raster and then back to vector ? Is'nt there a way of preventing this ? Many thanks, Ashim On Mon, Feb 25, 2019 at 3:10 PM peter dalgaard wrote: > The image format in magick is raster based, not vector based, no? So I'd > e

Re: [R] magick package says format is PNG when we load an SVG.

2019-02-25 Thread peter dalgaard
The image format in magick is raster based, not vector based, no? So I'd expect that image_read_svg() converts the file on the fly. -pd > On 25 Feb 2019, at 08:27 , Ashim Kapoor wrote: > > Dear All, > > Here is a MWE : > > library(magick) > tiger <- image_read_svg('http://jeroen.github.io/im

[R] magick package says format is PNG when we load an SVG.

2019-02-24 Thread Ashim Kapoor
Dear All, Here is a MWE : library(magick) tiger <- image_read_svg('http://jeroen.github.io/images/tiger.svg', width = 400) print(tiger) ## format width height colorspace matte filesize density ## 1PNG 400400 sRGB TRUE0 72x72 Why does the format say PNG ? Should it n