#!/usr/bin/env texlua --*-Lua-*- -- $Id$ -- Copyright (C) 2008-2022 Reinhard Kotucha. -- You may freely use, modify and/or distribute this file. doc = { invocation = '[options] ', synopsis = '"Distill" Encapsulated PostScript.', details = [=[ can be either an EPS or PS file. A single hyphen (-) denotes stdin. is an EPS file with a re-calculated BoundingBox. A single hyphen (-) denotes stdout. ]=]} dofile(arg[0]:match('(.*[/\\]).*$')..'tlgs-common') local command = {gsname()} addto(command, '-sDEVICE=eps2write', '-dDEVICEWIDTH=250000', '-dDEVICEHEIGHT=250000', '-o'..file.output, options, '-f', file.input) execute(command) -- Local Variables: -- mode: Lua -- lua-indent-level: 2 -- indent-tabs-mode: nil -- coding: utf-8-unix -- End: -- vim:set tabstop=2 expandtab: