1/* 2 * Copyright (c) 2025 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16/** 17 * 设置SVG图片的填充颜色 18 */ 19@Entry 20@Component 21struct Index { 22 build() { 23 Column() { 24 Text('不设置fillColor') 25 Image($r('app.media.svgExample')) 26 .height(100) 27 .width(100) 28 .objectFit(ImageFit.Contain) 29 .borderWidth(1) 30 Text('fillColor传入ColorContent.ORIGIN') 31 Image($r('app.media.svgExample')) 32 .height(100) 33 .width(100) 34 .objectFit(ImageFit.Contain) 35 .borderWidth(1) 36 .fillColor(ColorContent.ORIGIN) 37 Text('fillColor传入Color.Blue') 38 Image($r('app.media.svgExample')) 39 .height(100) 40 .width(100) 41 .objectFit(ImageFit.Contain) 42 .borderWidth(1) 43 .fillColor(Color.Blue) 44 Text('fillColor传入undefined') 45 Image($r('app.media.svgExample')) 46 .height(100) 47 .width(100) 48 .objectFit(ImageFit.Contain) 49 .borderWidth(1) 50 .fillColor(undefined) 51 } 52 .height('100%') 53 .width('100%') 54 } 55}