Convert CSV to PDF and PDF to CSV using C++

PDF files are a standard format for exchanging documents over the internet. There might be situations where you need to process the data in the PDF file and add that to a database. For such scenarios, converting the PDF document to CSV format might prove to be helpful. On the other hand, you might have some tabular data in CSV format that you want to share in a read-only manner with someone. You can achieve this by converting the CSV files to PDF format. In this article, you will learn how to interconvert PDF and CSV files programmatically using C++.
March 29, 2021 · Muhammad Ahmad

Add or Remove Annotations in PDF Files using Java

Annotations in PDF files are used to elaborate the content. An annotation could be a note, popup, or a graphical object such as an arrow, line, etc. Since PDF files are not editable, annotations let you provide additional information. In this article, you will learn how to work with annotations in PDF files programmatically. Particularly, you will learn how to add or remove annotations in PDF files using Java.
March 26, 2021 · Usman Aziz

Convert GIF Images to PNG, JPEG, BMP, or TIFF using Java

More often, GIF images are used to depict the animations. An animated GIF is a collection of frames combined together in a particular order. However, in certain cases, you have to convert GIF images to other raster image formats. For such cases, this article demonstrates how to convert a GIF image to PNG, JPEG, BMP, and TIFF formats using Java.
March 25, 2021 · Usman Aziz

Convert Excel to CSV and CSV to Excel using C++

Excel is a popular format for sharing information. You may find yourself in situations where you have data in an Excel(XLS file that you need to import to a database. For this, you would need to convert the Excel file to CSV format. On the other hand, you may have data in CSV format exported from a database that you need to manipulate further in an Excel file. For such cases, you would need to convert the CSV file to Excel format. In this article, you will learn how to perform both these conversions programmatically using C++.
March 25, 2021 · Muhammad Ahmad

Convert SVG Image to HTML Webpage Programmatically in C#

Scalable Vector Graphic, SVG, files are commonly used over the web because of their scalability and without changing the quality of the image. Two-dimensional graphics like logos, icons, and illustrations are often rendered in SVG file format. You can easily convert SVG to HTML file programmatically using C# language. In this article, you will learn several details about SVG to HTML webpage conversion.
March 25, 2021 · Farhan Raza

Convert PUB to PNG in C#

Publisher (PUB) files are used for publishing content on large scale. However, limited applications support this file format so you may need an image or thumbnail of the PUB file for a quick preview. This step-by-step guide will show you how to convert PUB to PNG in C#.
March 23, 2021 · Farhan Raza

Read Emails from MS Exchange Server using Java

Microsoft Exchange Server is a mail server that provides email, calendaring, contact management, and other collaboration services. It can easily be connected and accessed from within your web or desktop applications. Thus, you can communicate with the Exchange Server and access emails, contacts, calendars, etc. In this article, you will learn how to connect to MS Exchange Server and read emails using Java.
March 22, 2021 · Usman Aziz

Connect to POP3 Servers using C#

Post Office Protocol (POP3) is an email protocol that is used to fetch emails from the mailing servers. While implementing email clients and working with POP3 servers, you will first need to establish a connection to access the mailbox. To achieve this, in this article, you will learn how to connect to POP3 servers using C# from within your .NET applications.
March 19, 2021 · Usman Aziz

Split a PDF File using C++

PDF is a standard format for sharing documents over the internet. Its global support and consistent layout make it an ideal choice for such scenarios. But there may be situations where sharing the complete PDF file is not an ideal or appropriate option. For such cases, you can split the PDF file according to your requirements. You can do this manually, but that might prove to be less efficient and time-consuming. Alternatively, you can split the PDF document programmatically. In this article, you will learn how to split PDF files using C++.
March 19, 2021 · Muhammad Ahmad

Convert Excel Files to Word DOC in Java

Excel to Word conversion could be useful when you need to export data from an Excel worksheet to a table in a Word document. To automate this conversion, this article covers how to convert Excel XLSX files to Word DOCX format using Java. Furthermore, additional options are also discussed to customize XLSX to DOCX conversion.
March 17, 2021 · Usman Aziz