更新记录
1.0.0(2025-04-06)
安卓iOS获取图片主色调
平台兼容性
uni-app
Vue2 |
Vue3 |
Chrome |
Safari |
app-vue |
app-nvue |
Android |
iOS |
鸿蒙 |
√ |
√ |
- |
- |
- |
- |
4.4 |
12 |
- |
微信小程序 |
支付宝小程序 |
抖音小程序 |
百度小程序 |
快手小程序 |
京东小程序 |
鸿蒙元服务 |
QQ小程序 |
飞书小程序 |
快应用-华为 |
快应用-联盟 |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
- |
uni-app x
Chrome |
Safari |
Android |
iOS |
鸿蒙 |
微信小程序 |
- |
- |
5.0 |
12 |
- |
- |
yzc-palette 获取本地/网络图片主色调(支持安卓 iOS)
注意需要打自定义基座,请测试合适后再购买
导入(方法按需导入)
import { getMainColorFromPath, getMainColorFromUrl } from '@/uni_modules/yzc-palette';
获取本地图片主色调
getMainColorFromPath(filePath, (succss, color, errMsg) => {
if (succss && color != null) {
console.log(succss, color)
}
})
获取网络图片主色调
getMainColorFromUrl(url, (succss, color, errMsg) => {
if (succss && color != null) {
console.log(succss, color)
}
})