原图:

加上之后的效果: 
代码:
scss
@Builder
C2() {
Stack({ alignContent: Alignment.Bottom }) {
Image($r('app.media.landscape'))
.width('100%')
.height('100%')
.objectFit(ImageFit.Cover)
.borderWidth(2)
.borderColor('#ff0000')
Column() {
}
.width('100%')
.height('100%')
.borderWidth(2)
.borderColor('#0000ff')
.linearGradient({
direction: GradientDirection.Bottom,
colors: [
['#FFFFFFFF', 0.0],
['#FFFFFFFF', 0.6],
['#00FFFFFF', 1.0]
]
})
.blendMode(BlendMode.DST_IN)
}
.width('100%')
.height('25%')
.blendMode(BlendMode.SRC_OVER, BlendApplyType.OFFSCREEN)
}