• Contact
  • Company
  • Login / My Account
  • Shopping Cart (0)
Document Conversion Made Easy!
Peernet Menu
  • Products
      • Virtual Printers
        • tiff-image-printer-iconTIFF Image Printer – Create TIFF Images
        • raster-image-printer-iconRaster Image Printer – Create TIFF, PDF, JPEG, etc.
        • pdf-image-printer-iconPDF Image Printer – Create Searchable PDF
      • PDF Editor
        • pdf-creator-plus-iconPDF Creator Plus – Merge, Edit, Create Searchable PDF
      • Batch Converters
        • document-conversion-service-iconDocument Conversion Service – Unattended 24/7 Batch Converter
        • file-conversion-center-iconFile Conversion Center – Desktop Batch Converter
      • Reporting Software
        • peernet-reports-iconPEERNET Reports – Barcode, Report and Label Software
      • enterprise-licensingEnterprise Licensing for your Corporation
      • discounts-multiple-licensesDiscounts for Purchasing Multiple Licenses
      • distribute-bundle-peernet-softwareDistribute PEERNET Software Bundled with your Product
  • Purchase
      • Purchase Virtual Printers
        • tiff-image-printer-iconTIFF Image Printer – Create TIFF Images
        • raster-image-printer-iconRaster Image Printer – Create TIFF, PDF, JPEG etc.
        • pdf-image-printer-iconPDF Image Printer – Create Searchable PDF
      • Purchase PDF Editor
        • pdf-creator-plus-iconPDF Creator Plus – Merge, Edit, Create Searchable PDF
      • Purchase Batch Converters
        • document-conversion-service-iconDocument Conversion Service – Unattended 24/7 Batch Converter
        • file-conversion-center-iconFile Conversion Center – Desktop Batch Converter
      • Purchase Reporting Software
        • peernet-reports-iconPEERNET Reports – Barcode, Report and Label Software
      • peernet-online-store-purchase-optionsPurchase Options
      • peernet-software-license-levelsLicense Levels
      • peernet-software-purchase-resellerFind Resellers
      • peernet-software-sales-faqsSales FAQ
  • Learn & Support
        • peernet-help-centerTutorials
          • Learn the Basics or Go Beyond with Video Tutorials, FAQs and Guides

            At PEERNET we pride ourselves on providing the best support and the fastest response times in the industry.
          • Select Software Tutorials:
              • tiff-image-printer-iconTIFF Image Printer
              • raster-image-printer-iconRaster Image Printer
              • pdf-image-printer-iconPDF Image Printer
              • pdf-creator-plus-iconPDF Creator Plus
              • document-conversion-service-iconDocument Conversion Service
              • file-conversion-center-iconFile Conversion Center
              • peernet-reports-iconPEERNET Reports
        • peernet-software-faqsSales FAQ
          • Popular Topics

            Find all the answers you need to our most frequently asked questions.
              • Download & Install
                • How do I download software I already purchased?
              • Purchasing & Renewing
                • How do I purchase PEERNET software?
                • What license level do I need?
                • How do I add licenses to an existing serial number?
                • How do I renew my annual subscription?
              • Licensing & Operating
                • How do I activate my new PEERNET software?
                • How do I activate my software without an internet connection?
                • Where do I find my serial number?
                • How do I move my software to a new computer?
                • How do I update/upgrade my software to the latest release?
            • Read all Sales FAQs
  • Blog
  • Menu Menu

Setting Conversion Settings in Document Conversion Service

August 13, 2013/by Robert Massart

Need: You have a specific requirement for the type of file you need to create, or you need to be able to vary the type of file you create on the fly.

Solution: All files created by Document Conversion Service use a collection of settings defined as name-value pairs to control how the output files are created.

  • These settings are most often combined into a conversion profile file, an XML file that is stored on your computer.
  • A default location for all profiles is created when you install Documents Conversion Service; files can be saved in that location and referenced by name or stored anywhere on your computer and referenced by full path name.
  • Several sample profiles for common conversion outputs are included with Document Conversion Service. These can be modified to suite or copied and edited as needed.
  • The settings shown below are just a sampling of the conversion settings that can be used

Sample Profile – TIFF 200dpi OptimizedColor.xml

<?xml version="1.0" encoding="utf-8"?>
<Profile Type="0"
    DisplayName="TIFF 200dpi OptimizedColor"
    Description ="Creates TIFF images at 200dpi. Color optimized to reduce file size.">
  <Settings>

    <!-- Output file options -->
    <add Name="Devmode settings;Resolution" Value="200"/>
    <add Name="Save;Output File Format" Value="TIFF Multipaged"/>
    <add Name="Save;Append" Value="0"/>
    <add Name="Save;Color reduction" Value="Optimal"/>
    <add Name="Save;Dithering method" Value="Halftone"/>

    <!-- TIFF Compression Options -->
    <add Name="TIFF File Format;BW compression" Value="Group4"/>
    <add Name="TIFF File Format;Color compression" Value="LZW RGB"/>
    <add Name="TIFF File Format;Indexed compression" Value="LZW"/>
    <add Name="TIFF File Format;Greyscale compression" Value="LZW"/>
    <add Name="JPEG File Format;Color compression" Value="Medium Quality"/>
    <add Name="JPEG File Format;Greyscale compression" Value="High Quality"/>
    <add Name="Image Options;Fax" Value="0"/>

  </Settings>
