-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.txt
67 lines (65 loc) · 2.57 KB
/
info.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
All the options that you can pass to the QR Code Generator Class:
const options =
{
text: "https://aqyanoos.com/easy.qrcode.min.js",
logo: "logo.png",
logoWidth: undefined,
logoHeight: undefined,
logoBackgroundColor: '#ffffff',
logoBackgroundTransparent: false
width: 256,
height: 256,
typeNumber: 4,
colorDark: "#000000",
colorLight: "#ffffff",
correctLevel: QRErrorCorrectLevel.H,
quietZone: 0,
quietZoneColor: 'transparent',
// === Posotion Pattern(Eye) Color
PO: undefined, // Global Posotion Outer color. if not set, the defaut is `colorDark`
PI: undefined, // Global Posotion Inner color. if not set, the defaut is `colorDark`
PO_TL: undefined, // Posotion Outer - Top Left
PI_TL: undefined, // Posotion Inner - Top Left
PO_TR: undefined, // Posotion Outer - Top Right
PI_TR: undefined, // Posotion Inner - Top Right
PO_BL: undefined, // Posotion Outer - Bottom Left
PI_BL: undefined, // Posotion Inner - Bottom Left
// === Alignment Color
AO: undefined, // Alignment Outer. if not set, the defaut is `colorDark`
AI: undefined, // Alignment Inner. if not set, the defaut is `colorDark`
// === Timing Pattern Color
timing: undefined, // Global Timing color. if not set, the defaut is `colorDark`
timing_H: undefined, // Horizontal timing color
timing_V: undefined, // Vertical timing color
// ==== Backgroud Image
backgroundImage: undefined, // Background Image
backgroundImageAlpha: 1, // Background image transparency, value between 0 and 1. default is 1.
autoColor: false,
autoColorDark: "rgba(0, 0, 0, .6)", // Automatic color: dark CSS color
autoColorLight: "rgba(255, 255, 255, .7)", // Automatic color: light CSS color
// IE9+ Only
dotScale: 1,
// from Version 1 to Version 40. 0 means automatically choose the closest version based on the text length.
version: 0,
// Whether set the QRCode Text as the title attribute value of the image
tooltip: false,
// binary mode or not
binary: false,
// or 'svg'
drawer: 'canvas',
// specifies the CORS setting to use when retrieving the image
crossOrigin: null
// ==== Event Handler
onRenderingStart: undefined,
onRenderingEnd: undefined,
title: "",
titleFont: "bold 16px Arial",
titleColor: "#000000",
titleBackgroundColor: "#ffffff",
titleHeight: 0,
titleTop: 30,
subTitle: "",
subTitleFont: "14px Arial",
subTitleColor: "#4F4F4F",
subTitleTop: 0,
}