

Then you can add and remove highlights as you need. You can change the color of the highlight tool. Highlight your PDF with the highlight tool in the toolbar. You can upload your files from your local device, Google Drive, Dropbox, OneDrive or by pasting the URL link. Secondly, you have some ways to upload your PDF file. Then you can see the "Edit PDF" tool on the homepage. Open your browser and type into the EasePDF website. Users can process files from their computers, tablets and mobile phones at any time and anywhere under an Internet connection. You can make conversion easy in this all-in-one PDF online converter.īesides, the free online PDF converter can work well on many devices. These tools are 100% free and easy to use. Option two – How to Highlight in PDF Offline Method 1 - Adobe Acrobat Reader DC Method 2 - Wondershare PDFelement Option One – How to Highlight in PDF Online Method 1 - EasePDFĮasePDF is a professional PDF converter with plenty of useful conversion tools. Option One – How to Highlight in PDF Online Method 1 - EasePDF Method 2 - Smallpdf Method 3 - Sejda Refer here to explore the rich set of Syncfusion Essential PDF features.Īn online sample link to adding various types of annotation to PDF document. Take a moment to peruse the documentation for working with annotations, where you can find other options like add, delete, and modify the annotation from the PDF document. īy executing the program, you will get the PDF document as follows. Textmarkup.TextMarkupColor = New PdfColor(Color.LightPink)Ī complete working sample can be downloaded from HighlightTextInPDF.zip. Textmarkup.TextMarkupAnnotationType = PdfTextMarkupAnnotationType.Highlight 'Sets the markup annotation type as HighLight 'Add text markup annotation on the bounds of highlighting textĭim textmarkup As New PdfTextMarkupAnnotation(textData.Bounds)

'Add a list to maintain extracted text informationĭim extractedText As New List(Of TextData)()įor Each textData As TextData In extractedText Textmarkup.TextMarkupColor = new PdfColor(Color.LightPink) ĭim document As New PdfLoadedDocument("Input.pdf")ĭim page As PdfLoadedPage = Tr圜ast(document.Pages(0), PdfLoadedPage) Sets the markup annotation type as HighLight PdfTextMarkupAnnotation textmarkup = new PdfTextMarkupAnnotation(textData.Bounds) Add text markup annotation on the bounds of highlighting text Add a list to maintain extracted text informationįoreach (TextData textData in extractedText) PdfLoadedPage page = document.Pages as PdfLoadedPage PdfLoadedDocument document = new PdfLoadedDocument("Input.pdf")
