English

Send Word Document in Email Body using C++

Emails are the primary source of communication over the internet, and in the majority of cases, the layout and formatting of the emails is important. However, the majority of the email clients do not provide the enhanced formatting options required for designing high-quality email content. In such cases, a well-formatted Word document can be used in the body of the email. In this article, you will learn how to send a Word document as the body of the email using C++.
June 4, 2021 · 3 min · Muhammad Ahmad

Convert Image to Searchable PDF with OCR using C#

Images or scanned documents can contain textual information. You can convert a scanned document or an image to a searchable PDF document with OCR programmatically using C#. So the JPG, PNG, TIFF, BMP, and other format images can be converted to searchable PDF files. Please refer to the following sections for further details.
June 4, 2021 · 3 min · Farhan Raza

Read Emails using POP3 or IMAP in Python

In this article, you will learn how to retrieve email messages from the mail servers programmatically. Particularly, you will come to know how to connect to the mail server using IMAP or POP3 protocols and read the emails in Python.
June 4, 2021 · 2 min · Usman Aziz

Find and Replace Text in Excel using Python

Excel spreadsheets often contain thousands of records in multiple sheets. In such cases, finding and replacing a particular text manually could be a hectic task. Therefore, MS Excel provides the find and replace option to update the desired text with a single click. In this article, you will learn how to find and replace text in Excel files programmatically in Python.
June 3, 2021 · 3 min · Usman Aziz

Insert or Delete Text/Image Watermarks in PDF Files using C++

A watermark in a document identifies the state of the document with texts like confidential, draft, etc., and makes it difficult for the original document to be copied. Watermarks can be image or text-based and are frequently used in PDF documents. You might need to add watermarks to PDF documents within your C++ applications. For that, this article will teach you how to add and remove text and image watermarks from PDF documents using C++.
June 2, 2021 · 4 min · Muhammad Ahmad

Text Vectorization in SVG Images Programmatically using C#

You can vectorize text by converting it to digital graphics in an SVG file. It is helpful for text security purposes like when you want to protect a copyrighted font from unwanted use. This article covers how to perform text vectorization programmatically using C#.
June 2, 2021 · 3 min · Farhan Raza

Encrypt and Decrypt Excel Files in Python

To make sure the data is protected from being changed or seen by unauthorized people, we can use a process called encryption and decryption. This article explains how to use Python to encrypt and decrypt Excel files.
June 1, 2021 · 2 min · Usman Aziz

Rotate PDF Pages, Text or Images using C++

Let us explore the scenarios related to rotation in PDF documents. There might be situations where you might have an inverted scanned PDF document that you need to fix. You can fix such a document by rotating the pages of the document. You might also want to add text or image watermarks to a PDF document by rotating them. To that end, this article will teach you how to rotate PDF pages, text, and images programmatically using C++.
May 31, 2021 · 3 min · Muhammad Ahmad

Convert PUB to Image Programmatically in Java

Microsoft Publisher Files are used for printing or publishing information. You can convert PUB to JPG, PNG, or TIFF images programmatically using Java. In this article, you will learn how to convert the PUB file to different image formats.
May 31, 2021 · 3 min · Farhan Raza

Convert LaTeX to Word using C#

LaTeX’s TEX is a popular format that is used to write articles, books, and other publications. It uses different tags to insert text, graphics, mathematical equations, symbols, etc. in the document. In certain cases, you may need to convert the LaTeX file to a Word format programmatically. For such cases, this article covers how to convert a LaTeX file (.tex) to Word format using C#.
May 29, 2021 · 2 min · Usman Aziz