Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  1. Fotoware Alto
    • 11.14 Schreckhorn
    • Terminology
    • Solutions
    • User Guide - Deutsch
    • User Guide - English
    • API Changelog
  2. Fotoware Veloz
    • Managing users and groups
    • Configuring archives
    • Configuring workflows
    • Configuring site behavior
    • Navigating and searching to find your assets
    • Working with your assets
    • Editing asset metadata
    • Uploading files
    • Version Control in Fotoware
    • Albums - Creating and sharing collections
    • Placing assets in a CMS
    • Working with the Fotoware Pro interface
    • Using the Fotoware plugins
    • Consent management
    • User guide to FotoWeb for iPad (Legacy)
    • Picture conferencing with FotoWeb Screens (Legacy)
    • What's what in Fotoware
    • GDPR
    • Fotoware Veloz releases
    • Activity Exports
    • Fotoware Example Workflows
  3. Fotostation
    • Getting started with Fotostation
    • Viewing, selecting and sorting files
    • Managing your assets with archives
    • Adding metadata to assets
    • Searching for assets
    • Working with your assets
    • Version Control in Fotostation
    • Automating tasks with Actions
    • Configuring metadata fields and editors
    • Configuring Fotostation
    • Configuring Fotostation for multi-user environments
    • Troubleshooting Fotostation
  4. Fotoware Flow
    • What is Flow?
    • Getting started
    • Flow dictionary
  5. Fotoware On-Premises
    • Getting started
    • Index Manager
    • FotoWeb
    • Color Factory
    • Connect
    • Operations Center Guide
  6. Integrations and APIs
    • The Fotoware API
    • Creating integrations using embeddable widgets
    • Authorizing applications using OAuth
    • Auto-tagging
    • FotoWeb Drag and Drop export
    • Integration using webhooks
    • Optimizely and Episerver plugin documentation
    • User Interface Integrations
  7. Fotoware Mobile
    • User guide for Fotoware Mobile for iPhone and Android
    • User guide to FotoWeb for iPad (Legacy)
    • User guide to FotoWeb for iPhone and Android (Legacy)

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Support

Table of Contents

About Job request files Process result files Fotoware Job Request File (JRF) specification Process Result File (PRF) specification
  • Home
  • Fotoware On-Premises
  • Color Factory
  • Integration and APIs (On-Premises)

Job Request File specification

04. March 2025

Elaine Foley

Table of Contents

About Job request files Process result files Fotoware Job Request File (JRF) specification Process Result File (PRF) specification

This documents the Job Request File format that third-party systems can create integrate with a Color Factory server. It also includes the specs of the PRF (Process Results file) that Color Factory returns to allow the other system to pick up the output file and determine whether the processing succeeded.

About Job request files

The Job Request File (JRF) is an ascii file that contains the full local or UNC (Universal Naming Convention) path for an image file that is to be processed by Color Factory. It also contains the full path of the resulting output file.

The moment a JRF is saved in a Color Factory hotfolder it is read and the processing starts. This means that the file to be processed must be in place before the JRF is created.The output file will be given a temporary name during the processing and renamed to the proper name when the output file is complete. If a file with the same name already exists it will be overwritten. The input and output filenames can be the same.

Process result files

Color Factory can generate a result file that will contain the name of the output file and an error code with description. 
The result file will have the same name and path as the JRF but with the extension PRF (Process Result File).

The JRF file is always removed by Color Factory.

The syntax of the files is the same as a Windows “INI” file. This will give us the possibility to extend the functionality at a later stage.

A JRF is recognized by Color Factory as such if the file begins with the string “[JRF]”.

Fotoware Job Request File (JRF) specification

The complete specification for a Job Request File with a description of what each entry does below.

[JRF]
/* section name and magic string */
M_VERSION=2
/* Current version */
M_INPUT_FILE=\\SERVER1\OPI\HIRES\Nice Image.jpg
/* Full path and filename of input file */
M_OUTPUT_FILE=\\SERVER1\OPI\HIRES\Nice Image.jpg
/* If left empty, the channel output folder will be used
M_REMOVE_INPUT_FILE=1
/* 0 =do not remove input file, 1 =remove input file */
M_SET_EXTENSION=1
/* 0 = use exact filename in M_OUTPUT_FILE, 1 = Set Extension depending of file format */
M_RETURN_PRF=1
/* 1 = ON , 0 = OFF */
O_INPUT_UID=xxxxxxxxxxxxxx
/* Search for image with this UID. If UID is present and found it is used instead of M_INPUT_FILE*/
O_INPUT_OID=xxxx
/* Owner ID. Can be used for HTTP search*/
O_OUTPUT_IMAGENAME=Image.jpg
/* Name to use on output file if M_OUTPUT_FILE is left empty */
O_COPY_INPUT_FILE=\\SERVER1\OPI\BACKUP\Nice Image.jpg
/*Copy the input file to this location */
O_OUTPUT_COLOR=CMYK
/* can be CMYK , RGB or BW */
O_OUTPUT_RES_DPI=180
/* output resolution in DPI */
O_AUTOCONTRAST=1
/* 1 = ON , 0 = OFF */
O_UNSHARPMASK=1
/* 1 = ON , 0 = OFF */
/* Crop and Width values can also be given as floating pointvalues. Note that when FP is used a dot ‘.’ must appear in the value string.
FP values must not be multiplied by 100 or 1000. Max values for Crop is 100.0 and width values are given in inch or cm.*/
O_CROP_LEFT=1500
/* left crop 0 - 10000. 10000 = 100% of width */
O_CROP_TOP=1500
/* top crop 0 - 10000. 10000 = 100% of height */
O_CROP_RIGHT=5000
/* right crop 0 - 10000. 10000 = 100% of width */
O_CROP_BOTTOM=5000
/* bottom crop 0 - 10000. 10000 = 100% of height */
O_WIDTH_INCH=4500
/* width of crop area in Inch * 1000 */
O_WIDTH_CM=4500
/* width of crop area in cm * 1000 */
O_HEIGHT_INCH=4500
/* Height of crop area in Inch * 1000 .*/
O_HEIGHT_CM=4500
/* Height of crop area in cm * 1000 */
O_ROTATE=90
/* rotation in degrees, values between 0-360 */
O_WIDTH_PIXEL=1024
/*Output width in pixels. If width is missing, the output width will be floating based on the height value.*/
O_HEIGHT_PIXEL=1024
/*Output height in pixels. If height is missing, the output height will be floating based on the width value.*/

Process Result File (PRF) specification

[PRF]
/* section name and magic string */
OUTPUT_FILE=\\SERVER1\OPI\HIRES\Nice Image.jpg
ERROR=1
/* O = no error, 1 = process failed */
ERROR_STRING=Invalid Path
/* Error description generated by Color Factory */
 
 
employment request position specification

Was this article helpful?

Yes
No
Give feedback about this article

Related Articles

  • About Job Request Files and other XML formats
  • Content Relation Items Changed Condition
  • Requirements for using the Archive Agent API
eco-lighthouse-miljøfyrtårn

Company

  • About us
  • Resellers
  • Careers
  • Contact us

Help & support

  • Support center
  • Consultancy
  • Tech partners
  • Fotostation
  • System status

Trust Center

  • Legal
  • Security
  • Sustainability & ESG

Locations

Fotoware AS (HQ)
Tollbugata 35
0157 OSLO
Norway
FotoWare Switzerland AG
Industriestrasse 25
5033 Buchs (AG)
Switzerland

Copyright 2025 Fotoware All rights reserved.

  • Terms of service
  • Privacy policy
  • Cookie policy

Knowledge Base Software powered by Helpjuice

Expand