In many Windows setups, when you print directly to a printer, two files are typically created in the windows spool directory "C:\Windows\System32\spool\PRINTERS". A spool file "80021.SPL" and a shadow file "80021.SHD" are examples of these files. The spool file contains the meat and potatoes of the drawing instructions so the printer can print the page. The data in this spool file comes in a smorgasbord of different formats depending on the language technology and the print driver used. However, when you are printing to a printer that's on a print server, a single ".TMP" file is created instead and gets transmitted to the print server. I think its fair to assume that this is just the .SHD and .SPL files combined into a single transport file to get it to the server. However, its unreadable, i'm nto sure if its zipped, encrypted, or what, but I can't decipher it. When printing PDFs you can typically see plain text PostScript instructions in the spool file (.SPL), by just opening it and viewing it in a text editor. You can even send that spool file (.SPL) to a postscript viewer like GhostScript and have it show you the pages drawn on screen. But when the job is all packaged up in a .TMP file, its basically just a binary pile of bits. Does anyone know how to uncompress the data from these transport .TMP spool files?
File format of spool files with .tmp extensions?
8.1k Views Asked by Ultratrunks At
1
There are 1 best solutions below
Related Questions in PRINTING
- How to send ESC/POS commands to thermal printer in Linux
- JTable Printing. How to set page breaks programmatically?
- Why do print and echo behave differently in a "for" loop
- Is there a way to limit the html page to a particular page size?
- How to execute keybord shortcut CTRL + P by clicking a link using jquery
- Chrome print preview disable only link location in footer and header
- C program doesn't print
- how to print a receipt to a particular printer
- How to print Jasper reports from servlets?
- Is it possible to print web content on thermal printer?
- How to print the HTML in Java
- How to get a response of file printing job to user from printer using CUPS in linux
- Android PrintManager get callback
- Business card height and width in pixels on web?
- Microsoft Dynamics Ax 2012 R2 run time issue
Related Questions in POSTSCRIPT
- How to insert a TIFF into PostScript?
- Description of PostScript internal error handler procedures
- Select paper source in php printing solution
- ColorConversionStrategy CMYK adds a white background
- IPython notebook embed postscript
- PostScript error with imagemask and raw data
- C# SVG rendering engine - doesn't convert PostScript font but TrueType font does convert?
- EPS file from R loads very slow in evince
- How to batch convert PostScript files to PNGs via folder action with use of ImageMagick
- Ghostscript - determine the final substituted font at runtime
- Print PDF using GhostScript
- postscript programming regular polygon with diagonals
- PDF to PostScript conversion slow while converting stamped pages
- Python Tkinter postscript wrong size export
- Where are PostScript procedure sets and resources stored?
Related Questions in SPOOL
- Does anyone know how to read gzip file(gzip in thr spoolSourceDirectory) in Flume process?
- Hide SQL > statements in the spool file
- SQL*Plus spool only data and exclude errors
- Write to a file in PL/SQL without spools or utl_file
- Get generated spool file Swiftmailer/Symfony2
- Spooling to a file with a name containing a space and script's parameter in sqlplus?
- Remove blank line from Spool file
- SQLcl unable to set spool to file
- How to select spool's filename from table in sqlplus
- C# Debug Visualizer throug reflection: get value of property contained in complex object using Reflection
- spool with column headers in pipe delimited sqlplus
- How to send 12 000 emails via Swiftmailer in Symfony2?
- how do you spool from a stored procedure that is executed through a database link?
- linux + how to stop files creation under /var/spool/clientmqeueue
- Extra spaces appending in Spooling SQL script in UNIX
Related Questions in SPOOLER
- Monitoring Print Spool Without Using Interop/Unmanaged Code
- What is the best way to make a spool in a directory with pyinotify?
- Clicking Windows Print Button to saving file
- Lots of files .CAB under C:\Windows\System32\Spool
- Script Request - Windows 10 Total Printer Reset Including Registry
- File format of spool files with .tmp extensions?
- uwsgi unable to find the spooler function
- Default printer settings are ignored
- Counting the number of printed pages in C#
- Simulate Printer Errors / Printed Pages Signals
- UWSGI timer and cron decorators running duplicate jobs
- Application is waiting on splwow64.exe
- Is there a way to print directly to printer from Java by bypassing Windows spooler?
- .Net or VB6 - Intercept spooler document and release after correct password
- Adding printer on windows-docker
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I believe that file you have will be an EMF file that is padded with a proprietary MS structure at the beginning. Easiest way to find out if you are dealing with an EMF structure is to look for the ANSI characters ' EMF' in tmp file you have.
Assuming that you do find these characters it is just a matter of removing the proprietary structure data from the beginning of the file then treating it as a standard EMF file. Fortunately all EMF files have a standard header format so it should be reasonably to determine where the EMF file starts.
There is a good description of EMF file headers here