@pdfme/common 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/__tests__/font.test.js +44 -0
- package/dist/cjs/__tests__/font.test.js.map +1 -1
- package/dist/cjs/__tests__/helper.test.js +10 -0
- package/dist/cjs/__tests__/helper.test.js.map +1 -1
- package/dist/cjs/src/constants.js +5 -1
- package/dist/cjs/src/constants.js.map +1 -1
- package/dist/cjs/src/font.js +34 -11
- package/dist/cjs/src/font.js.map +1 -1
- package/dist/cjs/src/helper.js +5 -1
- package/dist/cjs/src/helper.js.map +1 -1
- package/dist/cjs/src/index.js +8 -2
- package/dist/cjs/src/index.js.map +1 -1
- package/dist/cjs/src/schema.js +9 -1
- package/dist/cjs/src/schema.js.map +1 -1
- package/dist/cjs/src/type.js.map +1 -1
- package/dist/esm/__tests__/font.test.js +45 -1
- package/dist/esm/__tests__/font.test.js.map +1 -1
- package/dist/esm/__tests__/helper.test.js +11 -1
- package/dist/esm/__tests__/helper.test.js.map +1 -1
- package/dist/esm/src/constants.js +4 -0
- package/dist/esm/src/constants.js.map +1 -1
- package/dist/esm/src/font.js +33 -11
- package/dist/esm/src/font.js.map +1 -1
- package/dist/esm/src/helper.js +4 -1
- package/dist/esm/src/helper.js.map +1 -1
- package/dist/esm/src/index.js +4 -4
- package/dist/esm/src/index.js.map +1 -1
- package/dist/esm/src/schema.js +8 -0
- package/dist/esm/src/schema.js.map +1 -1
- package/dist/esm/src/type.js.map +1 -1
- package/dist/types/src/constants.d.ts +4 -0
- package/dist/types/src/font.d.ts +6 -8
- package/dist/types/src/helper.d.ts +1 -0
- package/dist/types/src/index.d.ts +5 -5
- package/dist/types/src/schema.d.ts +71 -0
- package/dist/types/src/type.d.ts +8 -0
- package/package.json +1 -1
- package/src/constants.ts +4 -0
- package/src/font.ts +42 -18
- package/src/helper.ts +5 -1
- package/src/index.ts +15 -3
- package/src/schema.ts +9 -0
- package/src/type.ts +9 -0
package/src/font.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as fontkit from 'fontkit';
|
2
2
|
import type { Font as FontKitFont } from 'fontkit';
|
3
|
-
import { Template, Schema, Font, isTextSchema, TextSchema } from './type';
|
3
|
+
import { FontWidthCalcValues, Template, Schema, Font, isTextSchema, TextSchema } from './type';
|
4
4
|
import { Buffer } from 'buffer';
|
5
5
|
import {
|
6
6
|
DEFAULT_FONT_VALUE,
|
@@ -9,12 +9,12 @@ import {
|
|
9
9
|
DEFAULT_CHARACTER_SPACING,
|
10
10
|
DEFAULT_LINE_HEIGHT,
|
11
11
|
FONT_SIZE_ADJUSTMENT,
|
12
|
-
PT_TO_PX_RATIO,
|
13
12
|
DEFAULT_DYNAMIC_FIT,
|
14
13
|
DYNAMIC_FIT_HORIZONTAL,
|
15
14
|
DYNAMIC_FIT_VERTICAL,
|
15
|
+
VERTICAL_ALIGN_TOP,
|
16
16
|
} from './constants';
|
17
|
-
import { mm2pt, pt2mm } from './helper';
|
17
|
+
import { mm2pt, pt2mm, pt2px } from './helper';
|
18
18
|
import { b64toUint8Array } from "."
|
19
19
|
|
20
20
|
export const getFallbackFontName = (font: Font) => {
|
@@ -77,20 +77,50 @@ export const checkFont = (arg: { font: Font; template: Template }) => {
|
|
77
77
|
}
|
78
78
|
};
|
79
79
|
|
80
|
-
export const
|
80
|
+
export const getBrowserVerticalFontAdjustments = (
|
81
|
+
fontKitFont: FontKitFont,
|
82
|
+
fontSize: number,
|
83
|
+
lineHeight: number,
|
84
|
+
verticalAlignment: string
|
85
|
+
) => {
|
81
86
|
const { ascent, descent, unitsPerEm } = fontKitFont;
|
82
87
|
|
83
|
-
|
88
|
+
// Fonts have a designed line height that the browser renders when using `line-height: normal`
|
89
|
+
const fontBaseLineHeight = (ascent - descent) / unitsPerEm;
|
84
90
|
|
85
|
-
//
|
86
|
-
|
87
|
-
|
91
|
+
// For vertical alignment top
|
92
|
+
// To achieve consistent positioning between browser and PDF, we apply the difference between
|
93
|
+
// the font's actual height and the font size in pixels.
|
94
|
+
// Browsers middle the font within this height, so we only need half of it to apply to the top.
|
95
|
+
// This means the font renders a bit lower in the browser, but achieves PDF alignment
|
96
|
+
const topAdjustment = (fontBaseLineHeight * fontSize - fontSize) / 2;
|
88
97
|
|
89
|
-
|
90
|
-
|
98
|
+
if (verticalAlignment === VERTICAL_ALIGN_TOP) {
|
99
|
+
return { topAdj: pt2px(topAdjustment), bottomAdj: 0 };
|
100
|
+
}
|
101
|
+
|
102
|
+
// For vertical alignment bottom and middle
|
103
|
+
// When browsers render text in a non-form element (such as a <div>), some of the text may be
|
104
|
+
// lowered below and outside the containing element if the line height used is less than
|
105
|
+
// the base line-height of the font.
|
106
|
+
// This behaviour does not happen in a <textarea> though, so we need to adjust the positioning
|
107
|
+
// for consistency between editing and viewing to stop text jumping up and down.
|
108
|
+
// This portion of text is half of the difference between the base line height and the used
|
109
|
+
// line height. If using the same or higher line-height than the base font, then line-height
|
110
|
+
// takes over in the browser and this adjustment is not needed.
|
111
|
+
// Unlike the top adjustment - this is only driven by browser behaviour, not PDF alignment.
|
112
|
+
let bottomAdjustment = 0;
|
113
|
+
if (lineHeight < fontBaseLineHeight) {
|
114
|
+
bottomAdjustment = ((fontBaseLineHeight - lineHeight) * fontSize) / 2;
|
115
|
+
}
|
91
116
|
|
92
|
-
|
93
|
-
|
117
|
+
return { topAdj: 0, bottomAdj: pt2px(bottomAdjustment) };
|
118
|
+
};
|
119
|
+
|
120
|
+
export const getFontDescentInPt = (fontKitFont: FontKitFont, fontSize: number) => {
|
121
|
+
const { descent, unitsPerEm } = fontKitFont;
|
122
|
+
|
123
|
+
return (descent / unitsPerEm) * fontSize;
|
94
124
|
};
|
95
125
|
|
96
126
|
export const heightOfFontAtSize = (fontKitFont: FontKitFont, fontSize: number) => {
|
@@ -138,12 +168,6 @@ export const getFontKitFont = async (textSchema: TextSchema, font: Font) => {
|
|
138
168
|
return fontKitFont;
|
139
169
|
};
|
140
170
|
|
141
|
-
export type FontWidthCalcValues = {
|
142
|
-
font: FontKitFont;
|
143
|
-
fontSize: number;
|
144
|
-
characterSpacing: number;
|
145
|
-
boxWidthInPt: number;
|
146
|
-
};
|
147
171
|
|
148
172
|
const isTextExceedingBoxWidth = (text: string, calcValues: FontWidthCalcValues) => {
|
149
173
|
const { font, fontSize, characterSpacing, boxWidthInPt } = calcValues;
|
package/src/helper.ts
CHANGED
@@ -10,7 +10,7 @@ import {
|
|
10
10
|
GenerateProps as GeneratePropsSchema,
|
11
11
|
UIProps as UIPropsSchema,
|
12
12
|
} from './schema';
|
13
|
-
import { MM_TO_PT_RATIO, PT_TO_MM_RATIO } from './constants';
|
13
|
+
import { MM_TO_PT_RATIO, PT_TO_MM_RATIO, PT_TO_PX_RATIO } from './constants';
|
14
14
|
import { checkFont } from './font';
|
15
15
|
|
16
16
|
export const mm2pt = (mm: number): number => {
|
@@ -21,6 +21,10 @@ export const pt2mm = (pt: number): number => {
|
|
21
21
|
return pt * PT_TO_MM_RATIO;
|
22
22
|
};
|
23
23
|
|
24
|
+
export const pt2px = (pt: number): number => {
|
25
|
+
return pt * PT_TO_PX_RATIO;
|
26
|
+
};
|
27
|
+
|
24
28
|
const blob2Base64Pdf = (blob: Blob) => {
|
25
29
|
return new Promise<string>((resolve, reject) => {
|
26
30
|
const reader = new FileReader();
|
package/src/index.ts
CHANGED
@@ -2,6 +2,10 @@ import {
|
|
2
2
|
DEFAULT_FONT_NAME,
|
3
3
|
DEFAULT_FONT_SIZE,
|
4
4
|
DEFAULT_ALIGNMENT,
|
5
|
+
VERTICAL_ALIGN_TOP,
|
6
|
+
VERTICAL_ALIGN_MIDDLE,
|
7
|
+
VERTICAL_ALIGN_BOTTOM,
|
8
|
+
DEFAULT_VERTICAL_ALIGNMENT,
|
5
9
|
DEFAULT_LINE_HEIGHT,
|
6
10
|
DEFAULT_CHARACTER_SPACING,
|
7
11
|
DEFAULT_FONT_COLOR,
|
@@ -17,6 +21,7 @@ import {
|
|
17
21
|
} from './constants.js';
|
18
22
|
import { schemaTypes, isImageSchema, isBarcodeSchema, isTextSchema } from './type.js';
|
19
23
|
import type {
|
24
|
+
FontWidthCalcValues,
|
20
25
|
Lang,
|
21
26
|
Size,
|
22
27
|
Alignment,
|
@@ -52,6 +57,7 @@ import {
|
|
52
57
|
checkDesignerProps,
|
53
58
|
checkGenerateProps,
|
54
59
|
mm2pt,
|
60
|
+
pt2px,
|
55
61
|
validateBarcodeInput,
|
56
62
|
} from './helper.js';
|
57
63
|
import {
|
@@ -62,15 +68,19 @@ import {
|
|
62
68
|
widthOfTextAtSize,
|
63
69
|
checkFont,
|
64
70
|
getFontKitFont,
|
65
|
-
|
71
|
+
getBrowserVerticalFontAdjustments,
|
72
|
+
getFontDescentInPt,
|
66
73
|
getSplittedLines,
|
67
|
-
FontWidthCalcValues,
|
68
74
|
} from './font.js';
|
69
75
|
|
70
76
|
export {
|
71
77
|
DEFAULT_FONT_NAME,
|
72
78
|
DEFAULT_FONT_SIZE,
|
73
79
|
DEFAULT_ALIGNMENT,
|
80
|
+
VERTICAL_ALIGN_TOP,
|
81
|
+
VERTICAL_ALIGN_MIDDLE,
|
82
|
+
VERTICAL_ALIGN_BOTTOM,
|
83
|
+
DEFAULT_VERTICAL_ALIGNMENT,
|
74
84
|
DEFAULT_LINE_HEIGHT,
|
75
85
|
DEFAULT_CHARACTER_SPACING,
|
76
86
|
DEFAULT_FONT_COLOR,
|
@@ -95,9 +105,11 @@ export {
|
|
95
105
|
heightOfFontAtSize,
|
96
106
|
widthOfTextAtSize,
|
97
107
|
mm2pt,
|
108
|
+
pt2px,
|
98
109
|
checkFont,
|
110
|
+
getBrowserVerticalFontAdjustments,
|
111
|
+
getFontDescentInPt,
|
99
112
|
getFontKitFont,
|
100
|
-
getFontAlignmentValue,
|
101
113
|
checkInputs,
|
102
114
|
checkUIOptions,
|
103
115
|
checkTemplate,
|
package/src/schema.ts
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
/* eslint dot-notation: "off"*/
|
2
2
|
import { z } from 'zod';
|
3
|
+
import { VERTICAL_ALIGN_TOP, VERTICAL_ALIGN_MIDDLE, VERTICAL_ALIGN_BOTTOM } from "./constants";
|
3
4
|
|
4
5
|
const langs = ['en', 'ja', 'ar', 'th', 'pl'] as const;
|
5
6
|
export const Lang = z.enum(langs);
|
@@ -9,6 +10,13 @@ export const Size = z.object({ height: z.number(), width: z.number() });
|
|
9
10
|
const alignments = ['left', 'center', 'right'] as const;
|
10
11
|
export const Alignment = z.enum(alignments);
|
11
12
|
|
13
|
+
const verticalAlignments = [
|
14
|
+
VERTICAL_ALIGN_TOP,
|
15
|
+
VERTICAL_ALIGN_MIDDLE,
|
16
|
+
VERTICAL_ALIGN_BOTTOM,
|
17
|
+
] as const;
|
18
|
+
export const VerticalAlignment = z.enum(verticalAlignments);
|
19
|
+
|
12
20
|
// prettier-ignore
|
13
21
|
export const barcodeSchemaTypes = ['qrcode', 'japanpost', 'ean13', 'ean8', 'code39', 'code128', 'nw7', 'itf14', 'upca', 'upce', 'gs1datamatrix'] as const;
|
14
22
|
const notBarcodeSchemaTypes = ['text', 'image'] as const;
|
@@ -28,6 +36,7 @@ export const CommonSchema = z.object({
|
|
28
36
|
export const TextSchema = CommonSchema.extend({
|
29
37
|
type: z.literal(SchemaType.Enum.text),
|
30
38
|
alignment: Alignment.optional(),
|
39
|
+
verticalAlignment: VerticalAlignment.optional(),
|
31
40
|
fontSize: z.number().optional(),
|
32
41
|
fontName: z.string().optional(),
|
33
42
|
fontColor: z.string().optional(),
|
package/src/type.ts
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
import { z } from 'zod';
|
2
|
+
import type { Font as FontKitFont } from 'fontkit';
|
3
|
+
|
2
4
|
import {
|
3
5
|
Lang,
|
4
6
|
Size,
|
@@ -28,6 +30,13 @@ import {
|
|
28
30
|
DesignerReactProps,
|
29
31
|
} from './schema.js';
|
30
32
|
|
33
|
+
export type FontWidthCalcValues = {
|
34
|
+
font: FontKitFont;
|
35
|
+
fontSize: number;
|
36
|
+
characterSpacing: number;
|
37
|
+
boxWidthInPt: number;
|
38
|
+
};
|
39
|
+
|
31
40
|
type CommonSchema = z.infer<typeof _CommonSchema>;
|
32
41
|
export const schemaTypes = _schemaTypes;
|
33
42
|
export const isTextSchema = (arg: CommonSchema): arg is TextSchema => arg.type === 'text';
|