Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tdegeus/gsbatch
Batch apply GhostScript command
https://github.com/tdegeus/gsbatch
Last synced: 11 days ago
JSON representation
Batch apply GhostScript command
- Host: GitHub
- URL: https://github.com/tdegeus/gsbatch
- Owner: tdegeus
- License: mit
- Created: 2021-06-07T17:21:54.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-01T07:56:56.000Z (over 3 years ago)
- Last Synced: 2024-08-08T21:12:04.727Z (3 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gsbatch
[![CI](https://github.com/tdegeus/gsbatch/workflows/CI/badge.svg)](https://github.com/tdegeus/gsbatch/actions)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/gsbatch.svg)](https://anaconda.org/conda-forge/gsbatch)
[![PyPi release](https://img.shields.io/pypi/v/gsbatch.svg)](https://pypi.org/project/gsbatch/)# Overview
*gsbatch* allows you to run batch jobs (with some default options) using *GhostScript*.
## Convert images to PNG
```bash
gsbatch_topng *.pdf
```Convert a bunch of `*.pdf` images to PNG images.
`gsbatch_topng` uses as default output the same filename, but with the `.pdf` extension replaced
by `.png`.# Getting gsbatch
## Using conda
```bash
conda install -c conda-forge gsbatch
```This will also download and install all necessary dependencies.
## Using PyPi
```bash
pip install gsbatch
```This will also download and install the necessary Python modules.
## From source
```bash
# Download gsbatch
git checkout https://github.com/tdegeus/gsbatch.git
cd gsbatch# Install
python -m pip install .
```This will also download and install the necessary Python modules.