2022-08-29 20:20:29 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
|
|
mkdir -p handbook
|
2022-08-29 20:56:32 +00:00
|
|
|
touch ./handbook/index.html
|
|
|
|
|
|
|
|
if [ ! -f ./handbook/cmunrm.otf ]; then
|
|
|
|
cd handbook
|
|
|
|
wget http://mirrors.concertpass.com/tex-archive/fonts/cm-unicode/fonts/otf/cmunrm.otf
|
|
|
|
base64 cmunrm.otf > cmunrm.txt
|
|
|
|
cd ..
|
|
|
|
fi
|
2022-08-29 20:20:29 +00:00
|
|
|
|
|
|
|
TMP_HTML="$(realpath ./handbook/index.html)"
|
|
|
|
HTML="html/index.html"
|
2022-08-29 20:56:32 +00:00
|
|
|
LAYOUT_PDF="handbook/layout.pdf"
|
2022-08-29 20:20:29 +00:00
|
|
|
|
|
|
|
BODY_VAR="{{BODY_HTML}}"
|
|
|
|
TMPL_HTML=`cat tmpl/layout.html.tmpl`
|
|
|
|
BODY_CONTENT=`cat "${HTML}"`
|
2022-08-29 20:56:32 +00:00
|
|
|
FONT=`cat handbook/cmunrm.txt | tr -d '\n'`
|
2022-08-29 20:20:29 +00:00
|
|
|
|
2022-08-29 20:56:32 +00:00
|
|
|
BODY_CONTENT="${BODY_CONTENT//.svg/.jpg}"
|
2022-08-29 20:20:29 +00:00
|
|
|
ALL_HTML="${TMPL_HTML/$BODY_VAR/$BODY_CONTENT}"
|
2022-08-29 20:56:32 +00:00
|
|
|
ALL_HTML="${ALL_HTML/REPLACEFONT/$FONT}"
|
2022-08-29 20:20:29 +00:00
|
|
|
echo "${ALL_HTML}" > "${TMP_HTML}"
|
|
|
|
|
|
|
|
chromium-browser \
|
|
|
|
--headless \
|
|
|
|
--no-sandbox \
|
|
|
|
--disable-gpu \
|
|
|
|
--run-all-compositor-stages-before-draw \
|
|
|
|
--print-to-pdf-no-header \
|
|
|
|
--no-margins \
|
|
|
|
--print-to-pdf="${LAYOUT_PDF}" \
|
|
|
|
"${TMP_HTML}"
|
|
|
|
|
|
|
|
cd handbook
|
|
|
|
|
|
|
|
#convert -density 600 "../${LAYOUT_PDF}" -quality 90 page-%3d.jpg
|
2022-08-29 20:56:32 +00:00
|
|
|
#pdftoppm "../${LAYOUT_PDF}" page -jpeg -rx 600 -ry 600
|
2022-08-29 20:20:29 +00:00
|
|
|
|
|
|
|
cd ..
|
2022-08-29 20:56:32 +00:00
|
|
|
#rm -f "${TMP_HTML}"
|
|
|
|
#rm -f "${LAYOUT_PDF}"
|