以 EPS 格式保存 ggplot 以便在 Adobe Illustrator 中进行编辑——文本问题
Saving ggplot in EPS format for editing in Adobe Illustrator -- problem with text
问题
我想从 R 中保存 ggplot
以便在 Adobe Illustrator (AI) 中进行编辑。我可以使用 ggsave
以 EPS
或 PS
格式保存情节,但情节总是在文本周围带来一些阴影。有没有办法在 R 或 Adobe Illustrator 中解决这个问题?
例如,我的 plot 看起来像这样:
但是,当我将其导入 AI 时,它看起来像这样(文本周围有粉红色阴影):
代码
# Saving a plot for editing in Adobe Illustrator.
library(ggplot2) # for plotting
library(cowplot) # for ggsave
# Generate an example scatter plot.
# From: http://r-statistics.co/Top50-Ggplot2-Visualizations-MasterList-R-Code.html
options(scipen=999) # turn-off scientific notation like 1e+48
theme_set(theme_gray())
data("midwest", package = "ggplot2")
plot <- ggplot(midwest, aes(x=area, y=poptotal)) +
geom_point(aes(col=state, size=popdensity)) +
geom_smooth(method="loess", se=F) +
xlim(c(0, 0.1)) +
ylim(c(0, 500000)) +
labs(subtitle="Area Vs Population",
y="Population",
x="Area",
title="Scatterplot",
caption = "Source: midwest")
plot
# Save the plot as .eps with ggsave.
file <- "myplot.eps"
ggsave("myplot.jpg",plot)
由于您已经在使用 ggplot2
,您可以将最后一行更改为
ggsave("myplot.eps",plot)
或
setEPS()
postscript("whatever.eps")
#Plot Code
按照以下 link 获取其他可能的解决方案:
Export a graph to .eps file with R
确保您导出的文档可以通过图形编辑器进行编辑。您需要 select 图形编辑器支持的绘图主题(包括字体等)。
GGPLOT2 主题文档请参考以下 links :
https://ggplot2.tidyverse.org/reference/theme.html
https://www.rdocumentation.org/packages/ggplot2/versions/2.1.0/topics/theme
2020 年 11 月 3 日更新
我现在确保在生成任何绘图之前我已经将 explcity 的字体设置为 'Arial'。您可以使用 extrafont
包设置自定义字体。
library(extrafont)
font_import(path=font_path, prompt=FALSE)
fonts() # check to see which fonts are available
choose_font("Arial")
# plotting code ...
其中 font_path
指定包含所需“字体”的目录路径,例如arial.ttf
.
旧的部分解决方案
对于这个糟糕的问题,我深表歉意。导入 Adobe Illustrator 后,绘图文本后面的粉红色阴影表示该字体无法被 AI 识别。如果您从 AI 导出绘图,此阴影将消失。
要将字体添加到 AI,您可以尝试按照以下说明操作:
正在向 Adobe Illustrator 添加新字体
- 创建一个新的 AI 文档(文件 > 新建)
- 开始输入新文档。
- 从 dafont.com 下载橙汁字体。
- 解压文件(橙汁2.0.ttf)
- 安装 TrueType 文件(右键单击 > 安装)。
- 现在应该可以在 AI 中识别该字体。
检查ggplot使用的字体:
> mytheme <- ggplot2::theme_gray()
> mytheme$family
[1] "" # The default is sans.
# To check which sans font is being used:
> windowsFonts()
$`serif`
[1] "TT Times New Roman"
$sans
[1] "TT Arial"
$mono
[1] "TT Courier New"
# My PC's default sans font is TT Arial.
'''
问题
我想从 R 中保存 ggplot
以便在 Adobe Illustrator (AI) 中进行编辑。我可以使用 ggsave
以 EPS
或 PS
格式保存情节,但情节总是在文本周围带来一些阴影。有没有办法在 R 或 Adobe Illustrator 中解决这个问题?
例如,我的 plot 看起来像这样:
但是,当我将其导入 AI 时,它看起来像这样(文本周围有粉红色阴影):
代码
# Saving a plot for editing in Adobe Illustrator.
library(ggplot2) # for plotting
library(cowplot) # for ggsave
# Generate an example scatter plot.
# From: http://r-statistics.co/Top50-Ggplot2-Visualizations-MasterList-R-Code.html
options(scipen=999) # turn-off scientific notation like 1e+48
theme_set(theme_gray())
data("midwest", package = "ggplot2")
plot <- ggplot(midwest, aes(x=area, y=poptotal)) +
geom_point(aes(col=state, size=popdensity)) +
geom_smooth(method="loess", se=F) +
xlim(c(0, 0.1)) +
ylim(c(0, 500000)) +
labs(subtitle="Area Vs Population",
y="Population",
x="Area",
title="Scatterplot",
caption = "Source: midwest")
plot
# Save the plot as .eps with ggsave.
file <- "myplot.eps"
ggsave("myplot.jpg",plot)
由于您已经在使用 ggplot2
,您可以将最后一行更改为
ggsave("myplot.eps",plot)
或
setEPS()
postscript("whatever.eps")
#Plot Code
按照以下 link 获取其他可能的解决方案:
Export a graph to .eps file with R
确保您导出的文档可以通过图形编辑器进行编辑。您需要 select 图形编辑器支持的绘图主题(包括字体等)。
GGPLOT2 主题文档请参考以下 links :
https://ggplot2.tidyverse.org/reference/theme.html
https://www.rdocumentation.org/packages/ggplot2/versions/2.1.0/topics/theme
2020 年 11 月 3 日更新
我现在确保在生成任何绘图之前我已经将 explcity 的字体设置为 'Arial'。您可以使用 extrafont
包设置自定义字体。
library(extrafont)
font_import(path=font_path, prompt=FALSE)
fonts() # check to see which fonts are available
choose_font("Arial")
# plotting code ...
其中 font_path
指定包含所需“字体”的目录路径,例如arial.ttf
.
旧的部分解决方案
对于这个糟糕的问题,我深表歉意。导入 Adobe Illustrator 后,绘图文本后面的粉红色阴影表示该字体无法被 AI 识别。如果您从 AI 导出绘图,此阴影将消失。
要将字体添加到 AI,您可以尝试按照以下说明操作:
正在向 Adobe Illustrator 添加新字体
- 创建一个新的 AI 文档(文件 > 新建)
- 开始输入新文档。
- 从 dafont.com 下载橙汁字体。
- 解压文件(橙汁2.0.ttf)
- 安装 TrueType 文件(右键单击 > 安装)。
- 现在应该可以在 AI 中识别该字体。
检查ggplot使用的字体:
> mytheme <- ggplot2::theme_gray()
> mytheme$family
[1] "" # The default is sans.
# To check which sans font is being used:
> windowsFonts()
$`serif`
[1] "TT Times New Roman"
$sans
[1] "TT Arial"
$mono
[1] "TT Courier New"
# My PC's default sans font is TT Arial.
'''