@embedpdf/models 2.0.2 → 2.1.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/fonts.d.ts +29 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -1
- package/dist/pdf.d.ts +36 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1220,6 +1220,23 @@ var PdfSegmentObjectType = /* @__PURE__ */ ((PdfSegmentObjectType2) => {
|
|
|
1220
1220
|
PdfSegmentObjectType2[PdfSegmentObjectType2["MOVETO"] = 2] = "MOVETO";
|
|
1221
1221
|
return PdfSegmentObjectType2;
|
|
1222
1222
|
})(PdfSegmentObjectType || {});
|
|
1223
|
+
var FontCharset = /* @__PURE__ */ ((FontCharset2) => {
|
|
1224
|
+
FontCharset2[FontCharset2["ANSI"] = 0] = "ANSI";
|
|
1225
|
+
FontCharset2[FontCharset2["DEFAULT"] = 1] = "DEFAULT";
|
|
1226
|
+
FontCharset2[FontCharset2["SYMBOL"] = 2] = "SYMBOL";
|
|
1227
|
+
FontCharset2[FontCharset2["SHIFTJIS"] = 128] = "SHIFTJIS";
|
|
1228
|
+
FontCharset2[FontCharset2["HANGEUL"] = 129] = "HANGEUL";
|
|
1229
|
+
FontCharset2[FontCharset2["GB2312"] = 134] = "GB2312";
|
|
1230
|
+
FontCharset2[FontCharset2["CHINESEBIG5"] = 136] = "CHINESEBIG5";
|
|
1231
|
+
FontCharset2[FontCharset2["GREEK"] = 161] = "GREEK";
|
|
1232
|
+
FontCharset2[FontCharset2["VIETNAMESE"] = 163] = "VIETNAMESE";
|
|
1233
|
+
FontCharset2[FontCharset2["HEBREW"] = 177] = "HEBREW";
|
|
1234
|
+
FontCharset2[FontCharset2["ARABIC"] = 178] = "ARABIC";
|
|
1235
|
+
FontCharset2[FontCharset2["CYRILLIC"] = 204] = "CYRILLIC";
|
|
1236
|
+
FontCharset2[FontCharset2["THAI"] = 222] = "THAI";
|
|
1237
|
+
FontCharset2[FontCharset2["EASTERNEUROPEAN"] = 238] = "EASTERNEUROPEAN";
|
|
1238
|
+
return FontCharset2;
|
|
1239
|
+
})(FontCharset || {});
|
|
1223
1240
|
var PdfEngineFeature = /* @__PURE__ */ ((PdfEngineFeature2) => {
|
|
1224
1241
|
PdfEngineFeature2[PdfEngineFeature2["RenderPage"] = 0] = "RenderPage";
|
|
1225
1242
|
PdfEngineFeature2[PdfEngineFeature2["RenderPageRect"] = 1] = "RenderPageRect";
|
|
@@ -1977,6 +1994,7 @@ export {
|
|
|
1977
1994
|
AppearanceMode,
|
|
1978
1995
|
CompoundTask,
|
|
1979
1996
|
ConsoleLogger,
|
|
1997
|
+
FontCharset,
|
|
1980
1998
|
LevelLogger,
|
|
1981
1999
|
LogLevel,
|
|
1982
2000
|
MatchFlag,
|