Include support for pec file format

This commit is contained in:
Leonardo Murça 2022-11-30 10:36:33 -03:00
parent f33932c8cf
commit 288970d475
3 changed files with 17 additions and 1 deletions

View file

@ -2,6 +2,7 @@ import { jDataView } from "./jdataview";
import { pesRead } from "../format-readers/pes";
import { dstRead } from "../format-readers/dst";
import { Pattern } from "./pattern";
import { pecRead } from "../format-readers/pec";
String.prototype.endsWith = function (suffix) {
return this.indexOf(suffix, this.length - suffix.length) !== -1;
@ -15,6 +16,8 @@ function displayFileText(filename, evt, canvas) {
pesRead(view, pattern);
} else if (filename.endsWith("dst")) {
dstRead(view, pattern);
} else if (filename.endsWith("pec")) {
pecRead(view, pattern);
}
pattern.moveToPositive();
pattern.drawShape(canvas);

13
src/format-readers/pec.js Normal file
View file

@ -0,0 +1,13 @@
import { pecColors, pecReadStitches } from "./pes";
export function pecRead(file, pattern) {
let colorChanges, i;
file.seek(0x38);
colorChanges = file.getUint8();
for (i = 0; i <= colorChanges; i++) {
pattern.addColor(pecColors[file.getUint8() % 65]);
}
file.seek(0x21c);
pecReadStitches(file, pattern);
return true;
}

View file

@ -9,7 +9,7 @@
let rejectedFiles;
let areAcceptedFilesRendered = false;
const fileRequirements = {
supportedFormats: [".pes", ".dst"],
supportedFormats: [".pes", ".dst", ".pec"],
maxSize: 700000,
};