</Profile>

How this collection of settings is passed to Document Conversion Service depends on your use.

  • If you are using the Watch Folder, the collection of settings is passed as part of the definition for each folder(https://www.peernet.com/document-conversion-service/userguide/configuring_the_watch_folder_s.htm) and is used for every file dropped into that folder.
  • If you are using the DCS Command Line Tools the settings are passed by specifying the name of the XML file, either just the base name if the file is in the default profile location or the full path to a profile file you have saved elsewhere on your computer.
  • If you are using the PEERNET.ConvertUtility .NET library
    • The settings can be passed by specifying the name of the XML file same as for the command line tools or –
    • You can create the list of settings in your .NET code and pass that down.
    • The advantage of the profile is it can be changed without having to recompile your code, but creating the collection of settings in your code also allows you to dynamically change conversion settings on a per file or per folder basis.

The available settings are separated into categories:

  • General conversion options, such as page range
  • Settings to control the paper size and resolution of created image are listed under the Devmode settings collection.
  • Control the bit depth, color mode and dithering options from the Save collection.
  • Individual options for output files are listed in the collections for TIFF Options, PDF Options, PDF Security and JPG Options.
  • Control fax output from the collection of settings for Image Options.
  • Image processing such as trimming, cropping, resampling and copying.
  • Endorsements can be added to each page.
  • Individual options to control each converter. Some converters have more control over how their documents are printed than others.
    • The Word converter can control if the document or document and markup are printed, how revisions are shown if they are printed, it can change the margins and page layout, dates and filename fields can be replaced with custom strings, and much more.
    • The Adobe Reader converter can only control what is visible on the page when the PDF file is printed – document, document and stamps or document and markup.
    • See the section for each individual converter for their customizable settings.
https://www.peernet.com/wp-content/uploads/DCSBox-for-blog.jpg 450 1516 Robert Massart https://www.peernet.com/wp-content/uploads/peernet-logo.png Robert Massart2013-08-13 19:54:402019-07-16 15:00:31Setting Conversion Settings in Document Conversion Service
  • Document Conversion Service
  • TIFF Image Printer
  • Raster Image Printer
  • PDF Image Printer
  • PDF Creator Plus
  • File Conversion Center
  • PEERNET Reports
Search Search

Recent Posts

  • PNSrv11Lib to PNSrv12Lib: Migration Made Easy
  • Migrating to Version 12: Compatibility Mode Quick Start Guide
  • Well Logs: Stitch PDF Pages into a Continuous TIFF Image
  • Dynamic Stamp Content
  • Convert to PDF: The Power of On-Premise PDF Creation

INTERESTING LINKS

Below are some interesting links for you! Enjoy your stay :)

RSS Feed Logo RSS Feed Logo Subscribeto RSS Feed

OUR PRODUCTS

  • Document Conversion Service
  • TIFF Image Printer
  • Raster Image Printer
  • PDF Image Printer
  • PDF Creator Plus
  • File Conversion Center
  • PEERNET Reports

LATEST NEWS

  • PNSrv11Lib to PNSrv12Lib: Migration Made EasyMarch 14, 2025 - 2:10 pm
  • Migrating to Version 12: Compatibility Mode Quick Start GuideMarch 14, 2025 - 2:09 pm
  • Well Logs: Stitch PDF Pages into a Continuous TIFF ImageMarch 14, 2025 - 2:08 pm
  • Dynamic Stamp ContentNovember 4, 2024 - 4:47 pm

BUSINESS INFORMATION

Toll Free: 1-800-883-7980 North America

Tel: 1-613-224-6894

Our office hours are Monday to Friday, from 0900 hrs to 1700 hrs, Eastern Standard Time.

Email Address: [email protected]
Copyright © 1997-2026. All rights reserved. Terms and Conditions | Disclaimer | Privacy Policy | Trademarks.
PEERNET® is a registered trademark of PEERNET Inc.
  • Link to Youtube
  • Link to Rss this site
  • Products
  • Purchase
  • Company
  • Contact
Link to: Query on TIFF files Link to: Query on TIFF files Query on TIFF filesTIFF Image Printer box shot Link to: Info-graphic on Document Conversion Software Options Link to: Info-graphic on Document Conversion Software Options Document Conversion Service box shotInfo-graphic on Document Conversion Software Options
Scroll to top Scroll to top Scroll to top