How To Install gl2ps on CentOS 7

In this tutorial we learn how to install gl2ps on CentOS 7. gl2ps is An OpenGL to PostScript printing library

Introduction

In this tutorial we learn how to install gl2ps on CentOS 7.

What is gl2ps

GL2PS is a C library providing high quality vector output for any OpenGL application. The main difference between GL2PS and other similar libraries is the use of sorting algorithms capable of handling intersecting and stretched polygons, as well as non manifold objects. GL2PS provides advanced smooth shading and text rendering, culling of invisible primitives, mixed vector/bitmap output, and much more… GL2PS can currently create PostScript (PS), Encapsulated PostScript (EPS) and Portable Document Format (PDF) files, as well as LaTeX files for the text fragments. Adding new vector output formats should be relatively easy (and amongst the formats we would be interested in adding, SVG is first in line). Meanwhile, you can use the excellent pstoedit program to transform the PostScript files generated by GL2PS into many other vector formats such as xfig, cgm, wmf, etc.

We can use yum or dnf to install gl2ps on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install gl2ps.

Install gl2ps on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install gl2ps using yum by running the following command:

sudo yum -y install gl2ps

Install gl2ps on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install gl2ps using dnf by running the following command:

sudo dnf -y install gl2ps

How To Uninstall gl2ps on CentOS 7

To uninstall only the gl2ps package we can use the following command:

sudo dnf remove gl2ps

References

Summary

In this tutorial we learn how to install gl2ps on CentOS 7 using yum and dnf.