有没有办法让rasterGrob对象部分透明,所以要为它添加一个alpha因子?我通过ggplot2
插入png-image(作为rasterGrob)在annotation_custom
图中使用徽标作为水印。但是,与annotate
不同,alpha
选项在此处不起作用,因此我猜想必须提前更改图像。
作为一个简单的例子,基于baptiste在他博客中的建议,到目前为止我这样做:
img.path <- readPNG("logo.png")
pngob <- rasterGrob(img.path)
qplot(1:10, rnorm(10), geom = "blank") +
annotation_custom(pngob, xmin=6.8, xmax=Inf, ymin=1, ymax=Inf) +
geom_point()
上面的例子很有效。
但是,在控制台中输入dim(pngob)
将返回NULL
。因此,以下关于如何设置alpha
- 值的建议不起作用:
m <- pngob
w <- matrix(rgb(m[,,1],m[,,2],m[,,3], m[,,4] * 0.2), nrow=dim(m)[1])
这会返回错误Error in m[, , 1]: wrong number of dimensions
答案 0 :(得分:9)
直接来自ggplot2 blog @baptiste。您可以在创建w
时调整alpha。
library(png)
library(gridExtra)
m <- readPNG(system.file("img", "Rlogo.png", package="png"), FALSE)
w <- matrix(rgb(m[,,1],m[,,2],m[,,3], m[,,4] * 0.2), nrow=dim(m)[1]) #0.2 is alpha
qplot(1:10, rnorm(10), geom = "blank") +
annotation_custom(xmin=-Inf, ymin=-Inf, xmax=Inf, ymax=Inf,
rpatternGrob(motif=w, motif.width = unit(1, "cm"))) +
geom_point()
或者如果您想要一张图片:
qplot(1:10, rnorm(10), geom = "blank") +
annotation_custom(xmin=-Inf, ymin=-Inf, xmax=Inf, ymax=Inf,
rasterGrob(w)) +
geom_point()