ninepatch-core
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

ninepatch-core

  • 解析AAPT编译出来的点九图npTc chunk数据

安装

yarn add ninepatch-core

使用方式

enum NinePatchImageType {
  Normal = 0, // 非点九图
  NotSerialized = 1, // 点九图原图(带黑边)
  Serialized = 2 // 经过AAPT编译后的点九图
}

interface SerializedData {
  topSegment: Segment[]
  leftSegment: Segment[]
  padding: NpTcChunkPadding
}

interface Segment {
  type: SegmentColorType // 0: 透明 1:黑边
  width: number
  start: number
}

interface NpTcChunkPadding {
  left: number
  right: number
  top: number
  bottom: number
}

enum SegmentColorType {
  Transparent = 0,
  Black = 1
}

interface NpTcChunkDiv {
  start: number
  stop: number
}

interface NpTcChunkType {
  padding: NpTcChunkPadding
  xDivs: NpTcChunkDiv
  yDivs: NpTcChunkDiv
  width?: number
  height?: number
  clipPath?: number // 点九图原图剪裁像素
}

// 实例化解析器
const np = new NinePatchCoreer('https://xxx.com'})

async function boostrap() {
  // chunk相关数据
  const chunkData: NpTcChunkType = await np.getChunkData()

  // todo 相关渲染逻辑,如border-image点九图渲染
}

Readme

Keywords

none

Package Sidebar

Install

npm i ninepatch-core

Weekly Downloads

0

Version

1.0.3

License

ISC

Unpacked Size

125 kB

Total Files

31

Last publish

Collaborators

  • midi_zeng