R/ggplot2:添加带有透明度信息的 png
Posted
技术标签:
【中文标题】R/ggplot2:添加带有透明度信息的 png【英文标题】:R/ggplot2: Add png with transparency info 【发布时间】:2021-12-10 09:46:28 【问题描述】:我想在 ggplot2 图上堆叠 PNG 图像。其中一个 png 具有 alpha/透明度信息,但它被忽略了。
如何在 bg.png 顶部添加第二张图片 (image1.png),以便保留透明度并且在黄色背景上仅显示黑色文本?
示例
library(ggplot2)
library(png)
library(patchwork)
img1 <- readPNG("bg.png", native = TRUE)
img2 <- readPNG("image1.png", native = TRUE)
ggp <- ggplot(data.frame()) +
geom_point() +
theme_nothing() +
inset_element(p = img1,
left = 0,
bottom = 0,
right = 1,
top = 1,
align_to = "full") +
inset_element(p = img2,
left = 0,
bottom = 0,
right = 0.5,
top = 0.5,
align_to = "full")
ggp
示例文件:
bg.png:https://cloud.linuxfabrik.io/index.php/s/3iBTARTtgWBnL5c image1.png:https://cloud.linuxfabrik.io/index.php/s/G5P958XpJeEY7No【问题讨论】:
不确定,但这可能是相关的:***.com/a/64156644/6851825 【参考方案1】:我认为 alpha 通道 在这里受到尊重。只不过@987654323@先画了一个白色的canvas元素。可以说,您尝试做的不是插图,而是注释。
我认为在这里使用ggplot2
中的annotation_custom
更合适(并且意味着要少加载一个包)。
library(ggplot2)
library(png)
img1 <- grid::rasterGrob(readPNG("bg.png"))
img2 <- grid::rasterGrob(readPNG("image1.png"))
ggp <- ggplot(data.frame()) +
geom_point() +
theme_void() +
annotation_custom(img1) +
annotation_custom(img2, xmax = 0.5, ymax = 0.5)
ggp
【讨论】:
以上是关于R/ggplot2:添加带有透明度信息的 png的主要内容,如果未能解决你的问题,请参考以下文章