├── .gitignore ├── LICENSE ├── README.md ├── deptest ├── deptest.pdf ├── deptest.pdf.log └── deptest.psogood.pdf ├── docker ├── .dockerignore ├── Dockerfile └── build_docker.sh ├── docker_extraimgopt ├── .dockerignore ├── Dockerfile └── build_docker.sh ├── extra ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── dirs │ ├── rules │ ├── source │ │ └── format │ └── watch ├── dvipdfmx_fontfix.py ├── dvipdfmx_ndl14_extra.map ├── pdftex_ndl14_extra.map ├── pdftex_ndl14_extraflag.map ├── pts-graphics-helper.sty └── small.pdf ├── info.txt ├── latest_libexec.txt ├── lib ├── __init__.py └── pdfsizeopt │ ├── __init__.py │ ├── cff.py │ ├── float_util.py │ ├── main.py │ ├── pdfsizeopt_argparse.py │ ├── pdfsizeopt_argparse.version │ └── psproc.py ├── lint.sh ├── mksingle.py ├── pdfsizeopt ├── pdfsizeopt.single ├── pdfsizeopt_test.py ├── pts_pdfsizeopt2009 ├── README.txt ├── ltugbib.bst ├── ltugboat.cls ├── ltugproc.cls ├── pts_pdfsizeopt2009.bib └── pts_pdfsizeopt2009.tex ├── pts_pdfsizeopt2009_talk ├── compile.sh ├── pdfsizeopt_charts.key ├── pdfsizeopt_charts.pdf ├── pdfsizeopt_charts_ps2pdf.pdf └── pts_pdfsizeopt2009_talk.tex └── win32port ├── README.txt └── pdfsizeopt_winstub.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/README.md -------------------------------------------------------------------------------- /deptest/deptest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/deptest/deptest.pdf -------------------------------------------------------------------------------- /deptest/deptest.pdf.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/deptest/deptest.pdf.log -------------------------------------------------------------------------------- /deptest/deptest.psogood.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/deptest/deptest.psogood.pdf -------------------------------------------------------------------------------- /docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/docker/.dockerignore -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/build_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/docker/build_docker.sh -------------------------------------------------------------------------------- /docker_extraimgopt/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/docker_extraimgopt/.dockerignore -------------------------------------------------------------------------------- /docker_extraimgopt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/docker_extraimgopt/Dockerfile -------------------------------------------------------------------------------- /docker_extraimgopt/build_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/docker_extraimgopt/build_docker.sh -------------------------------------------------------------------------------- /extra/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/extra/debian/changelog -------------------------------------------------------------------------------- /extra/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /extra/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/extra/debian/control -------------------------------------------------------------------------------- /extra/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/extra/debian/copyright -------------------------------------------------------------------------------- /extra/debian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /extra/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/extra/debian/rules -------------------------------------------------------------------------------- /extra/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /extra/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/extra/debian/watch -------------------------------------------------------------------------------- /extra/dvipdfmx_fontfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/extra/dvipdfmx_fontfix.py -------------------------------------------------------------------------------- /extra/dvipdfmx_ndl14_extra.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/extra/dvipdfmx_ndl14_extra.map -------------------------------------------------------------------------------- /extra/pdftex_ndl14_extra.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/extra/pdftex_ndl14_extra.map -------------------------------------------------------------------------------- /extra/pdftex_ndl14_extraflag.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/extra/pdftex_ndl14_extraflag.map -------------------------------------------------------------------------------- /extra/pts-graphics-helper.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/extra/pts-graphics-helper.sty -------------------------------------------------------------------------------- /extra/small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/extra/small.pdf -------------------------------------------------------------------------------- /info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/info.txt -------------------------------------------------------------------------------- /latest_libexec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/latest_libexec.txt -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/pdfsizeopt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/pdfsizeopt/cff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/lib/pdfsizeopt/cff.py -------------------------------------------------------------------------------- /lib/pdfsizeopt/float_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/lib/pdfsizeopt/float_util.py -------------------------------------------------------------------------------- /lib/pdfsizeopt/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/lib/pdfsizeopt/main.py -------------------------------------------------------------------------------- /lib/pdfsizeopt/pdfsizeopt_argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/lib/pdfsizeopt/pdfsizeopt_argparse.py -------------------------------------------------------------------------------- /lib/pdfsizeopt/pdfsizeopt_argparse.version: -------------------------------------------------------------------------------- 1 | argparse-1.2.1 2 | -------------------------------------------------------------------------------- /lib/pdfsizeopt/psproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/lib/pdfsizeopt/psproc.py -------------------------------------------------------------------------------- /lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/lint.sh -------------------------------------------------------------------------------- /mksingle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/mksingle.py -------------------------------------------------------------------------------- /pdfsizeopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pdfsizeopt -------------------------------------------------------------------------------- /pdfsizeopt.single: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pdfsizeopt.single -------------------------------------------------------------------------------- /pdfsizeopt_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pdfsizeopt_test.py -------------------------------------------------------------------------------- /pts_pdfsizeopt2009/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pts_pdfsizeopt2009/README.txt -------------------------------------------------------------------------------- /pts_pdfsizeopt2009/ltugbib.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pts_pdfsizeopt2009/ltugbib.bst -------------------------------------------------------------------------------- /pts_pdfsizeopt2009/ltugboat.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pts_pdfsizeopt2009/ltugboat.cls -------------------------------------------------------------------------------- /pts_pdfsizeopt2009/ltugproc.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pts_pdfsizeopt2009/ltugproc.cls -------------------------------------------------------------------------------- /pts_pdfsizeopt2009/pts_pdfsizeopt2009.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pts_pdfsizeopt2009/pts_pdfsizeopt2009.bib -------------------------------------------------------------------------------- /pts_pdfsizeopt2009/pts_pdfsizeopt2009.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pts_pdfsizeopt2009/pts_pdfsizeopt2009.tex -------------------------------------------------------------------------------- /pts_pdfsizeopt2009_talk/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pts_pdfsizeopt2009_talk/compile.sh -------------------------------------------------------------------------------- /pts_pdfsizeopt2009_talk/pdfsizeopt_charts.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pts_pdfsizeopt2009_talk/pdfsizeopt_charts.key -------------------------------------------------------------------------------- /pts_pdfsizeopt2009_talk/pdfsizeopt_charts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pts_pdfsizeopt2009_talk/pdfsizeopt_charts.pdf -------------------------------------------------------------------------------- /pts_pdfsizeopt2009_talk/pdfsizeopt_charts_ps2pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pts_pdfsizeopt2009_talk/pdfsizeopt_charts_ps2pdf.pdf -------------------------------------------------------------------------------- /pts_pdfsizeopt2009_talk/pts_pdfsizeopt2009_talk.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/pts_pdfsizeopt2009_talk/pts_pdfsizeopt2009_talk.tex -------------------------------------------------------------------------------- /win32port/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/win32port/README.txt -------------------------------------------------------------------------------- /win32port/pdfsizeopt_winstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pts/pdfsizeopt/HEAD/win32port/pdfsizeopt_winstub.c --------------------------------------------------------------------------------