diff options
| author | Sacha Chua <sacha@sachachua.com> | 2022-12-01 19:23:43 -0500 | 
|---|---|---|
| committer | Sacha Chua <sacha@sachachua.com> | 2022-12-01 19:23:43 -0500 | 
| commit | 74a63a5aa3bd27bc1c0ac83108ca4017766f541b (patch) | |
| tree | 28d6a3d11b5a7328a76a2055ea7fe812a2a835dc | |
| parent | 0a7edf0d333d5959d75c9934ce23f19bb399b6e2 (diff) | |
| download | emacsconf-el-74a63a5aa3bd27bc1c0ac83108ca4017766f541b.tar.xz emacsconf-el-74a63a5aa3bd27bc1c0ac83108ca4017766f541b.zip  | |
width and height for images
| -rw-r--r-- | emacsconf-stream.el | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/emacsconf-stream.el b/emacsconf-stream.el index a5106e0..2f1b160 100644 --- a/emacsconf-stream.el +++ b/emacsconf-stream.el @@ -466,7 +466,7 @@ This uses the BBB room if available, or the IRC channel if not."                          (unless (file-exists-p (expand-file-name (concat (plist-get talk :slug) ".png")                                                                   dir))                            (shell-command -                           (concat "inkscape --export-type=png --export-dpi=300 --export-background-opacity=0 " +                           (concat "inkscape --export-type=png -w 1280 -h 720 --export-background-opacity=0 "                                     (shell-quote-argument (expand-file-name (concat (plist-get talk :slug) ".svg")                                                                             dir))))))                        (setq prev talk))  | 
