• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..07-May-2022-

codec/H22-Jul-2020-11,1247,218

doc/H07-May-2022-1,7161,442

input/H22-Jul-2020-2,6171,447

lib/H22-Jul-2020-5,4303,559

output/H22-Jul-2020-1,8751,062

MakefileH A D22-Jul-20201.6 KiB5838

README.netpbmH A D22-Jul-20201.8 KiB4229

binerror.cH A D22-Jul-20202.7 KiB13760

binerror.hH A D22-Jul-20201 KiB5126

buttons.cH A D22-Jul-202015 KiB511358

buttons.hH A D22-Jul-20201.1 KiB5127

config.hH A D22-Jul-20202.4 KiB9023

display.cH A D22-Jul-202010.5 KiB416284

display.hH A D22-Jul-2020939 5026

fiasco.hH A D22-Jul-202014.6 KiB437206

fiascotopnm.cH A D22-Jul-202016.2 KiB483341

getopt.cH A D22-Jul-202027.9 KiB995580

getopt.hH A D22-Jul-20204.5 KiB13044

getopt1.cH A D22-Jul-20204.5 KiB190123

params.cH A D22-Jul-202020.2 KiB744523

params.hH A D22-Jul-20201.6 KiB6237

pnmtofiasco.cH A D22-Jul-202014.2 KiB409299

system.fiascorcH A D22-Jul-20203.9 KiB121104

README.netpbm

1The 'fiasco' subdirectory of the Netpbm source tree is primarily a copy
2of the source distribution of the Fiasco package by Ullrich Hafner.
3Bryan Henderson adapted fiasco-1.0 on July 6, 2000 to netpbm, and then
4merged in all the updates from fiasco-1.3 on February 9, 2001.
5
6The changes are:
7
8- Uses Netpbm libraries for input and output of Netpbm format images.
9
10- Works with maxvals other than 255 in Netpbm input images.  This change
11  also makes a minor correction to the maxval 255 case.  Where the Fiasco
12  package multiplies by 16 to convert from 8 bit to 12 bit intensity,
13  the correct factor is 4095/255.
14
15- Does not issue warning when system configuration file not found.
16  The location of that file is a compile-time option in 'fiasco', but
17  fixed at /etc in Netpbm.  The expectation is that Netpbm users will
18  never have a system configuration file.
19
20- Does not fail if basis file small.fco is not found.  The Fiasco code
21  already contained facilities for defaulting to a built-in version of
22  small.fco, but it was disabled by an early check for existence of
23  the basis file as an actual file.  In Netpbm, that check for
24  existence is simply removed.
25
26- Remove WINDOWS config.h configuration macro, which determined whether
27  files would be open with "b" flag (binary).  Use "b" flag unconditionally.
28
29- Rename internal "log2" function to "Log2" to avoid conflict with existing
30  "log2" macro or function.  The original package has conditional compilation
31  to allow it to use the existing log2 when configured for a system that has
32  it.  In Netpbm, we always use the private version.
33
34- Compilation warnings fixed.
35
36- 'bin' subdirectory moved to top level directory.
37
38- man pages for programs moved from doc subdirectory to top level directory.
39
40- man page of pnmpsnr created.
41
42