Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

storing a scanned (pdf,tiff,jpeg) file in MongoDB .

I have to store a tiff(tag image file format) or pdf scanned file in mongodb that should be Text search able . like if we want to search "on base of text" it should be able to search .

I am going to use .net mvc or java with mongodb .

so how can i store this pdf file and then can retrieve from database .

any suggestion will be appreciated .

thanks

like image 561
Waqas Rana Avatar asked Feb 06 '23 13:02

Waqas Rana


1 Answers

You can store files by using MongoDb GridFs as described in this question and extract texts from a PDF file by using some features those described in this question. ;).

HTH

like image 154
shA.t Avatar answered Feb 08 '23 15:02

shA.t