Skip to content

Instantly share code, notes, and snippets.

@langheran
Created June 27, 2024 01:44
Show Gist options
  • Save langheran/5828b874d01dfebbd7698813bef4661c to your computer and use it in GitHub Desktop.
Save langheran/5828b874d01dfebbd7698813bef4661c to your computer and use it in GitHub Desktop.
C:\Users\NisimHurst\NDS\scripts\trim_pdf_images.ps1
Get-ChildItem ".\" -Filter *.pdf |
Foreach-Object {
$output = $_.BaseName + ".png"
if (Test-Path $output) {
Remove-Item $output
}
convert -density 300 $_.FullName -bordercolor white -border 1x1 -trim +repage -quality 100 -border 50x50 $output
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment