PhotoCaptureFileOutputFormat.cs 1.0 KB

1234567891011121314151617181920212223242526
  1. /****************************************************************************
  2. * Copyright 2019 Nreal Techonology Limited. All rights reserved.
  3. *
  4. * This file is part of NRSDK.
  5. *
  6. * https://www.nreal.ai/
  7. *
  8. *****************************************************************************/
  9. namespace NRKernal.Record
  10. {
  11. /// <summary> Image Encoding Format. </summary>
  12. public enum PhotoCaptureFileOutputFormat
  13. {
  14. /// <summary>
  15. /// PNG Encoding.
  16. /// </summary>
  17. PNG = 0,
  18. /// <summary>
  19. /// JPEG Encoding.
  20. /// </summary>
  21. JPG = 1
  22. }
  23. }