R:将alpha值添加到png-image

时间:2012-07-06 07:42:58

标签: image r

有没有办法让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

1 个答案:

答案 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()

enter image description here

或者如果您想要一张图片:

qplot(1:10, rnorm(10), geom = "blank") +
  annotation_custom(xmin=-Inf, ymin=-Inf, xmax=Inf, ymax=Inf, 
    rasterGrob(w)) +
  geom_point()

enter image description here