SmartFace Station branding
It is possible to white label the SmartFace Station web application. You can change following visual components and brand the application with your own trademark:
product logo
company logo
product favicon
title of the product
name of the SmartFace Platform
feedback display animation images
feedback display notification texts and images
To change listed visual components, access the installation folder of SmartFace Station: C:\Program Files (x86)\Smartface Station\branding
. In the folder, you can replace the icons and rename the titles in .json
file.
Product logo
The product logo is located in the top left corner of the application:
The logo is stored in the branding/logo-product.png
file. The supported file type is .png
. The size of the icon should be kept similar to the original file, but it does not have to match the size exactly.
Company logo
Company logo is located at the bottom of the Configuration page:
The logo is stored in the branding/logo-company.svg
file. The supported file type is .svg
. The size of the icon should be kept similar to the original file, but it doesn’t have to match the size exactly.
Product favicon
Product favicon used for the browser tab:
The favicon is stored in the branding/favicon-product.ico
file. Supported file type is .ico
. The favicon should be a valid favicon.ico
file used by the browser.
Title of the product
The title of the product used in browser tab/window:
The title of the product is stored in the branding/naming-product.json
file. You can change it by changing the value of the windowTitle
field:
{
"windowTitle": "SmartFace Station"
}
The name of the SmartFace Platform is displayed under Configuration:
The name of the SmartFace Platform is stored in the branding/naming-product.json
file. You can change it by changing the value of the configSection
field:
{
"configSection": "SmartFace Platform"
}
Feedback display
Feedback display animation images before Idle state
The images are stored in branding/feedback-display-top-image.svg
and branding/feedback-display-bottom-image.svg
files. The supported file type is .svg . The size of the image should be kept similar to the original file, but it doesn’t have to match the size exactly.
Feedback display animation in the idle state
The animation image is stored in SmartFace Station /branding/empty-display.gif
file. The supported file type is .gif
. The animation should be kept under this name: empty-display.gif
Feedback display Welcome screen
The notifcation text of the Welcome screen is stored in the branding/naming-product.json
file. You can change it by changing the value of the "feedbackDisplayAccessGrantedWelcomeMessage"
field.
Feedback display Put on mask screen
The notifcation text of the Put on mask screen is stored in the branding/naming-product.json
file. You can change it by changing the value of the "feedbackDisplayPutOnYourMaskMessage"
field.
Feedback display Access not allowed screen
The notification image is stored in SmartFace Station /branding/feedback-display-access-denied-not-identified.svg
file. The supported file type is .svg
. The image should be kept under this name: feedback-display-access-denied-not-identified.svg
The notifcation text of the Access not allowed screen is stored in the branding/naming-product.json
file. You can change it by changing the value of the "feedbackDisplayDeniedNotIdentifiedMessage"
field.
Feedback display Access not granted screen
The notification image is stored in SmartFace Station /branding/feedback-display-access-denied-block-or-spoof.svg
file. The supported file type is .svg
. The image should be kept under this name: feedback-display-access-denied-block-or-spoof.svg
The notifcation text of the Access not allowed screen is stored in the branding/naming-product.json
file. You can change it by changing the value of the "feedbackDisplayDeniedBlockedOrSpoofMessage"
field.
Feedback display Error screen
The error image is stored in SmartFace Station /branding/feedback-display-error.svg
file. The supported file type is .svg
. The image should be kept under this name: feedback-display-error.svg
The notifcation text of Error screen is stored in the branding/naming-product.json
file. You can change it by changing the value of the "feedbackDisplayErrorMessage"
field.
Disabling a screen
On top of a modification of an existing graphics it is possible to disable a screen, such as the Access not allowed screen. To do so we need to replace the /branding/feedback-display-access-denied-not-identified.svg
file with an empty valid svg file and to update the feedbackDisplayDeniedNotIdentifiedMessage
to be empty in the branding/naming-product.json
file. These steps can be applied to other screens too.
If needed such empty svg file can be easily created in a text editor having the content of the file as:
<svg xmlns="http://www.w3.org/2000/svg"></svg>