TL;DR G2Plot 是一個基於 G2 圖形語法(the Grammar of Graphics)的通用統計圖表庫。基於 G2 棧,能夠實現各類意想不到到的效果和能力。
二維碼是什麼,草料二維碼是什麼,我就不細說了,應該進來這篇文章的同窗都知道的。這裏我就直入正題,介紹怎麼實現超強自定義能力的二維碼能力怎麼來實現?git
先來個最簡單的效果預覽:
最終產出了一個 G2Plot 的擴展包 G2Plot-QRCode,歡迎試用和 star。github
G2Plot 是一個可視化通用圖表庫,因此這裏的原理是以一個圖表的思路去看二維碼是什麼?幾個點:typescript
色塊圖能夠看出數據在 x y 位置上的熱力狀況。數組
二維碼在色塊圖的基礎上,須要處理:數據結構
經過 i j 索引來惟一肯定一個單元格,而後單元格具體是什麼顏色,須要看二維碼的原理結構。
這裏咱們須要處理的是三個:動畫
這個就更容易了, G2 的 annotation 能夠直接繪製一個 image 類型的 annotation。編碼
二維碼的協議解析和生成模塊很是多,咱們就不重複造輪子了,直接使用社區的東西。spa
import qrcode from 'qrcode-generator'; const qr = qrcode(typeNumber, correctLevel); qr.addData(data); qr.make();
這個就能夠獲取一個二維數組,數組的每個元素,只有一個信息,isDark。其實就是標記前景仍是背景單元格。code
基於上述的數據,以及二維碼的編碼協議,咱們能夠去實現別出 detection,以及 detection 的左上、右上、左下方位。索引
原理是 detection 的大小是固定的 7 * 7 的矩陣,而後位置在左上、右上、左下,結合二維碼的 pixel count 便可進行解析,這裏不貼源碼了,具體能夠看這裏。
最後產出的數據結構爲:
export type PixelData = { i: number; j: number; isBackground: boolean; isForeground: boolean; detection: 'inner' | 'middle' | 'outer'; detectionPosition: 'tl' | 'tr' | 'bl'; };
整理使用 G2 圖形語法繪製圖表。
chart .polygon() .position('i*j') .color('isForeground', (v: boolean) => { return v ? foregroundColor : backgroundColor; }) .style( 'i*j*isForeground*isBackground*detection*detectionPosition', (i, j, isForeground, isBackground, detection, detectionPosition) => { return typeof pixelStyle === 'function' ? pixelStyle({ i, j, isForeground, isBackground, detection, detectionPosition }) : {}; }, );
這裏處理了幾個事情:
icon 其實就是在圖表畫布的最中間,繪製一個 image,而且能夠指定寬高,image 地址。
chart.annotation().shape({ render: (container) => { container.addShape('image', { attrs: { // 中心位置 x: (width - imageWdith) / 2, y: (height - imageHeight) / 2, // 寬高 width: imageWdith, height: imageHeight, // 圖片地址 img: image, }, }); }, });
如何使用放到最後。由於 G2Plot-QRCode 是 G2Plot 的一個擴展包,因此使用方式上和 G2Plot 內置圖表的使用徹底一致。
import { G2Plot } from '@antv/g2plot'; import { adaptor, defaultOptions } from 'g2plot-qrcode'; const qr = new G2Plot('container', { // 二維碼文本 data: 'Hello, g2plot qrcode!', // 間距 padding: 8, // 寬高 width: 120, height: 120, // 背景前景顏色 backgroundColor: 'white', foregroundColor: 'black', typeNumber: 0, correctLevel: 'H', // L M H Q // 樣式自定義 pixelStyle: (pixelData) => ({}), }, adaptor, defaultOptions); qr.render();
二維碼庫那麼多,基於 G2Plot 作二維碼帶來的好處在於: