65 lines
2.6 KiB
Plaintext
65 lines
2.6 KiB
Plaintext
/*
|
|
* Copyright (C) 2021 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
import {ImageKnifeComponent} from '@ohos/imageknife'
|
|
import {ImageKnifeOption} from '@ohos/imageknife'
|
|
import {RotateImageTransformation} from '@ohos/imageknife'
|
|
import {RoundedCornersTransformation} from '@ohos/imageknife'
|
|
|
|
@Entry
|
|
@Component
|
|
struct LoadNetworkTestCasePage {
|
|
@State imageKnifeOption1: ImageKnifeOption =
|
|
{
|
|
loadSrc: "https://thirdwx.qlogo.cn/mmopen/vi_32/DYAIOgq83ericA1Mv66TwicuYOtbDMBcUhv1aa9RJBeAn9uURfcZD0AUGrJebAn1g2AjN0vb2E1XTET7fTuLBNmA/132",
|
|
size: { width: 300, height: 300 },
|
|
placeholderSrc: $r('app.media.icon_loading'),
|
|
errorholderSrc: $r('app.media.icon_failed'),
|
|
};
|
|
@State imageKnifeOption2: ImageKnifeOption =
|
|
{
|
|
loadSrc: "https://hbimg.huabanimg.com/0ef60041445edcfd6b38d20e19024b2cd9281dcc3525a4-Vy8fYO_fw658/format/webp",
|
|
size: { width: 300, height: 300 },
|
|
placeholderSrc: $r('app.media.icon_loading'),
|
|
errorholderSrc: $r('app.media.icon_failed'),
|
|
};
|
|
@State imageKnifeOption3: ImageKnifeOption =
|
|
{
|
|
loadSrc: "https://hbimg.huabanimg.com/95a6d37a39aa0b70d48fa18dc7df8309e2e0e8e85571e-x4hhks_fw658/format/webp",
|
|
size: { width: 300, height: 300 },
|
|
placeholderSrc: $r('app.media.icon_loading'),
|
|
errorholderSrc: $r('app.media.icon_failed'),
|
|
};
|
|
@State imageKnifeOption4: ImageKnifeOption =
|
|
{
|
|
loadSrc: "https://hbimg.huabanimg.com/cc6af25f8d782d3cf3122bef4e61571378271145735e9-vEVggB",
|
|
size: { width: 300, height: 300 },
|
|
placeholderSrc: $r('app.media.icon_loading'),
|
|
errorholderSrc: $r('app.media.icon_failed'),
|
|
};
|
|
|
|
build() {
|
|
Scroll() {
|
|
Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
|
|
ImageKnifeComponent({ imageKnifeOption: $imageKnifeOption1 })
|
|
ImageKnifeComponent({ imageKnifeOption: $imageKnifeOption2 })
|
|
ImageKnifeComponent({ imageKnifeOption: $imageKnifeOption3 })
|
|
ImageKnifeComponent({ imageKnifeOption: $imageKnifeOption4 })
|
|
}
|
|
}
|
|
.width('100%')
|
|
.height('100%')
|
|
}
|
|
}
|