Skip to content

LimeColorThief 图片主色

提取图片主色和四边颜色,轻松实现背景融合

安装

插件市场入口 导入,在页面引入,自定义基座

代码演示

js
import { getPalette, type ColorThiefOptions } from '@/uni_modules/lime-color-thief'
// 只支持本地图片。网络请先下载。
getPalette({
	sourceImage: '/static/mv.jpg',
	success(res) {
		console.log(`四周颜色【上,右,下,左】`, res.edges)
		console.log(`主色`, res.dominant)
	},
} as ColorThiefOptions)

源代码

组件源码