@@ -1514,6 +1514,7 @@ public PixFormat(Type type, Col.Format format)
1514
1514
1515
1515
public static readonly PixFormat ByteBW = new PixFormat ( typeof ( byte ) , Col . Format . BW ) ;
1516
1516
public static readonly PixFormat ByteGray = new PixFormat ( typeof ( byte ) , Col . Format . Gray ) ;
1517
+ public static readonly PixFormat ByteGrayAlpha = new PixFormat ( typeof ( byte ) , Col . Format . GrayAlpha ) ;
1517
1518
public static readonly PixFormat ByteRG = new PixFormat ( typeof ( byte ) , Col . Format . RG ) ;
1518
1519
public static readonly PixFormat ByteBGR = new PixFormat ( typeof ( byte ) , Col . Format . BGR ) ;
1519
1520
public static readonly PixFormat ByteRGB = new PixFormat ( typeof ( byte ) , Col . Format . RGB ) ;
@@ -1524,6 +1525,7 @@ public PixFormat(Type type, Col.Format format)
1524
1525
1525
1526
public static readonly PixFormat SByteBW = new PixFormat ( typeof ( sbyte ) , Col . Format . BW ) ;
1526
1527
public static readonly PixFormat SByteGray = new PixFormat ( typeof ( sbyte ) , Col . Format . Gray ) ;
1528
+ public static readonly PixFormat SByteGrayAlpha = new PixFormat ( typeof ( sbyte ) , Col . Format . GrayAlpha ) ;
1527
1529
public static readonly PixFormat SByteRG = new PixFormat ( typeof ( sbyte ) , Col . Format . RG ) ;
1528
1530
public static readonly PixFormat SByteBGR = new PixFormat ( typeof ( sbyte ) , Col . Format . BGR ) ;
1529
1531
public static readonly PixFormat SByteRGB = new PixFormat ( typeof ( sbyte ) , Col . Format . RGB ) ;
@@ -1533,6 +1535,7 @@ public PixFormat(Type type, Col.Format format)
1533
1535
public static readonly PixFormat SByteRGBP = new PixFormat ( typeof ( sbyte ) , Col . Format . RGBP ) ;
1534
1536
1535
1537
public static readonly PixFormat UShortGray = new PixFormat ( typeof ( ushort ) , Col . Format . Gray ) ;
1538
+ public static readonly PixFormat UShortGrayAlpha = new PixFormat ( typeof ( ushort ) , Col . Format . GrayAlpha ) ;
1536
1539
public static readonly PixFormat UShortRG = new PixFormat ( typeof ( ushort ) , Col . Format . RG ) ;
1537
1540
public static readonly PixFormat UShortBGR = new PixFormat ( typeof ( ushort ) , Col . Format . BGR ) ;
1538
1541
public static readonly PixFormat UShortRGB = new PixFormat ( typeof ( ushort ) , Col . Format . RGB ) ;
@@ -1542,6 +1545,7 @@ public PixFormat(Type type, Col.Format format)
1542
1545
public static readonly PixFormat UShortRGBP = new PixFormat ( typeof ( ushort ) , Col . Format . RGBP ) ;
1543
1546
1544
1547
public static readonly PixFormat ShortGray = new PixFormat ( typeof ( short ) , Col . Format . Gray ) ;
1548
+ public static readonly PixFormat ShortGrayAlpha = new PixFormat ( typeof ( short ) , Col . Format . GrayAlpha ) ;
1545
1549
public static readonly PixFormat ShortRG = new PixFormat ( typeof ( short ) , Col . Format . RG ) ;
1546
1550
public static readonly PixFormat ShortBGR = new PixFormat ( typeof ( short ) , Col . Format . BGR ) ;
1547
1551
public static readonly PixFormat ShortRGB = new PixFormat ( typeof ( short ) , Col . Format . RGB ) ;
@@ -1551,6 +1555,7 @@ public PixFormat(Type type, Col.Format format)
1551
1555
public static readonly PixFormat ShortRGBP = new PixFormat ( typeof ( short ) , Col . Format . RGBP ) ;
1552
1556
1553
1557
public static readonly PixFormat UIntGray = new PixFormat ( typeof ( uint ) , Col . Format . Gray ) ;
1558
+ public static readonly PixFormat UIntGrayAlpha = new PixFormat ( typeof ( uint ) , Col . Format . GrayAlpha ) ;
1554
1559
public static readonly PixFormat UIntRG = new PixFormat ( typeof ( uint ) , Col . Format . RG ) ;
1555
1560
public static readonly PixFormat UIntBGR = new PixFormat ( typeof ( uint ) , Col . Format . BGR ) ;
1556
1561
public static readonly PixFormat UIntRGB = new PixFormat ( typeof ( uint ) , Col . Format . RGB ) ;
@@ -1560,6 +1565,7 @@ public PixFormat(Type type, Col.Format format)
1560
1565
public static readonly PixFormat UIntRGBP = new PixFormat ( typeof ( uint ) , Col . Format . RGBP ) ;
1561
1566
1562
1567
public static readonly PixFormat IntGray = new PixFormat ( typeof ( int ) , Col . Format . Gray ) ;
1568
+ public static readonly PixFormat IntGrayAlpha = new PixFormat ( typeof ( int ) , Col . Format . GrayAlpha ) ;
1563
1569
public static readonly PixFormat IntRG = new PixFormat ( typeof ( int ) , Col . Format . RG ) ;
1564
1570
public static readonly PixFormat IntBGR = new PixFormat ( typeof ( int ) , Col . Format . BGR ) ;
1565
1571
public static readonly PixFormat IntRGB = new PixFormat ( typeof ( int ) , Col . Format . RGB ) ;
@@ -1569,6 +1575,7 @@ public PixFormat(Type type, Col.Format format)
1569
1575
public static readonly PixFormat IntRGBP = new PixFormat ( typeof ( int ) , Col . Format . RGBP ) ;
1570
1576
1571
1577
public static readonly PixFormat HalfGray = new PixFormat ( typeof ( Half ) , Col . Format . Gray ) ;
1578
+ public static readonly PixFormat HalfGrayAlpha = new PixFormat ( typeof ( Half ) , Col . Format . GrayAlpha ) ;
1572
1579
public static readonly PixFormat HalfRG = new PixFormat ( typeof ( Half ) , Col . Format . RG ) ;
1573
1580
public static readonly PixFormat HalfBGR = new PixFormat ( typeof ( Half ) , Col . Format . BGR ) ;
1574
1581
public static readonly PixFormat HalfRGB = new PixFormat ( typeof ( Half ) , Col . Format . RGB ) ;
@@ -1578,6 +1585,7 @@ public PixFormat(Type type, Col.Format format)
1578
1585
public static readonly PixFormat HalfRGBP = new PixFormat ( typeof ( Half ) , Col . Format . RGBP ) ;
1579
1586
1580
1587
public static readonly PixFormat FloatGray = new PixFormat ( typeof ( float ) , Col . Format . Gray ) ;
1588
+ public static readonly PixFormat FloatGrayAlpha = new PixFormat ( typeof ( float ) , Col . Format . GrayAlpha ) ;
1581
1589
public static readonly PixFormat FloatRG = new PixFormat ( typeof ( float ) , Col . Format . RG ) ;
1582
1590
public static readonly PixFormat FloatBGR = new PixFormat ( typeof ( float ) , Col . Format . BGR ) ;
1583
1591
public static readonly PixFormat FloatRGB = new PixFormat ( typeof ( float ) , Col . Format . RGB ) ;
@@ -1587,6 +1595,7 @@ public PixFormat(Type type, Col.Format format)
1587
1595
public static readonly PixFormat FloatRGBP = new PixFormat ( typeof ( float ) , Col . Format . RGBP ) ;
1588
1596
1589
1597
public static readonly PixFormat DoubleGray = new PixFormat ( typeof ( double ) , Col . Format . Gray ) ;
1598
+ public static readonly PixFormat DoubleGrayAlpha = new PixFormat ( typeof ( double ) , Col . Format . GrayAlpha ) ;
1590
1599
public static readonly PixFormat DoubleRG = new PixFormat ( typeof ( double ) , Col . Format . RG ) ;
1591
1600
public static readonly PixFormat DoubleBGR = new PixFormat ( typeof ( double ) , Col . Format . BGR ) ;
1592
1601
public static readonly PixFormat DoubleRGB = new PixFormat ( typeof ( double ) , Col . Format . RGB ) ;
0 commit comments