ragg icon indicating copy to clipboard operation
ragg copied to clipboard

Graphic Devices Based on AGG

Results 17 ragg issues
Sort by recently updated
recently updated
newest added

Also, if I increase the size of such characters (e.g. `cex = 100`), the R session crashes. ``` r diamond [1] "◆" do_plot

When `ragg::agg_png` is used to export the graphic and there is some symbol, it is not displayed. This does not happen with `grDevices::png`. ``` r library(ggplot2) grDevices::png("grDevices_image.png", width = 1000,...

Currently `{ragg}` does not provide full information to the enhanced `dev.capabilities()` feature introduced in R 4.2: * https://developer.r-project.org/Blog/public/2021/12/14/updating-graphics-devices-for-r-4.2.0/ * https://cran.r-project.org/doc/manuals/r-devel/R-ints.html#Device-capabilities ```r ragg::agg_png(tempfile()) print(dev.capabilities()) dev.off() ``` ```r $semiTransparency [1] TRUE $transparentBackground...

Hi, Lately, I have had issues using ragg (last version) with geom_tile(). I am not sure where it comes from, but using png_cairo on windows doesn't provoke this strange pattern,...

The 1.7MB svg ragg logo is causing high loading times on some devices. https://raw.githubusercontent.com/r-lib/ragg/HEAD/man/figures/logo.svg

When installing under Debian 10 / 11 I get a lot of messages: note: parameter passing for argument of type changed in GCC 7.1 Example: ` /usr/include/c++/10/bits/vector.tcc: In member function...

**First chunk is the output of installing ragg:** ``` > install.packages("ragg") There is a binary version available but the source version is later: binary source needs_compilation ragg 1.1.3 1.2.1 TRUE...

Fix #96 This is an attempt to address the issue of neighbouring rectangles having a thin line between them due to anti-aliasing. In the default devices this is handled by...

I've noticed that `agg_png` doesn't handle UTF-8 in file names well. ## Example ``` r library(ragg) file

I have an unusual issue, which I can't isolate the cause of. The ragg png device seems to drop the minus sign in negative exponents, for example, day-1 or 10-1....