Skip to content
stoj edited this page Mar 29, 2023 · 6 revisions

Tidbits

Miscellaneous tidbits of information that whilst aren't strictly ClrVpin specific, they are hopefully useful anyway for maintaining an optimal collection.


Creating POVs

Invoke via a batch file

FORFILES /M *.vpx /C "cmd /c if not exist @fname.pov echo exporting @file && vpinballx -Pov @file"


Trimming Wheel Images

Install magick and invoke via a batch file following to trim images of unnecessary white space

if not exist trimmed mkdir trimmed

magick -verbose *.png -fuzz 5%% -trim -set filename:f %%t trimmed/%%[filename:f].png