PixelMode.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #region MIT License
  2. /*Copyright (c) 2012 Robert Rouhani <robert.rouhani@gmail.com>
  3. SharpFont based on Tao.FreeType, Copyright (c) 2003-2007 Tao Framework Team
  4. Permission is hereby granted, free of charge, to any person obtaining a copy of
  5. this software and associated documentation files (the "Software"), to deal in
  6. the Software without restriction, including without limitation the rights to
  7. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  8. of the Software, and to permit persons to whom the Software is furnished to do
  9. so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in all
  11. copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  15. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  16. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  17. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  18. SOFTWARE.*/
  19. #endregion
  20. using System;
  21. namespace SharpFont
  22. {
  23. /// <summary>
  24. /// An enumeration type used to describe the format of pixels in a given bitmap. Note that additional formats may
  25. /// be added in the future.
  26. /// </summary>
  27. public enum PixelMode : byte
  28. {
  29. /// <summary>
  30. /// Value 0 is reserved.
  31. /// </summary>
  32. None = 0,
  33. /// <summary>
  34. /// A monochrome bitmap, using 1 bit per pixel. Note that pixels are stored in most-significant order (MSB),
  35. /// which means that the left-most pixel in a byte has value 128.
  36. /// </summary>
  37. Mono,
  38. /// <summary>
  39. /// An 8-bit bitmap, generally used to represent anti-aliased glyph images. Each pixel is stored in one byte.
  40. /// Note that the number of ‘gray’ levels is stored in the ‘num_grays’ field of the <see cref="FTBitmap"/>
  41. /// structure (it generally is 256).
  42. /// </summary>
  43. Gray,
  44. /// <summary>
  45. /// A 2-bit per pixel bitmap, used to represent embedded anti-aliased bitmaps in font files according to the
  46. /// OpenType specification. We haven't found a single font using this format, however.
  47. /// </summary>
  48. Gray2,
  49. /// <summary>
  50. /// A 4-bit per pixel bitmap, representing embedded anti-aliased bitmaps in font files according to the
  51. /// OpenType specification. We haven't found a single font using this format, however.
  52. /// </summary>
  53. Gray4,
  54. /// <summary>
  55. /// An 8-bit bitmap, representing RGB or BGR decimated glyph images used for display on LCD displays; the
  56. /// bitmap is three times wider than the original glyph image. See also <see cref="RenderMode.Lcd"/>.
  57. /// </summary>
  58. Lcd,
  59. /// <summary>
  60. /// An 8-bit bitmap, representing RGB or BGR decimated glyph images used for display on rotated LCD displays;
  61. /// the bitmap is three times taller than the original glyph image. See also
  62. /// <see cref="RenderMode.VerticalLcd"/>.
  63. /// </summary>
  64. VerticalLcd
  65. }
  66. }