• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisão2e8e834ef45b791a236abee0eb78a1e8574279ea (tree)
Hora2019-08-29 22:32:12
AutorLorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Mensagem de Log

A file to convert all the pdf in a folder to png files.

Mudança Sumário

Diff

diff -r fda8da977279 -r 2e8e834ef45b Bash-scripts/convert_pdf_to_png2.bash
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Bash-scripts/convert_pdf_to_png2.bash Thu Aug 29 15:32:12 2019 +0200
@@ -0,0 +1,14 @@
1+#!/bin/bash
2+
3+#convert pdf to png
4+
5+FILES="*.pdf"
6+
7+for F in $FILES
8+
9+do
10+newname=`basename "$F".pdf`
11+echo $newname
12+pdftoppm "$F" -rx 300 -ry 300 "$newname.png"
13+
14+done