ImageTypesInTiff.cs
  1. //
  2. // This code is part of Document Solutions for Imaging demos.
  3. // Copyright (c) MESCIUS inc. All rights reserved.
  4. //
  5. using System;
  6. using System.IO;
  7. using System.Drawing;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using GrapeCity.Documents.Drawing;
  11. using GrapeCity.Documents.Text;
  12. using GrapeCity.Documents.Imaging;
  13.  
  14. namespace DsImagingWeb.Demos
  15. {
  16. // This sample takes a color JPEG, converts it to different image types
  17. // (such as b/w and grayscale) and creates a multi-frame TIFF from those
  18. // images.
  19. public class ImageTypesInTiff
  20. {
  21. public string DefaultMime { get => Common.Util.MimeTypes.TIFF; }
  22.  
  23. public Stream GenerateImageStream(string targetMime, Size pixelSize, float dpi, bool opaque, string[] sampleParams = null)
  24. {
  25. if (targetMime != Common.Util.MimeTypes.TIFF)
  26. throw new Exception("This sample only supports TIFF output format.");
  27.  
  28. var path = Path.Combine("Resources", "Images", "minerva.jpg");
  29.  
  30. var ms = new MemoryStream();
  31. using (var tw = new GcTiffWriter(ms))
  32. using (var bmp = new GcBitmap(path))
  33. {
  34. // Using the green channel produces a marginally better result for this photo.
  35. // For a much better bi-level image produced by dithering, see DitheringInTiff.
  36. using (var f = bmp.ToBilevelBitmap(ColorChannel.Green))
  37. tw.AppendFrame(f);
  38. using (var f = bmp.ToGrayscaleBitmap())
  39. tw.AppendFrame(f);
  40. // 4bpp allows from 8 to 16 colors, we use max (16):
  41. using (var f = bmp.ToIndexed4bppBitmap(16))
  42. tw.AppendFrame(f);
  43. // 8bpp allows from 8 to 256 colors, we use max (256):
  44. using (var f = bmp.ToIndexed8bppBitmap(256))
  45. tw.AppendFrame(f);
  46. tw.AppendFrame(bmp);
  47. }
  48. ms.Seek(0, SeekOrigin.Begin);
  49. return ms;
  50. }
  51. }
  52. }
  53.