-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ggsave saves plots into SVG format somewhat streched #4929
Comments
|
I also ran into this issue, and |
@cbrnr Does that only happen in ggplot2 or can this be reproduced in pure grid as well? |
I can try this tomorrow. Just to clarify I understand you correctly, you want me to do something like this (this is from ChatGPT)? svglite::svglite("grid.svg", width=18, height=6, fix_text_size=FALSE)
library(grid)
grid.newpage()
set.seed(123)
n <- 30
x <- runif(n, 0.1, 0.9)
y <- runif(n, 0.1, 0.9)
groups <- sample(1:3, n, replace = TRUE)
colors <- c("red", "blue", "green")
pushViewport(viewport(width = 0.8, height = 0.8, name = "plotRegion"))
grid.rect(gp = gpar(col = "black")) # Border around plot
for (i in 1:n) {
grid.points(x[i], y[i], pch = 16, gp = gpar(col = colors[groups[i]]))
}
popViewport()
pushViewport(viewport(x = 0.85, y = 0.5, width = 0.2, height = 0.3, just = c("left", "center"), name = "legend"))
grid.rect(gp = gpar(col = "black"))
for (i in 1:3) {
grid.points(0.2, 1 - i * 0.3, pch = 16, gp = gpar(col = colors[i]))
grid.text(paste("Group", i), x = 0.5, y = 1 - i * 0.3, just = "left")
}
popViewport()
dev.off() |
I should probably use |
Yes, though it can be much simpler than the ChatGPT example. library(grid)
# Try reproduce text that gave problems
x <- textGrob("my problematic label", gp = gpar(fontfamily = "Impact"))
# Write to file
svglite::svglite("example.svg", fix_text_size = FALSE)
grid.newpage(); grid.draw(x)
dev.off() I don't have convenient access to multiple platforms so I won't be able to identify if they give different results, and/or debug the problem. But the essence is that if the problem also occurs when using pure grid, then perhaps it is a {svglite} issue instead of a {ggplot2} issue. |
Thanks, I'll report back once I've tested this on multiple platforms. |
However, I'll probably stick with the longer example, because text rendered identically if setting |
So I don't think this is an Linux with macOS with Linux with macOS with |
SVG files generated by ggsave (tested on Ubuntu 18.04 LTS) are kind of stretched compared to the plots in RStudio or PNG format.
(R 4.0.3 ggplot2 3.3.6 svglite 2.1.0)
SVG files looks like this:



And the PNG file looks like this:
This is in RStudio:
I have removed the attribute

lengthAdjust='spacingAndGlyphs'
from text objects:I think that this option could be the culprit.
The text was updated successfully, but these errors were encountered: