ImageTypesInTiff.vb
  1. ''
  2. '' This code is part of Document Solutions for Imaging demos.
  3. '' Copyright (c) MESCIUS inc. All rights reserved.
  4. ''
  5. Imports System.IO
  6. Imports System.Drawing
  7. Imports System.Collections.Generic
  8. Imports System.Linq
  9. Imports System.Numerics
  10. Imports GrapeCity.Documents.Drawing
  11. Imports GrapeCity.Documents.Text
  12. Imports GrapeCity.Documents.Imaging
  13.  
  14. '' This sample takes a color JPEG, converts it to different image types
  15. '' (such as b/w and grayscale) and creates a multi-frame TIFF from those
  16. '' images.
  17. Public Class ImageTypesInTiff
  18. Function GenerateImageStream(
  19. ByVal targetMime As String,
  20. ByVal pixelSize As Size,
  21. ByVal dpi As Single,
  22. ByVal opaque As Boolean,
  23. Optional sampleParams As String() = Nothing) As Stream
  24.  
  25. If Not targetMime = MimeTypes.TIFF Then
  26. Throw New Exception("This sample only supports TIFF output format.")
  27. End If
  28.  
  29. Dim pth = Path.Combine("Resources", "Images", "minerva.jpg")
  30.  
  31. Dim ms = New MemoryStream()
  32. Using tw = New GcTiffWriter(ms),
  33. bmp = New GcBitmap(pth)
  34. '' Using the green channel produces a marginally better result for this photo.
  35. '' For a much better bilevel image produced by dithering, see DitheringInTiff.
  36. Using f = bmp.ToBilevelBitmap(ColorChannel.Green)
  37. tw.AppendFrame(f)
  38. End Using
  39. Using f = bmp.ToGrayscaleBitmap()
  40. tw.AppendFrame(f)
  41. End Using
  42. '' 4bpp allows from 8 to 16 colors, we use max (16)
  43. Using f = bmp.ToIndexed4bppBitmap(16)
  44. tw.AppendFrame(f)
  45. End Using
  46. '' 8bpp allows from 8 to 256 colors, we use max (256)
  47. Using f = bmp.ToIndexed8bppBitmap(256)
  48. tw.AppendFrame(f)
  49. End Using
  50. tw.AppendFrame(bmp)
  51. End Using
  52. ms.Seek(0, SeekOrigin.Begin)
  53. Return ms
  54. End Function
  55.  
  56. Public ReadOnly Property DefaultMime() As String
  57. Get
  58. Return MimeTypes.TIFF
  59. End Get
  60. End Property
  61. End Class
  62.