/**************************************************************************** * Copyright 2019 Nreal Techonology Limited. All rights reserved. * * This file is part of NRSDK. * * https://www.nreal.ai/ * *****************************************************************************/ namespace NRKernal.Record { /// Image Encoding Format. public enum PhotoCaptureFileOutputFormat { /// /// PNG Encoding. /// PNG = 0, /// /// JPEG Encoding. /// JPG = 1 } }