SFWJPG - Seattle Filmworks to JPG conversion (Windows)

SFWJPG_win32.zip - Convert Seattle Filmworks .SFW files to .JPG (Windows executable).
The ZIP file includes the Win32 command line executable and 'C' source code.

SFWJPG is a Win32 port of the UNIX hosted application written by Everett Lipman.
It may be used freely according to the GNU General Public License.

For comments or feedback, send email to "sfwjpg" at this domain

FAQ #1:

A couple users have noted that after downloading and executing the program, all they see is a flash.  

SFWJPG is a command line executable.  If you run it from graphical user interface, the program will lauch,
display help text and then terminate.  From a graphical user interface, this will appear as a flash.

The program should be run from a command line.  (Start / Run) then "cmd" <enter>.
Execute sfwjpg program from command line with no parameters to get information on required parameters.

FAQ #2:

Some other folks have noted that the program does not support wildcards.  This is true and adding this support would be a worthy enhancement - but it has not been done.  To work around, execute this command at the Command Prompt.  This procedure assumes that all SFW files are in the current directory when program is run..

    for %F in (*.sfw) do sfwjpg %F

This will execute sfwjpg.exe once for each SFW file in the current directory.  With the output filename omitted, the program creates the output file with the same name as the input file with the extension changed to ".JPG".

Joe Nord