2019-07-27 18:25:35 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Toolbox.Library
|
|
|
|
|
{
|
|
|
|
|
public class ImageParameters
|
|
|
|
|
{
|
2019-07-29 15:48:36 -04:00
|
|
|
|
//Flip the image on the Y axis
|
2019-07-27 18:25:35 -04:00
|
|
|
|
public bool FlipY { get; set; }
|
2019-07-29 15:48:36 -04:00
|
|
|
|
|
|
|
|
|
//Dont swap the red and green channels
|
|
|
|
|
public bool DontSwapRG { get; set; }
|
2019-07-27 18:25:35 -04:00
|
|
|
|
}
|
|
|
|
|
}
|