Code Monkey home page Code Monkey logo

Comments (6)

zach-betz-hln avatar zach-betz-hln commented on September 27, 2024 2

Hi @modesty - how do I install the package at this particular commit?

from pdf2json.

modesty avatar modesty commented on September 27, 2024

please test with 2b47fcd

from pdf2json.

haahmad avatar haahmad commented on September 27, 2024

seems like a new version with the fix needs to be published to npm

from pdf2json.

zach-betz-hln avatar zach-betz-hln commented on September 27, 2024

I've worked around this by creating file src/@types/pdf2json/index.d.ts with the below contents:

Contents
// Copied and adapted from https://github.com/modesty/pdf2json/blob/master/pdfparser.d.ts

declare module 'pdf2json' {
  declare class PDFParser extends EventEmitter {
    constructor(context?: unknown, needRawText?: number, password?: string);
    parseBuffer(buffer: Buffer, verbosity?: number): void;
    loadPDF(pdfFilePath: string, verbosity?: number): Promise<void>;
    createParserStream(): ParserStream;
    getRawTextContent(): string;
    on<K extends keyof EventMap>(eventName: K, listener: EventMap[K]): this;
  }

  type EventMap = {
    pdfParser_dataError: (errMsg: Record<'parserError', Error>) => void;
    pdfParser_dataReady: (pdfData: Output) => void;
    readable: (meta: Output['Meta']) => void;
    data: (data: Output['Pages'][number] | null) => void;
  };

  declare class ParserStream {
    //TODO
  }

  interface Output {
    Transcoder: string;
    Meta: Record<string, unknown>;
    Pages: Page[];
  }

  interface Page {
    Width: number;
    Height: number;
    HLines: Line[];
    VLines: Line[];
    Fills: Fill[];
    Texts: Text[];
    Fields: Field[];
    Boxsets: Boxset[];
  }

  interface Fill {
    x: number;
    y: number;
    w: number;
    h: number;
    oc?: string;
    clr?: number;
  }

  interface Line {
    x: number;
    y: number;
    w: number;
    l: number;
    oc?: string;
    clr?: number;
  }

  interface Text {
    x: number;
    y: number;
    w: number;
    sw: number;
    A: 'left' | 'center' | 'right';
    R: TextRun[];
    oc?: string;
    clr?: number;
  }

  interface TextRun {
    T: string;
    S: number;
    TS: [number, number, 0 | 1, 0 | 1];
    RA?: number;
  }

  interface Boxset {
    boxes: Box[];
    id: {
      Id: string;
      EN?: number;
    };
  }

  interface Field {
    id: {
      Id: string;
      EN?: number;
    };
    style: number;
    TI: number;
    AM: number;
    TU: string;
    x: number;
    y: number;
    w: number;
    h: number;
    T: {
      Name: 'alpha' | 'link';
      TypeInfo: object;
    };
  }

  interface Box {
    x: number;
    y: number;
    w: number;
    h: number;
    oc?: string;
    clr?: number;
  }

  interface Box {
    id: {
      Id: string;
      EN?: number;
    };
    T: {
      Name: string;
      TypeInfo?: object;
    };
    x: number;
    y: number;
    w: number;
    h: number;
    TI: number;
    AM: number;
    checked?: boolean;
    style: number;
  }

  export default PDFParser;
}

from pdf2json.

StanislavKharchenko avatar StanislavKharchenko commented on September 27, 2024

Hello.
When the fix will be published?

from pdf2json.

modesty avatar modesty commented on September 27, 2024

published in 3.1.2

from pdf2json.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.