bdf2sfd.1 (2139B)
1 .\" 2 .\" Copyright (c) 2019-2022, Frederic Cambus 3 .\" All rights reserved. 4 .\" 5 .\" Redistribution and use in source and binary forms, with or without 6 .\" modification, are permitted provided that the following conditions are met: 7 .\" 8 .\" * Redistributions of source code must retain the above copyright 9 .\" notice, this list of conditions and the following disclaimer. 10 .\" 11 .\" * Redistributions in binary form must reproduce the above copyright 12 .\" notice, this list of conditions and the following disclaimer in the 13 .\" documentation and/or other materials provided with the distribution. 14 .\" 15 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 16 .\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS 19 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 20 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 21 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 22 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 23 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 24 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 25 .\" POSSIBILITY OF SUCH DAMAGE. 26 .\" 27 .Dd $Mdocdate: February 12 2021 $ 28 .Dt BDF2SFD 1 29 .Os 30 .Sh NAME 31 .Nm bdf2sfd 32 .Nd BDF to SFD converter 33 .Sh SYNOPSIS 34 .Nm 35 .Op Fl hv 36 .Op Fl f Ar name 37 .Op Fl p Ar name 38 .Ar font.bdf 39 .Sh DESCRIPTION 40 .Nm 41 is a BDF to SFD converter, allowing to vectorize bitmap fonts. 42 It works by converting each pixel of a glyph to a polygon, which produces 43 large and unoptimized SFD files which should be post-processed using FontForge. 44 .Pp 45 If 46 .Ar file 47 is a single dash (`-'), 48 .Nm 49 reads from the standard input. 50 .Pp 51 The options are as follows: 52 .Bl -tag -width 10n 53 .It Fl f Ar name 54 Specify font name. 55 .It Fl p Ar name 56 Specify PostScript font name. 57 .It Fl h 58 Display usage. 59 .It Fl v 60 Display version. 61 .El 62 .Sh AUTHORS 63 .Nm 64 was written by 65 .An Frederic Cambus .