ggplot2: blurry facet labels
问题 When I save a ggplot figure -- regardless of whether I use ggsave() or e.g. png() -- the facet labels come out looking blurry. For example, the following code produces a facet label 'F' that looks like the picture below, with coloration on the outer pixels of the text raster. ggplot(data.frame(x=1, y=1, f='F'), aes(x, y)) + facet_grid(. ~ f) ggsave('foo.png') Thanks in advance for any advice! PS -- As per @Brian's request, I'm updating this post to note that I'm using a Windows machine. PPS -