You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I Created a Rag App where I need images and tables from pdf document i search pdf pkg i found there is PdfParserBase class but it is not completed can someone suggest how to implement it
Here is code
`class PdfParser extends PdfDocumentParserBase {
PdfParser.(super.bytes);
factory PdfParser.load(Uint8List bytes) => PdfParser.(bytes);
@DavBfr is it possible to only get the option to load existing document (concrete implementation of PdfDocumentParserBase ) without any crypto functionalities? If so, where can I contact you to talk it through? Thanks :)
I Created a Rag App where I need images and tables from pdf document i search pdf pkg i found there is PdfParserBase class but it is not completed can someone suggest how to implement it
Here is code
`class PdfParser extends PdfDocumentParserBase {
PdfParser.(super.bytes);
factory PdfParser.load(Uint8List bytes) => PdfParser.(bytes);
@OverRide
void mergeDocument(PdfDocument pdfDocument) {
}
PdfDocument get doc => PdfDocument.load(this);
@OverRide
int get size => bytes.length;
@OverRide
int get xrefOffset => 0;
}`
i load pdf with bytes but i dint get all info about pdf which i load i think it's is uncompleted
The text was updated successfully, but these errors were encountered: