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
Use case: An Express API for taking DOC/PDF/DOCX and returning text.
Rather than uploading a file to the server and then having textract read that off the disk it would be preferable to take a base64 encoded DOC/PDF/DOCX file sent as a string in a POST request, put it in a buffer, and then have textract read that buffer.
The text was updated successfully, but these errors were encountered:
Working this now. As an FYI, textract still needs to write it to disk, but since it is uniquely textracts requirement that it be on disk, no reason why textract can't manage that for you.
Use case: An Express API for taking DOC/PDF/DOCX and returning text.
Rather than uploading a file to the server and then having textract read that off the disk it would be preferable to take a base64 encoded DOC/PDF/DOCX file sent as a string in a POST request, put it in a buffer, and then have textract read that buffer.
The text was updated successfully, but these errors were encountered: