NETPIC (Jim Tucker)

From Just Solve the File Format Problem
(Difference between revisions)
Jump to: navigation, search
(Created page with "{{FormatInfo |formattype=electronic |subcat=Graphics |extensions={{ext|npx}}, others |released=1995 }} '''NETPIC''' is a DOS utility developed by Jim Tucker. Its main feature ...")
 
Line 10: Line 10:
 
The generated COM file can optionally use an ASCII-only encoding suitable for inclusion in an email. See [[Executable envelopes#Transfer-encoded executables]] for other executable formats of this sort.
 
The generated COM file can optionally use an ASCII-only encoding suitable for inclusion in an email. See [[Executable envelopes#Transfer-encoded executables]] for other executable formats of this sort.
  
Early versions (pre-v1.3) have a <code>-w</code> option to encode an arbitrary COM file in an ASCII-only format. Later, this feature was moved to a separate [[NETRUN]] utility.
+
Early versions (pre-v1.3) have a <code>-w</code> option to encode an arbitrary COM file in an ASCII-only format. There is also a <code>-e</code> option, to recover the original binary COM file. Later, this feature was moved to a separate [[NETRUN]] utility.
  
 
ASCII-encoded files are normally wrapped in some plain text instructions, telling you to use a text editor to save the payload data to a .COM file. Most versions have a <code>-z</code> option to omit the wrapper, producing a file that can be executed directly (though you may have to rename it to end in ".COM").
 
ASCII-encoded files are normally wrapped in some plain text instructions, telling you to use a text editor to save the payload data to a .COM file. Most versions have a <code>-z</code> option to omit the wrapper, producing a file that can be executed directly (though you may have to rename it to end in ".COM").
  
 
Versions 2.00+ include an NPX2GIF utility that converts an executable image file back to a GIF file.
 
Versions 2.00+ include an NPX2GIF utility that converts an executable image file back to a GIF file.
 
Versions with the <code>-w</code> option also have a <code>-e</code> option, to recover the original binary COM file from an ASCII-encoded COM file.
 
  
 
== Identification ==
 
== Identification ==
(Based on limited research.)
+
''Note that some versions, notably 2.00 and 3.10, have not been located for evaluation. We'll assume the text wrapper has been deleted or suppressed, though robust identification would have to account for it.''
 +
 
 +
Binary-encoded GIF→COM files for all versions apparently start with bytes {{magic|f6 06 2f 01 ff 74 ?? ba 15 01 b4 09 cd 21 b4 07}}.
  
Binary-encoded graphics files are observed to start with bytes {{magic|f6 06 2f 01 ff 74 ?? ba 15 01 b4 09 cd 21 b4 07}}.
+
Version 1.x ASCII-encoded GIF→COM (NPX) files, without the wrapper, start with "{{magic|NETPIC.COM}}" (which apparently is valid x86 machine code).
  
ASCII-encoded graphics files, without the wrapper, older 3→4 format, start with "{{magic|NETPIC.COM}}" (which apparently is valid x86 machine code).
+
Version 3.02 ASCII-encoded GIF→COM (NPX) files, without the wrapper, start with "{{magic|ZRX-sm-sm-Z}}". The string "{{magic|NETPIC_COPYRIGHT_1995_BY_JIM_TUCKER}}" appears in the file, at offset 462 by default, or offset 396 for 3→4 encoding (<code>-3</code> option).
  
ASCII-encoded graphics files, without the wrapper, newer 4→5 format (default for v2.00+), start with "{{magic|XPPPYZIQD}}". This does not distinguish them from [[NETSEND]] and some [[NETRUN]] files. Files made by NETPIC apparently have "{{magic|NETPIC}}" at offset 47.
+
Version 3.20-4.20 ASCII-encoded GIF→COM (NPX) files, without the wrapper, start with "{{magic|XPPPYZIQD}}". This does not distinguish them from [[NETSEND]] and some [[NETRUN]] files. Files made by NETPIC apparently have "{{magic|NETPIC}}" at offset 47.
  
ASCII-encoded arbitrary COM files (<code>-w</code> option) start with "{{magic|COM-PRG.COM}}". This does not distinguish them from older [[NETRUN]] files. Files made by NETPIC v1.0d have "{{magic|NETPIC}}" at offset 520.
+
The ASCII-encoded arbitrary COM files from v1.0's <code>-w</code> option, without the wrapper, start with "{{magic|COM-PRG.COM}}". This does not distinguish them from older [[NETRUN]] files. Files made by NETPIC have "{{magic|NETPIC}}" at offset 520.
  
 
== Software ==
 
== Software ==
 
* {{CdTextfiles|nopv16/029A/NETPIC10.ZIP|NETPIC v1.0d}} - Ambiguous version number -- also uses 1.0e. Claims to be the first release.
 
* {{CdTextfiles|nopv16/029A/NETPIC10.ZIP|NETPIC v1.0d}} - Ambiguous version number -- also uses 1.0e. Claims to be the first release.
 +
* NETPIC v1.4A (1995-04-07): [https://archive.org/details/cd-ascq DP TOOL CLUB CD ASCQ] → CD_ASCQ_22_0695.iso → VRAC/NETPIC14.ZIP
 +
* NETPIC v1.41 (1995-04-29): [https://archive.org/details/Joystick_Magazine_-_Hors-Serie_Numero_08_CD_-_Avril_1996 Joystick_Magazine_-_Hors-Serie_Numero_08_CD_-_Avril_1996] → cd3.iso → GRAPHISM/DOS/NETPIC14.ZIP
 +
* NETPIC v3.02: [https://archive.org/details/hot-shareware-01 Hot Shareware 1] → AREA103/NETPIC30.ZIP
 
* {{CdTextfiles|simtel/simtel9510/disk1/DISC1/GRAPHICS/NETPIC32.ZIP|NETPIC v3.20}} - Includes a partial change log in the NETPIC.TXT file.
 
* {{CdTextfiles|simtel/simtel9510/disk1/DISC1/GRAPHICS/NETPIC32.ZIP|NETPIC v3.20}} - Includes a partial change log in the NETPIC.TXT file.
 
* [{{SACFTPURL|graph|netpic42.zip}} NETPIC v4.20]
 
* [{{SACFTPURL|graph|netpic42.zip}} NETPIC v4.20]

Revision as of 15:20, 23 March 2023

File Format
Name NETPIC (Jim Tucker)
Ontology
Extension(s) .npx, others
Released 1995

NETPIC is a DOS utility developed by Jim Tucker. Its main feature is to convert a GIF image file to a COM file that, when executed, displays the image.

Discussion

The generated COM file can optionally use an ASCII-only encoding suitable for inclusion in an email. See Executable envelopes#Transfer-encoded executables for other executable formats of this sort.

Early versions (pre-v1.3) have a -w option to encode an arbitrary COM file in an ASCII-only format. There is also a -e option, to recover the original binary COM file. Later, this feature was moved to a separate NETRUN utility.

ASCII-encoded files are normally wrapped in some plain text instructions, telling you to use a text editor to save the payload data to a .COM file. Most versions have a -z option to omit the wrapper, producing a file that can be executed directly (though you may have to rename it to end in ".COM").

Versions 2.00+ include an NPX2GIF utility that converts an executable image file back to a GIF file.

Identification

Note that some versions, notably 2.00 and 3.10, have not been located for evaluation. We'll assume the text wrapper has been deleted or suppressed, though robust identification would have to account for it.

Binary-encoded GIF→COM files for all versions apparently start with bytes f6 06 2f 01 ff 74 ?? ba 15 01 b4 09 cd 21 b4 07.

Version 1.x ASCII-encoded GIF→COM (NPX) files, without the wrapper, start with "NETPIC.COM" (which apparently is valid x86 machine code).

Version 3.02 ASCII-encoded GIF→COM (NPX) files, without the wrapper, start with "ZRX-sm-sm-Z". The string "NETPIC_COPYRIGHT_1995_BY_JIM_TUCKER" appears in the file, at offset 462 by default, or offset 396 for 3→4 encoding (-3 option).

Version 3.20-4.20 ASCII-encoded GIF→COM (NPX) files, without the wrapper, start with "XPPPYZIQD". This does not distinguish them from NETSEND and some NETRUN files. Files made by NETPIC apparently have "NETPIC" at offset 47.

The ASCII-encoded arbitrary COM files from v1.0's -w option, without the wrapper, start with "COM-PRG.COM". This does not distinguish them from older NETRUN files. Files made by NETPIC have "NETPIC" at offset 520.

Software

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox