Browse Source

build(screenshot): add automatic screenshot script

pull/16/head
D. Bohdan 3 years ago
parent
commit
98b0d328a6
  1. 3
      screenshot-page.html
  2. 40
      screenshot.tcl

3
screenshot-page.html

@ -5,8 +5,7 @@
<title>Lorem ipsum dolor sit amet</title>
<!-- <link rel="stylesheet" href="https://unpkg.com/normalize.css@8.0.1/normalize.css" type="text/css"> -->
<link rel="stylesheet" href="normalize.css" />
<link rel="stylesheet" href="sakura-dark-solarized.css" />
<link rel="stylesheet" href="%CSS_HERE%" />
</head>
<body>

40
screenshot.tcl

@ -0,0 +1,40 @@
#! /usr/bin/env tclsh
package require fileutil
proc screenshot {name css github demo} {
set src screenshot-page.html
set dest temp.html
set filename [slugify $name].png
fileutil::writeFile $dest [regsub %CSS_HERE% [fileutil::cat $src] $css]
run wkhtmltoimage $dest screenshot/$filename
run convert \
-resize 25% \
-adaptive-sharpen 10 \
screenshot/$filename \
thumbnail/$filename
run optipng -o5 -strip all screenshot/$filename thumbnail/$filename
puts ------\n[markup $name $github $demo $filename]
}
proc slugify text {
string trim [regsub -all {[^[:alnum:]]+} [string tolower $text] -] -
}
proc run args {
exec {*}$args >@ stdout 2>@ stderr
}
proc markup {name github demo filename} {
subst -nocommands {### $name
* [Repository](https://github.com/$github) ![GitHub stars](https://img.shields.io/github/stars/$github?style=flat-square) ![GitHub contributors](https://img.shields.io/github/contributors-anon/$github?style=flat-square) ![Last commit](https://img.shields.io/github/last-commit/$github?style=flat-square) ![GitHub open issues](https://img.shields.io/github/issues-raw/$github?style=flat-square) ![GitHub closed issues](https://img.shields.io/github/issues-closed-raw/$github?style=flat-square)
* [Demo]($demo)
[![$filename](thumbnail/$filename)](screenshot/$filename)}
}
screenshot {*}$argv
Loading…
Cancel
Save