You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import glob
|
|
from pathlib import Path
|
|
import subprocess
|
|
|
|
for filename in glob.glob("images_too_big/*"):
|
|
pathfn = Path(filename)
|
|
outpathfn = Path("images/")/pathfn.name
|
|
subprocess.run(["convert", f"{pathfn}", "-resize", "1000x1000", f"{outpathfn}"])
|