Compare commits
4 Commits
5a1975f8ab
...
9d66ecf34f
Author | SHA1 | Date |
---|---|---|
|
9d66ecf34f | |
|
c1426cd35a | |
|
adb78853af | |
|
ca44a78092 |
|
@ -361,6 +361,14 @@ This project has been verified in the following version:
|
||||||
|
|
||||||
DevEco Studio: NEXT Beta1-5.0.3.806, SDK: API12 Release(5.0.0.66)
|
DevEco Studio: NEXT Beta1-5.0.3.806, SDK: API12 Release(5.0.0.66)
|
||||||
|
|
||||||
|
## About obfuscation
|
||||||
|
- Code obfuscation, please see[Code Obfuscation](https://docs.openharmony.cn/pages/v5.0/zh-cn/application-dev/arkts-utils/source-obfuscation.md)
|
||||||
|
- If you want the imageknife library not to be obfuscated during code obfuscation, you need to add corresponding exclusion rules in the obfuscation rule configuration file obfuscation-rules.txt:
|
||||||
|
```
|
||||||
|
-keep
|
||||||
|
./oh_modules/@ohos/imageknife
|
||||||
|
```
|
||||||
|
|
||||||
## How to Contribute
|
## How to Contribute
|
||||||
|
|
||||||
If you find any problem during the use, submit an [Issue](https://gitee.com/openharmony-tpc/ImageKnife/issues) or a [PR](https://gitee.com/openharmony-tpc/ImageKnife/issues) to us.
|
If you find any problem during the use, submit an [Issue](https://gitee.com/openharmony-tpc/ImageKnife/issues) or a [PR](https://gitee.com/openharmony-tpc/ImageKnife/issues) to us.
|
||||||
|
|
57
README_zh.md
57
README_zh.md
|
@ -56,7 +56,7 @@ await ImageKnife.getInstance().initFileCache(context, 256, 256 * 1024 * 1024)
|
||||||
|
|
||||||
```
|
```
|
||||||
ImageKnifeComponent({
|
ImageKnifeComponent({
|
||||||
ImageKnifeOption: {
|
imageKnifeOption: {
|
||||||
loadSrc: $r("app.media.app_icon"),
|
loadSrc: $r("app.media.app_icon"),
|
||||||
placeholderSrc: $r("app.media.loading"),
|
placeholderSrc: $r("app.media.loading"),
|
||||||
errorholderSrc: $r("app.media.app_icon"),
|
errorholderSrc: $r("app.media.app_icon"),
|
||||||
|
@ -69,7 +69,7 @@ ImageKnifeComponent({
|
||||||
|
|
||||||
```
|
```
|
||||||
ImageKnifeComponent({
|
ImageKnifeComponent({
|
||||||
ImageKnifeOption: {
|
imageKnifeOption: {
|
||||||
loadSrc: this.localFile,
|
loadSrc: this.localFile,
|
||||||
placeholderSrc: $r("app.media.loading"),
|
placeholderSrc: $r("app.media.loading"),
|
||||||
errorholderSrc: $r("app.media.app_icon"),
|
errorholderSrc: $r("app.media.app_icon"),
|
||||||
|
@ -82,7 +82,7 @@ ImageKnifeComponent({
|
||||||
|
|
||||||
```
|
```
|
||||||
ImageKnifeComponent({
|
ImageKnifeComponent({
|
||||||
ImageKnifeOption: {
|
imageKnifeOption: {
|
||||||
loadSrc:"https://www.openharmony.cn/_nuxt/img/logo.dcf95b3.png",
|
loadSrc:"https://www.openharmony.cn/_nuxt/img/logo.dcf95b3.png",
|
||||||
placeholderSrc: $r("app.media.loading"),
|
placeholderSrc: $r("app.media.loading"),
|
||||||
errorholderSrc: $r("app.media.app_icon"),
|
errorholderSrc: $r("app.media.app_icon"),
|
||||||
|
@ -95,7 +95,7 @@ ImageKnifeComponent({
|
||||||
|
|
||||||
```
|
```
|
||||||
ImageKnifeComponent({
|
ImageKnifeComponent({
|
||||||
ImageKnifeOption: {
|
imageKnifeOption: {
|
||||||
loadSrc: "https://file.atomgit.com/uploads/user/1704857786989_8994.jpeg",
|
loadSrc: "https://file.atomgit.com/uploads/user/1704857786989_8994.jpeg",
|
||||||
placeholderSrc: $r("app.media.loading"),
|
placeholderSrc: $r("app.media.loading"),
|
||||||
errorholderSrc: $r("app.media.app_icon"),
|
errorholderSrc: $r("app.media.app_icon"),
|
||||||
|
@ -117,7 +117,7 @@ async function custom(context: Context, src: string | PixelMap | Resource): Prom
|
||||||
|
|
||||||
```
|
```
|
||||||
ImageKnifeComponent({
|
ImageKnifeComponent({
|
||||||
ImageKnifeOption: {
|
imageKnifeOption: {
|
||||||
loadSrc:"https://www.openharmony.cn/_nuxt/img/logo.dcf95b3.png",
|
loadSrc:"https://www.openharmony.cn/_nuxt/img/logo.dcf95b3.png",
|
||||||
progressListener:(progress:number)=>{console.info("ImageKinfe:: call back progress = " + progress)}
|
progressListener:(progress:number)=>{console.info("ImageKinfe:: call back progress = " + progress)}
|
||||||
}
|
}
|
||||||
|
@ -127,8 +127,8 @@ ImageKnifeComponent({
|
||||||
#### 6.支持option传入border,设置边框,圆角
|
#### 6.支持option传入border,设置边框,圆角
|
||||||
|
|
||||||
```
|
```
|
||||||
ImageKnifeComponent({ ImageKnifeOption:
|
ImageKnifeComponent({
|
||||||
{
|
imageKnifeOption: {
|
||||||
loadSrc: $r("app.media.rabbit"),
|
loadSrc: $r("app.media.rabbit"),
|
||||||
border: {radius:50}
|
border: {radius:50}
|
||||||
}
|
}
|
||||||
|
@ -138,8 +138,8 @@ ImageKnifeComponent({ ImageKnifeOption:
|
||||||
#### 7.支持option图片变换
|
#### 7.支持option图片变换
|
||||||
|
|
||||||
```
|
```
|
||||||
ImageKnifeComponent({ ImageKnifeOption:
|
ImageKnifeComponent({
|
||||||
{
|
imageKnifeOption: {
|
||||||
loadSrc: $r("app.media.rabbit"),
|
loadSrc: $r("app.media.rabbit"),
|
||||||
border: {radius:50},
|
border: {radius:50},
|
||||||
transformation: new BlurTransformation(3)
|
transformation: new BlurTransformation(3)
|
||||||
|
@ -171,12 +171,12 @@ ImageKnifeComponent({
|
||||||
圆形裁剪变换示例
|
圆形裁剪变换示例
|
||||||
|
|
||||||
```
|
```
|
||||||
ImageKnifeComponent({ ImageKnifeOption:
|
ImageKnifeComponent({
|
||||||
{
|
imageKnifeOption: {
|
||||||
loadSrc: $r('app.media.pngSample'),
|
loadSrc: $r('app.media.pngSample'),
|
||||||
objectFit: ImageFit.Cover,
|
objectFit: ImageFit.Cover,
|
||||||
border: { radius: 150 }
|
border: { radius: 150 }
|
||||||
}
|
}
|
||||||
}).width(300)
|
}).width(300)
|
||||||
.height(300)
|
.height(300)
|
||||||
```
|
```
|
||||||
|
@ -184,12 +184,12 @@ ImageKnifeComponent({ ImageKnifeOption:
|
||||||
圆形裁剪带边框变换示例
|
圆形裁剪带边框变换示例
|
||||||
|
|
||||||
```
|
```
|
||||||
ImageKnifeComponent({ ImageKnifeOption:
|
ImageKnifeComponent({
|
||||||
{
|
imageKnifeOption: {
|
||||||
loadSrc: $r('app.media.pngSample'),
|
loadSrc: $r('app.media.pngSample'),
|
||||||
objectFit: ImageFit.Cover,
|
objectFit: ImageFit.Cover,
|
||||||
border: { radius: 150, color: Color.Red, width: 5 }
|
border: { radius: 150, color: Color.Red, width: 5 }
|
||||||
}
|
}
|
||||||
}).width(300)
|
}).width(300)
|
||||||
.height(300)
|
.height(300)
|
||||||
```
|
```
|
||||||
|
@ -222,8 +222,8 @@ ImageKnifeComponent({
|
||||||
#### 8.监听图片加载成功与失败
|
#### 8.监听图片加载成功与失败
|
||||||
|
|
||||||
```
|
```
|
||||||
ImageKnifeComponent({ ImageKnifeOption:
|
ImageKnifeComponent({
|
||||||
{
|
imageKnifeOption: {
|
||||||
loadSrc: $r("app.media.rabbit"),
|
loadSrc: $r("app.media.rabbit"),
|
||||||
onLoadListener:{
|
onLoadListener:{
|
||||||
onLoadStart:()=>{
|
onLoadStart:()=>{
|
||||||
|
@ -251,8 +251,9 @@ ImageKnifeComponent({
|
||||||
imageKnifeOption:{
|
imageKnifeOption:{
|
||||||
loadSrc:$r("app.media.pngSample"),
|
loadSrc:$r("app.media.pngSample"),
|
||||||
placeholderSrc:$r("app.media.loading")
|
placeholderSrc:$r("app.media.loading")
|
||||||
},syncLoad:true
|
},
|
||||||
})
|
syncLoad:true
|
||||||
|
})
|
||||||
```
|
```
|
||||||
#### 10.ImageKnifeAnimatorComponent 示例
|
#### 10.ImageKnifeAnimatorComponent 示例
|
||||||
```
|
```
|
||||||
|
@ -261,13 +262,15 @@ ImageKnifeAnimatorComponent({
|
||||||
loadSrc:"https://gd-hbimg.huaban.com/e0a25a7cab0d7c2431978726971d61720732728a315ae-57EskW_fw658",
|
loadSrc:"https://gd-hbimg.huaban.com/e0a25a7cab0d7c2431978726971d61720732728a315ae-57EskW_fw658",
|
||||||
placeholderSrc:$r('app.media.loading'),
|
placeholderSrc:$r('app.media.loading'),
|
||||||
errorholderSrc:$r('app.media.failed')
|
errorholderSrc:$r('app.media.failed')
|
||||||
},animatorOption:this.animatorOption
|
},
|
||||||
}).width(300).height(300).backgroundColor(Color.Orange).margin({top:30})
|
animatorOption:this.animatorOption
|
||||||
|
}).width(300).height(300).backgroundColor(Color.Orange).margin({top:30})
|
||||||
```
|
```
|
||||||
|
|
||||||
#### 11.加载图片回调信息数据 示例
|
#### 11.加载图片回调信息数据 示例
|
||||||
```
|
```
|
||||||
ImageKnifeComponent({ ImageKnifeOption: = {
|
ImageKnifeComponent({
|
||||||
|
imageKnifeOption: {
|
||||||
loadSrc: $r('app.media.pngSample'),
|
loadSrc: $r('app.media.pngSample'),
|
||||||
objectFit: ImageFit.Contain,
|
objectFit: ImageFit.Contain,
|
||||||
onLoadListener: {
|
onLoadListener: {
|
||||||
|
@ -302,7 +305,7 @@ ImageKnifeComponent({
|
||||||
errorholderSrc:$r('app.media.failed'),
|
errorholderSrc:$r('app.media.failed'),
|
||||||
downsampleOf: DownsampleStrategy.NONE
|
downsampleOf: DownsampleStrategy.NONE
|
||||||
}
|
}
|
||||||
}).width(300).height(300)
|
}).width(300).height(300)
|
||||||
```
|
```
|
||||||
#### 13.rcp自定义网络请求
|
#### 13.rcp自定义网络请求
|
||||||
```
|
```
|
||||||
|
@ -457,6 +460,14 @@ async function custom(context: Context, src: string | PixelMap | Resource,header
|
||||||
在下述版本验证通过:
|
在下述版本验证通过:
|
||||||
DevEco Studio: NEXT Beta1-5.0.3.806, SDK: API12 Release(5.0.0.66)
|
DevEco Studio: NEXT Beta1-5.0.3.806, SDK: API12 Release(5.0.0.66)
|
||||||
|
|
||||||
|
## 关于混淆
|
||||||
|
- 代码混淆,请查看[代码混淆简介](https://docs.openharmony.cn/pages/v5.0/zh-cn/application-dev/arkts-utils/source-obfuscation.md)
|
||||||
|
- 如果希望imageknife库在代码混淆过程中不会被混淆,需要在混淆规则配置文件obfuscation-rules.txt中添加相应的排除规则:
|
||||||
|
|
||||||
|
```
|
||||||
|
-keep
|
||||||
|
./oh_modules/@ohos/imageknife
|
||||||
|
```
|
||||||
## 贡献代码
|
## 贡献代码
|
||||||
|
|
||||||
使用过程中发现任何问题都可以提 [issue](https://gitee.com/openharmony-tpc/ImageKnife/issues)
|
使用过程中发现任何问题都可以提 [issue](https://gitee.com/openharmony-tpc/ImageKnife/issues)
|
||||||
|
|
|
@ -16,3 +16,6 @@
|
||||||
# Keep options:
|
# Keep options:
|
||||||
# -keep-property-name: specifies property names that you want to keep
|
# -keep-property-name: specifies property names that you want to keep
|
||||||
# -keep-global-name: specifies names that you want to keep in the global scope
|
# -keep-global-name: specifies names that you want to keep in the global scope
|
||||||
|
|
||||||
|
-keep
|
||||||
|
./oh_modules/@ohos/imageknife
|
|
@ -6,7 +6,11 @@
|
||||||
"mainElement": "EntryAbility",
|
"mainElement": "EntryAbility",
|
||||||
"deviceTypes": [
|
"deviceTypes": [
|
||||||
"default",
|
"default",
|
||||||
"tablet"
|
"tablet",
|
||||||
|
"tv",
|
||||||
|
"wearable",
|
||||||
|
"car",
|
||||||
|
"2in1"
|
||||||
],
|
],
|
||||||
"deliveryWithInstall": true,
|
"deliveryWithInstall": true,
|
||||||
"installationFree": false,
|
"installationFree": false,
|
||||||
|
|
|
@ -6,7 +6,11 @@
|
||||||
"mainElement": "TestAbility",
|
"mainElement": "TestAbility",
|
||||||
"deviceTypes": [
|
"deviceTypes": [
|
||||||
"default",
|
"default",
|
||||||
"tablet"
|
"tablet",
|
||||||
|
"tv",
|
||||||
|
"wearable",
|
||||||
|
"car",
|
||||||
|
"2in1"
|
||||||
],
|
],
|
||||||
"deliveryWithInstall": true,
|
"deliveryWithInstall": true,
|
||||||
"installationFree": false,
|
"installationFree": false,
|
||||||
|
|
|
@ -4,7 +4,11 @@
|
||||||
"type": "har",
|
"type": "har",
|
||||||
"deviceTypes": [
|
"deviceTypes": [
|
||||||
"default",
|
"default",
|
||||||
"tablet"
|
"tablet",
|
||||||
|
"tv",
|
||||||
|
"wearable",
|
||||||
|
"car",
|
||||||
|
"2in1"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,3 +16,6 @@
|
||||||
# Keep options:
|
# Keep options:
|
||||||
# -keep-property-name: specifies property names that you want to keep
|
# -keep-property-name: specifies property names that you want to keep
|
||||||
# -keep-global-name: specifies names that you want to keep in the global scope
|
# -keep-global-name: specifies names that you want to keep in the global scope
|
||||||
|
|
||||||
|
-keep
|
||||||
|
./oh_modules/@ohos/imageknife
|
|
@ -5,7 +5,11 @@
|
||||||
"description": "$string:shared_desc",
|
"description": "$string:shared_desc",
|
||||||
"deviceTypes": [
|
"deviceTypes": [
|
||||||
"default",
|
"default",
|
||||||
"tablet"
|
"tablet",
|
||||||
|
"tv",
|
||||||
|
"wearable",
|
||||||
|
"car",
|
||||||
|
"2in1"
|
||||||
],
|
],
|
||||||
"deliveryWithInstall": true,
|
"deliveryWithInstall": true,
|
||||||
"pages": "$profile:main_pages"
|
"pages": "$profile:main_pages"
|
||||||
|
|
Loading…
Reference in New Issue