Home > Mobile >  Opening a gif full screen in a Batch Script
Opening a gif full screen in a Batch Script

Time:05-07

I have a batch script and I need it to open a gif file and display full screen. I have done research and all I can find is how to open the gif, but not resize it correctly. The code I find wants to save it as a 500x500 for example, but not display it.

The path is c:\temp\move.gif

I have the above line in the code so it just opens the gif.....

CodePudding user response:

Check out Irfanview. Here are some examples of command line usage. To simply open something full screen, you should be able to do this:

i_view32.exe c:\temp\move.gif /fs

All command line parameters can be found here.

  • Related