Resolution, calibration, and other settings.
When you submit a job to the DFE via dragging and dropping onto the PLUS symbol, or by clicking the PLUS symbol
Or by copying a PDF to the watched network folder
You are brought to the Job Editor:
If you want to run this job at 600 DPI, you're in luck!
There are some other choices too. But you might want to make your own. This dropdown menu can have things added to it by the Navigator Configurations Editor:
Head to the NCE (Navigator Configuration Editor). There is a shortcut on your desktop.
There are a handful of Setups that ship with the product.
If you want to add one, click
If you want to make a new one that is based on an existing one so you can just make one or two edits, click
If you want to delete one, click
After you create a Render Config, go to the TIFF tab and make sure things match up to what you want.
Make sure the Resolutions match what your Render Config name implies. Choose your screening and your bit depth. If you aren't sure what to do with anti-aliasing and byte ordering, leave them be. Compression should be at LZW unless your printer controller specifically requires something else.
How to get your TIFFs named properly is the subject of the next section. If you want to just get to work then use what I have in the picture above. It's a pretty good choice. %b_%04p_%s.tif
TIFF Naming
The TIFF Naming feature allows for dynamic and configurable filename generation based on job-specific and content-specific parameters. The naming convention utilizes a combination of literal characters and formatting tokens to build unique filenames for each output file. These tokens are defined as follows:
Format Tokens
The following tokens can be used within the filename format to dynamically insert job-related and content-specific data:
%b
- Basename of the input file (excludes extension).%f
- Full Input Filename, including extension.%j
- Job Name. (from PS or PDF job name or job title)%J
- Job Name or Input Filename, defaults to the input filename if the job name is empty.%n
- Separation Number.%p
- Page Number.%s
- Separation Name.%0wy
- Zero-padded Numeric Format of widthw
applied to tokeny
(valid for numeric tokens like%n
,%N
,%p)
%<xy
- Remove Characters Before First Instance ofx
, in expanded formaty
.%<<xy
- Remove Characters Before Last Instance ofx
, in expanded formaty
.
Examples
A good standard default: %b_%04p_%s.tif
Input job name: MyPrintJob
Input filename: MyPrintJob.pdf
Output: MyPrintJob_0001_Black.tif
An alternate: %f_Pg%04p_%s.tif
Input job name: MyBigFloweryPrint
Input filename: MyPrintJob.pdf
Output: MyPrintJob.pdf_Pg0001_Black.tif
Filename Format:
Job-%j_Page-%02p_Sep-%s.tif
Input job name: MyBigFloweryPrint
Input filename: MyPrintJob.pdf
- Output:
Job-
MyBigFloweryPrint
_Page-01_Sep-Cyan.tif
Filename Format:
%J.tif
Job Name:
SampleJob
Output:
SampleJob.tif
Filename Format:
%J_pg-%04p_%s.tif
Output of 1st sep, page 1:
MyPrintJob_pg-0001_Cyan.tif
Output of 4th sep, page 1050: MyPrintJob_pg-1050_Black.tif
Best Practices
- Avoid Ambiguity: Use zero-padded numeric formats (e.g.,
%04p
) for consistent sorting. - Contextual Information: Incorporate
%j
or %b, and%s
to ensure filenames provide clear job and separation identification.
Appropriate use of this feature simplifies integration with automated workflows, reducing manual intervention and ensuring consistent output naming conventions for all jobs.