How search in doc file (word document) in iOS - iphone

I'm working in a project to preview a doc file and search on it. I successfully could open doc file using QLPreviewController but I don't know how to search for words or any thing in this file in iOS
Thanks

Firstly convert doc or docx file into PDF using iOS-htmltopdf
Now there many API available for PDF word searching functionality such as PDFKitten.
Hope its helpful in right direction........

Related

How see .doc/.docx and .pdf preview in a flutter mobile app

the question is this. I have a list of documents retrieved from an api (jpg, doc, pdf) that come to me in binary format (unit8list). How do I preview doc and pdf files? For images I have already solved using MemoryImage () but I don't know which library or widget to use for .doc / .docx and pdf files. Thanks in advance :D
You can use open_file package to open and view files.
Here is the URL. Check this out :)
https://pub.dev/packages/open_file
The following package should work perfectly for displaying .pdf files: https://pub.dev/packages/advance_pdf_viewer. You can open any file with https://pub.dev/packages/open_file

How to Merge PDF file with Annotation

i used this link 's code to merge pdf file ,pdf merge sucessfully with loss of annotation i want to merge pdf with annotattion i checked following link:
How to Merge Multiple PDF Files Into One PDF
Merge 2 pdf files in iOS
any other method to merge pdf file with annotation
Please Help me
For adding annotations to a PDF document I suggest you use this library which provides a sample code of PSPDFKIT. Also please follow this link which has loads of methods and libraries to add annotations to a PDF file. The first one is the PSPDFKIT itself which is free as a demo version but includes namely all kinds of functionalities you would need generally.
Create PDF Annotations in iOS
If you have Adobe Acrobat Pro you can:
open one of the pdf you want to merge
open the menu Comments (top right)
under "Comments List" click on the option icon cf the printscreen
select Import data file and select the second pdf

Images in OOXML (Office Open XML) standard documents are damaged. Where I can find a good one?

We are working on a project to deal with OOXML format, specifically DOCX format. We downloaded PDFs from ISO site (http://standards.iso.org/ittf/PubliclyAvailableStandards/index.html) but found all images in the PDF are black. Some images have colored lines but none of them has text.
Is there anyone read the standard?
Where I can get a good document with good images.
Thanks
You can take a look at the ECMA-376 version of the standard at the following link. I would download the third edition set of the pdf's as they are the most recent to date.

Pdf Reader+iphone

i want to make PDF reader app in phone.
where i have to implement search functionality.
in which i have to take the text of one page of .pdf file and have to do search functionality.
Is anyone had done it.
Please give me the sample code.
Thanks in advance
Editing the question.....
I had done how to search the key word,but i is working on .pdf file of one single page only.But not able to do how i have to search the word in multiple page.
Example:-
If i am having the .pdf file of multiple page.And now i want to implement the search functionality.Then how can i do it.
Please help me
Yes someone did it before. I used this kit also and it is great to search pages and highlight the result. It's PDFKitten by KurtCode (on Github).

Is there any framework to highlight text on pdf file after rendering on the iphone

I am trying to work on searching a word on the pdf which is rendered through the drawLayer. Can any one suggest how I should find a word on a pdf and the position (co-ordinates) of the word on the page? Is there any free framework to import or any libraries available? After spending more time with google I found some samples to search a word on pdf; those are fastsamplepdf from github, random ideas
MY WORK
I seen fastsample pdf code; I understood only the parsing of the pdf to text using
+(MFDocumentManager *)documentManagerWithFilePath:
(NSString *)filePath;
and
-(NSString *)wholeTextForPage:
(NSUInteger)pageNr withProfile:(MFProfile *)p;
But I can't find how they are highlighted. Please can any one help me out with this. Please post some suggestions.
Thank you.
Refer
PDF search on the iPhone
PDF Manipulation on iPhone SDK
Which are the pdf operators needed to do a search feature in a PDF in iphone sdk?