java命名空间java.awt.image类bufferedimage的类成员方法:
getalpharaster定义及介绍
本文导语:
getalpharaster
public writableraster getalpharaster()
返回一个 writableraster,它使用支持单独空间 alpha 通道的 colormodel 对象(比如 componentcolormodel 和 directcolormodel)表示 bufferedimage 对象的 alpha 通道。如果此图像中没有与 colormodel 关联的 alph...
getalpharaster
public writableraster getalpharaster()
- 返回一个
writableraster
,它使用支持单独空间 alpha 通道的 colormodel
对象(比如 componentcolormodel
和 directcolormodel
)表示 bufferedimage
对象的 alpha 通道。如果此图像中没有与 colormodel
关联的 alpha 通道,则返回 null
。此方法假定 indexcolormodel
之外的所有 colormodel
对象都具有一个单独的 alpha 通道(如果 colormodel
支持 alpha),该通道存储为图像数据的最后一个 band。如果该图像使用查找表中一个具有 alpha 的 indexcolormodel
,则此方法返回 null
,因为不存在空间上离散的 alpha 通道。此方法创建一个新的 writableraster
,但是共享原数据数组。
- 返回:
writableraster
;如果此 bufferedimage
不具有与其 colormodel
关联的 alpha 通道,则返回 null
。