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

Example for web images
  • Home
  • Fotoware Alto
  • 11.14 Schreckhorn
  • Appendix
  • Integrations

Flagging service

13. March 2025

Elaine Foley

Table of Contents

Example for web images

The flagging service automatically identifies and flags the best Content Items for any purpose within your Content Platform. It can be tailored to customer-specific needs and criteria with guidance from Content Platform experts. Key benefits include:

Efficiency & Time Savings: Automatically flags optimal images, eliminating the need for manual selection.

Optimized Quality: Can flag Content Items for web (fast loading, correct formats) and print (high resolution, color profiles).

Compliance: Meets technical requirements (color spaces, resolution, formats) for web and print.

Error Prevention: Reduces mistakes like using low-res images for print or oversized images for web.

Example for web images

In this example I want to have the flagging service identify the best images I have of a museum exhibit for use in an article about a new exhibition.

I created a Layer with a text field that has a display pattern for calculated values. The display pattern code checks if the Content Item has a file extension and width and height range that we prefer. These values are extracted from your image on ingestion into the Content Platform. This is a highly configurable .liquid template so you can of course add in as many criteria as is required for your business case.

Example .liquid display pattern for calculated values

{% assign imageMetadata = outerData.data.imageMetadata %}
{% assign validExtension = ".webp" %}
{% assign fileExtensionLowercase = imageMetadata.fileExtension | downcase %}
{% assign minWidth = 1000 %}
{% assign maxWidth = 1200 %}
{% assign minHeight = 700 %}
{% assign maxHeight = 1000 %}
{% if imageMetadata.width >= minWidth and imageMetadata.width <= maxWidth and imageMetadata.height >= minHeight and imageMetadata.height <= maxHeight and fileExtensionLowercase == validExtension %}
 true
{% else %}
 false
{% endif %}

We also configure the following in our configuration files for this use case:

{
 "identifierTagPath": "basicInformation.mObjects",
 "isMultiTagbox": false,
 "identifierListSchemaId": "basicInformation",
 "flagLayerId": "FlaggingLayer",
 "flagFieldId": "bestImageForWeb",
 "fields": [
   {
     "fieldPath": "flaggingLayer.highestWeighted"
   },
   {
     "fieldPath": "flaggingLayer.secondHighestWeighted"
   },
   {
     "fieldPath": "flaggingLayer.thirdHighestWeighted"
   },
   {
     "fieldPath": "audit.creationDate",
     "sortDirection": "Asc"
   }
 ]
}

The fields are evaluated in order from top to bottom. All the Content Items with the same - in this example - Museum Plus object number are evaluated. If the first field is true on one of these images it will be flagged as best for web.

In case multiple Content Items have the same qualities or no Content Items match those qualities we also take the creationDate timestamp into account. You can configure if you would like the newest or oldest Content Item in the system to receive the best for web flag. Per default the oldest is taken.

The system will carry out these updates in batches. Either when 20 Content Items are affected or after 2 hours. Batch size and Batch delay time are not configurable per customer.

 
alert notify

Was this article helpful?

Yes
No
Give feedback about this article

Related Articles

  • Downloads
  • Managing pending and signed consent forms
  • Asset linking
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