md
This commit is contained in:
parent
70963fdf5e
commit
11992af6f8
19421
src/utils/pdfjs/pdfjs-4.3.136/build/pdf.mjs
Normal file
19421
src/utils/pdfjs/pdfjs-4.3.136/build/pdf.mjs
Normal file
File diff suppressed because it is too large
Load Diff
56109
src/utils/pdfjs/pdfjs-4.3.136/build/pdf.worker.mjs
Normal file
56109
src/utils/pdfjs/pdfjs-4.3.136/build/pdf.worker.mjs
Normal file
File diff suppressed because one or more lines are too long
236
src/utils/pdfjs/pdfjs-4.3.136/pdfjsUtils.js
Normal file
236
src/utils/pdfjs/pdfjs-4.3.136/pdfjsUtils.js
Normal file
@ -0,0 +1,236 @@
|
||||
import * as pdfjs from './build/pdf.mjs';
|
||||
import * as pdfjsWorker from './build/pdf.worker.mjs';
|
||||
|
||||
/**
|
||||
* pdf转图片获取pdf页数,用于渲染页面
|
||||
* @param {file} file - 文件
|
||||
*/
|
||||
export function getPdfnum(file) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const imgFiles = [];
|
||||
if (file.type === 'application/pdf') {
|
||||
let reader = new FileReader();
|
||||
reader.readAsDataURL(file); //将文件读取为 DataURL
|
||||
reader.onload = function () {
|
||||
//文件读取成功完成时触发
|
||||
const loadingTask = pdfjs.getDocument(reader.result);
|
||||
loadingTask.promise.then(async (pdf) => {
|
||||
const pageNum = pdf.numPages;
|
||||
if (pageNum > 10) {
|
||||
reject('此pdf页数过多,请线下合并');
|
||||
}
|
||||
//准备图片
|
||||
for (let i = 1; i <= pageNum; i++) {
|
||||
imgFiles.push(i);
|
||||
}
|
||||
resolve(imgFiles);
|
||||
});
|
||||
};
|
||||
reader.onerror = function () {
|
||||
// 如果文件读取失败,拒绝Promise
|
||||
reject(new Error('Failed to read the file'));
|
||||
};
|
||||
} else {
|
||||
resolve([]);
|
||||
}
|
||||
});
|
||||
}
|
||||
//pdf转图片
|
||||
export function PdfToImg(file) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const newimgList = [];
|
||||
const fileName = file.name.substring(0, file.name.lastIndexOf('.'));
|
||||
if (file.type === 'application/pdf') {
|
||||
let reader = new FileReader();
|
||||
reader.readAsDataURL(file); //将文件读取为 DataURL
|
||||
reader.onload = function () {
|
||||
//文件读取成功完成时触发
|
||||
const loadingTask = pdfjs.getDocument(reader.result);
|
||||
loadingTask.promise.then(async (pdf) => {
|
||||
let pageNum = pdf.numPages;
|
||||
// 处理
|
||||
for (let i = 1; i <= pageNum; i++) {
|
||||
let canvasItem = '';
|
||||
pdf.getPage(i).then(async (page) => {
|
||||
const canvas = document.getElementById('pdf_canvas_' + i);
|
||||
const ctx = canvas.getContext('2d');
|
||||
const viewport = page.getViewport({ scale: 4 });
|
||||
canvas.height = viewport.height;
|
||||
canvas.width = viewport.width;
|
||||
const destWidth = 298;
|
||||
const destheight = destWidth * (viewport.height / viewport.width);
|
||||
canvas.style.width = destWidth + 'px';
|
||||
canvas.style.height = destWidth * (viewport.height / viewport.width) + 'px';
|
||||
newimgList.push(canvas);
|
||||
await page.render({ canvasContext: ctx, viewport });
|
||||
// 使用file对象进行后续操作
|
||||
if (i === pageNum) {
|
||||
setTimeout(async () => {
|
||||
const res = await savePdfImage(newimgList, destWidth, destheight, fileName);
|
||||
resolve(res);
|
||||
}, 500);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
reader.onerror = function () {
|
||||
// 如果文件读取失败,拒绝Promise
|
||||
reject(new Error('Failed to read the file'));
|
||||
};
|
||||
} else {
|
||||
const reader = new FileReader();
|
||||
reader.onload = function (e) {
|
||||
let pngData = e.target.result;
|
||||
let obj = {
|
||||
url: pngData,
|
||||
name: fileName,
|
||||
};
|
||||
resolve(obj);
|
||||
};
|
||||
// 开始读取文件
|
||||
reader.readAsDataURL(file);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* pdf保存图片
|
||||
* @param {Array} newimgList - canvas列表
|
||||
* @param {Number} x - 页面展示宽
|
||||
* @param {Number} y - 页面展示高
|
||||
* @param {String}fileName - 文件名称
|
||||
*/
|
||||
function savePdfImage(newimgList, x, y, fileName) {
|
||||
return new Promise((resolve, reject) => {
|
||||
let allcanvas = document.getElementById('canvas');
|
||||
let allctx = allcanvas.getContext('2d');
|
||||
allcanvas.style.width = x;
|
||||
allcanvas.style.height = y * newimgList.length;
|
||||
const subCanvasWidth = newimgList[0].width;
|
||||
const subCanvasHeight = newimgList[0].height;
|
||||
allcanvas.width = subCanvasWidth;
|
||||
allcanvas.height = subCanvasHeight * newimgList.length;
|
||||
newimgList.forEach((subCanvas, index) => {
|
||||
// 计算当前图片在Canvas中的垂直位置
|
||||
const yPosition = index * subCanvasHeight;
|
||||
// 绘制图片
|
||||
// 使用drawImage的四个参数版本来指定绘制的源图像区域和目标区域
|
||||
allctx.drawImage(subCanvas, 0, yPosition, subCanvasWidth, subCanvasHeight);
|
||||
if (index === newimgList.length - 1) {
|
||||
let pngData = allcanvas.toDataURL('image/png');
|
||||
let obj = {
|
||||
url: pngData,
|
||||
name: fileName,
|
||||
};
|
||||
resolve(obj);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
/**
|
||||
* 合并图片
|
||||
* @param {file} filelist - 文件列表
|
||||
* @param {Number} realWidth - 合并后的文件宽度
|
||||
*
|
||||
*/
|
||||
export function MeargeImg(filelist, realWidth) {
|
||||
return new Promise(async (resolve, reject) => {
|
||||
if (!filelist.length) {
|
||||
reject('材料不能为空,请检查');
|
||||
}
|
||||
let canvas = document.getElementById('myCanvas');
|
||||
const ctx = canvas.getContext('2d');
|
||||
let x = 0;
|
||||
let y = 0;
|
||||
//获取图片信息
|
||||
const dpr = window.devicePixelRatio;
|
||||
const res = await getImginfo(filelist, realWidth);
|
||||
//展示高度
|
||||
canvas.style.width = realWidth;
|
||||
canvas.style.height = res;
|
||||
canvas.width = realWidth * dpr;
|
||||
canvas.height = res * dpr;
|
||||
for (let i = 0; i < filelist.length; i++) {
|
||||
const img = new Image();
|
||||
img.src = filelist[i].url;
|
||||
img.crossOrigin = 'anonymous';
|
||||
img.onload = async () => {
|
||||
let { imgWidth, imgHeight } = await setPosition(x, y, img, realWidth);
|
||||
//获取比例
|
||||
ctx.drawImage(img, x, y, imgWidth, imgHeight);
|
||||
y += imgHeight;
|
||||
if (i === filelist.length - 1) {
|
||||
// 下载图片
|
||||
let pngData = canvas.toDataURL('image/png');
|
||||
let filename = filelist[0].name + '.png' || '合并图片.png';
|
||||
let fileimg = await base64ToFile(pngData, filename);
|
||||
let obj = {
|
||||
target: {
|
||||
files: [fileimg],
|
||||
},
|
||||
};
|
||||
resolve({ data: obj });
|
||||
}
|
||||
};
|
||||
}
|
||||
ctx.scale(dpr, dpr);
|
||||
});
|
||||
}
|
||||
//获取实际位置,宽高
|
||||
function setPosition(x, y, img, realWidth) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const scaledpr = img.width / realWidth;
|
||||
let imgWidth = img.width;
|
||||
let imgHeight = img.height;
|
||||
if (scaledpr > 1) {
|
||||
imgWidth = img.width / scaledpr;
|
||||
imgHeight = img.height / scaledpr;
|
||||
}
|
||||
resolve({
|
||||
imgWidth: imgWidth,
|
||||
imgHeight: imgHeight,
|
||||
});
|
||||
});
|
||||
}
|
||||
//获取所有图片的总高度
|
||||
function getImginfo(filelist, realWidth) {
|
||||
return new Promise((resolve, reject) => {
|
||||
let allHeight = 0;
|
||||
let loadedCount = 0; // 用于追踪已加载图片数量
|
||||
let totalImages = filelist.length; // 图片总数
|
||||
for (let i = 0; i < totalImages; i++) {
|
||||
const img = new Image();
|
||||
img.crossOrigin = 'anonymous';
|
||||
img.src = filelist[i].url;
|
||||
img.onload = () => {
|
||||
const scaledpr = img.width / realWidth;
|
||||
let imgHeight = img.height;
|
||||
if (scaledpr > 1) {
|
||||
imgHeight = img.height / scaledpr;
|
||||
}
|
||||
allHeight += imgHeight;
|
||||
loadedCount++; // 增加已加载图片计数
|
||||
if (loadedCount === totalImages) {
|
||||
resolve(allHeight);
|
||||
}
|
||||
};
|
||||
img.onerror = (error) => {
|
||||
reject(error);
|
||||
};
|
||||
}
|
||||
});
|
||||
}
|
||||
//base64转file文件
|
||||
function base64ToFile(base64, filename) {
|
||||
filename = filename || String(new Date().getTime());
|
||||
let arr = base64.split(',');
|
||||
let mime = arr[0].match(/:(.*?);/)[1];
|
||||
let bstr = atob(arr[1]);
|
||||
let n = bstr.length;
|
||||
let u8arr = new Uint8Array(n);
|
||||
while (n--) {
|
||||
u8arr[n] = bstr.charCodeAt(n);
|
||||
}
|
||||
return new File([u8arr], filename, { type: mime });
|
||||
}
|
||||
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78-EUC-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78-EUC-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78-RKSJ-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78-RKSJ-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78ms-RKSJ-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78ms-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78ms-RKSJ-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/78ms-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/83pv-RKSJ-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/83pv-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/90ms-RKSJ-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/90ms-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/90ms-RKSJ-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/90ms-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/90msp-RKSJ-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/90msp-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/90msp-RKSJ-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/90msp-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/90pv-RKSJ-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/90pv-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/90pv-RKSJ-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/90pv-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Add-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Add-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Add-RKSJ-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Add-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Add-RKSJ-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Add-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Add-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Add-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-0.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-0.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-1.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-1.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-2.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-2.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-3.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-3.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-4.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-4.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-5.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-5.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-6.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-6.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-UCS2.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-CNS1-UCS2.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-0.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-0.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-1.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-1.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-2.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-2.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-3.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-3.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-4.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-4.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-5.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-5.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-UCS2.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-GB1-UCS2.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-0.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-0.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-1.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-1.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-2.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-2.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-3.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-3.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-4.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-4.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-5.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-5.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-6.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-6.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-UCS2.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Japan1-UCS2.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Korea1-0.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Korea1-0.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Korea1-1.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Korea1-1.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Korea1-2.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Korea1-2.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Korea1-UCS2.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Adobe-Korea1-UCS2.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/B5-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/B5-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/B5-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/B5-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/B5pc-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/B5pc-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/B5pc-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/B5pc-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/CNS-EUC-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/CNS-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/CNS-EUC-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/CNS-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/CNS1-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/CNS1-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/CNS1-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/CNS1-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/CNS2-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/CNS2-H.bcmap
Normal file
Binary file not shown.
3
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/CNS2-V.bcmap
Normal file
3
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/CNS2-V.bcmap
Normal file
@ -0,0 +1,3 @@
|
||||
àRCopyright 1990-2009 Adobe Systems Incorporated.
|
||||
All rights reserved.
|
||||
See ./LICENSEáCNS2-H
|
||||
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/ETHK-B5-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/ETHK-B5-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/ETHK-B5-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/ETHK-B5-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/ETen-B5-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/ETen-B5-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/ETen-B5-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/ETen-B5-V.bcmap
Normal file
Binary file not shown.
@ -0,0 +1,3 @@
|
||||
àRCopyright 1990-2009 Adobe Systems Incorporated.
|
||||
All rights reserved.
|
||||
See ./LICENSEá ETen-B5-H` ^
|
||||
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/ETenms-B5-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/ETenms-B5-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/EUC-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/EUC-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/EUC-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Ext-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Ext-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Ext-RKSJ-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Ext-RKSJ-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Ext-RKSJ-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Ext-RKSJ-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Ext-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/Ext-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GB-EUC-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GB-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GB-EUC-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GB-EUC-V.bcmap
Normal file
Binary file not shown.
4
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GB-H.bcmap
Normal file
4
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GB-H.bcmap
Normal file
@ -0,0 +1,4 @@
|
||||
àRCopyright 1990-2009 Adobe Systems Incorporated.
|
||||
All rights reserved.
|
||||
See ./LICENSE!!<21>º]aX!!]`<60>21<32>> <09>p<0B>z<EFBFBD>$]‚<06>"R‚d<E2809A>-Uƒ7<C692>*„
4„%<25>+ „Z „{<7B>/…%…<<3C>9K…b<E280A6>1]†.<2E>"‡‰`]‡,<2C>"]ˆ
|
||||
<EFBFBD>"]ˆh<CB86>"]‰F<E280B0>"]Š$<24>"]‹<02>"]‹`<60>"]Œ><3E>"]<5D><1C>"]<5D>z<EFBFBD>"]ŽX<C5BD>"]<5D>6<EFBFBD>"]<5D><14>"]<5D>r<EFBFBD>"]‘P<E28098>"]’.<2E>"]“<0C>"]“j<E2809C>"]”H<E2809D>"]•&<26>"]–<04>"]–b<E28093>"]—@<40>"]˜<1E>"]˜|<7C>"]™Z<E284A2>"]š8<C5A1>"]›<16>"]›t<E280BA>"]œR<C593>"]<5D>0<EFBFBD>"]ž<0E>"]žl<C5BE>"]ŸJ<C5B8>"] (<28>"]¡<06>"]¡d<C2A1>"]¢B<C2A2>"]£ <20>"X£~<7E>']¤W<C2A4>"]¥5<C2A5>"]¦<13>"]¦q<C2A6>"]§O<C2A7>"]¨-<2D>"]©<0B>"]©i<C2A9>"]ªG<C2AA>"]«%<25>"]¬<03>"]¬a<C2AC>"]?<3F>"]®<1D>"]®{<7B>"]¯Y<C2AF>"]°7<C2B0>"]±<15>"]±s<C2B1>"]²Q<C2B2>"]³/<2F>"]´
<0A>"]´k<C2B4>"]µI<C2B5>"]¶'<27>"]·<05>"]·c<C2B7>"]¸A<C2B8>"]¹<1F>"]¹}<7D>"]º[<5B>"]»9
|
||||
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GB-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GB-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBK-EUC-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBK-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBK-EUC-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBK-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBK2K-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBK2K-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBK2K-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBK2K-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBKp-EUC-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBKp-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBKp-EUC-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBKp-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBT-EUC-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBT-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBT-EUC-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBT-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBT-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBT-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBT-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBT-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBTpc-EUC-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBTpc-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBTpc-EUC-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBTpc-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBpc-EUC-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBpc-EUC-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBpc-EUC-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/GBpc-EUC-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKdla-B5-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKdla-B5-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKdla-B5-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKdla-B5-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKdlb-B5-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKdlb-B5-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKdlb-B5-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKdlb-B5-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKgccs-B5-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKgccs-B5-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKgccs-B5-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKgccs-B5-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKm314-B5-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKm314-B5-H.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKm314-B5-V.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKm314-B5-V.bcmap
Normal file
Binary file not shown.
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKm471-B5-H.bcmap
Normal file
BIN
src/utils/pdfjs/pdfjs-4.3.136/web/cmaps/HKm471-B5-H.bcmap
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user