Search
Follow Us
Categories
- News Release(0)
Author Archives: Yasir Saeed
Convert XML to Excel and Excel to XML in Python

XML (Extensible Markup Language) is a markup language for excellent handling of complex data structures. It is a computer-friendly format, much like HTML for long-term data storage, transporting and data reusability. An Excel (Microsoft Excel Spreadsheet) is a file that consists of cells in rows and columns. Excel is one of the most important tools that supports built-in formulas to perform the calculation, analysis, and visualization of data and information. In … Continue Reading
Convert SVG to JPG and JPG to SVG in Python

Scalable Vector Graphics (SVG) is an XML-based markup language. This language is used to describe two-dimensional lightweight vector graphics and mixed raster graphics. JPG, also known as JPEG, is a compressed raster image format. It is a widely used and most common compressed image format for containing digital images. In specific scenarios, you need to convert SVG file to JPG file and JPG to SVG format. So let’s have … Continue Reading
Change Page Orientation in Word Documents using Python

The term orientation refers to the direction in which a document is displayed for printing and reading. Word supports two types of orientation: portrait (vertical) and landscape (horizontal). Normally, the default page size of a Word document is “Letter” (8.5 x 11 inches), and the default page orientation is “Portrait”. You can change the default orientation to create a different document, such as an application form, or brochure. In certain cases, you … Continue Reading
Posted in GroupDocs.Merger Cloud Product Family Tagged how to change a document from portrait to landscape in python, how to change word document from portrait to landscape, how to make one page landscape in word using python, python how to change from landscape to portrait in word, python how to change page orientation in word for one page
Rotate PDF File Pages using Rest API in Python

There can be many cases where you want to rotate pages of documents featuring the wrong orientation or contain disoriented pages. For example, if your PDF document pages are upside down, reading the document may be quite difficult. Rotating pages is a very useful help to improve your reader experience. So an easy solution to fix documents rotation is using GroupDocs.Merger Python SDK. You can rotate all pages or specific pages of … Continue Reading
Extract Pages from PDF File Online in Python

In certain cases, you may need to extract PDF pages from PDF documents or may need to separate large PDF documents into smaller PDF files. As a Python developer, you can easily extract specific pages from PDF files online or extract PDF pages by page range programmatically. In this article, you will learn how to extract pages from PDF file online in Python using REST API.
The following topics will be covered … Continue Reading
Convert SVG to PNG High Quality in Python

SVG or scalable vector graphics is a lightweight vector file format and XML-based markup language.
It is used for two-dimensional vector and mixed vector or raster graphics. PNG is a raster-graphics file format that supports lossless data compression. It was designed to improve the gif file format. SVG does not support as much details like standard image formats. But PNG is capable of handling very high resolutions and can preserve transparency. For … Continue Reading
How to Convert SVG to PNG Online in Node.js

SVG (Scalable Vector Graphics) defines vector-based graphics that is popular for rendering two-dimensional images. In the other hand, PNG image format is one of the best choice for a raster-based transparent file. When you are working with pixels and transparency, PNGs are a better choice than SVGs. SVG also does not work well for images with lots of details, textures and quality like photograph. For such scenarios, you can convert a … Continue Reading
Extract Text from PowerPoint PPT/PPTX in Node.js

In certain scenarios, the formatted text is extracted from the documents for further processing such as in text analysis, classification, etc. Among other file formats such as PDF and Word, PowerPoint Presentation is also used in text extraction. Therefore, this article demonstrates how to extract text from PowerPoint PPT/PPTX in Node.js. You can easily parse your PowerPoint PPT/PPTX presentations and text from a specific slide or extract all the text programmatically on … Continue Reading
How to Convert PDF to HTML Online in Node.js

PDF (Portable Document Format) is a secure document format that contains graphics, text, 3D models, images, etc. PDF format is compressed and smaller than other shareable file formats. HTML is a widely used plain-text lightweight Markup language. It is supported by every browser and is fast to load. PDF and HTML both file formats are good for accessibility, but HTML is generally much better for providing information via the web. So, in this … Continue Reading