We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello guys,
I am using the following commandline in windows 11:
pdfsizeopt --v=20 --use-pngout=No --use-image-optimizer="pingo -s4 %(targetfnq)s" --use-image-optimizer=ECT,zopflipng --do-optimize-objs=yes --do-remove-generational-objs=yes abc.pdf
it works, but not in a windows batch file. What am I doing wrong? My batchfile looks like this:
@echo off
FOR %%i IN (%*) DO (
pdfsizeopt --v=20 --use-pngout=No --use-image-optimizer="pingo -s4 %(targetfnq)s" --use-image-optimizer=ECT,zopflipng --do-optimize-objs=yes --do-remove-generational-objs=yes "%%i"
) pause
the error shown is that the input file is missing when I drag and drop a pdf on that batchfile.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello guys,
I am using the following commandline in windows 11:
pdfsizeopt --v=20 --use-pngout=No --use-image-optimizer="pingo -s4 %(targetfnq)s" --use-image-optimizer=ECT,zopflipng --do-optimize-objs=yes --do-remove-generational-objs=yes abc.pdf
it works, but not in a windows batch file. What am I doing wrong? My batchfile looks like this:
@echo off
FOR %%i IN (%*) DO (
pdfsizeopt --v=20 --use-pngout=No --use-image-optimizer="pingo -s4 %(targetfnq)s" --use-image-optimizer=ECT,zopflipng --do-optimize-objs=yes --do-remove-generational-objs=yes "%%i"
)
pause
the error shown is that the input file is missing when I drag and drop a pdf on that batchfile.
The text was updated successfully, but these errors were encountered: