AutoContrast.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 System.Numerics;
  11. using GrapeCity.Documents.Drawing;
  12. using GrapeCity.Documents.Text;
  13. using GrapeCity.Documents.Imaging;
  14. using GCTEXT = GrapeCity.Documents.Text;
  15. using GCDRAW = GrapeCity.Documents.Drawing;
  16.  
  17. namespace DsImagingWeb.Demos
  18. {
  19. // This sample demonstrates how to use GrayscaleBitmap.AutoContrast()
  20. // to automatically adjust the contrast of a black and white image.
  21. public class AutoContrast
  22. {
  23. public GcBitmap GenerateImage(Size pixelSize, float dpi, bool opaque, string[] sampleParams = null)
  24. {
  25. opaque = true;
  26. var bmp = new GcBitmap(pixelSize.Width, pixelSize.Height, opaque, dpi, dpi);
  27. using (var origBmp = new GcBitmap())
  28. {
  29. // Load a sample photo:
  30. var imagePath = Path.Combine("Resources", "ImagesBis", "tremblant.png");
  31. GrayscaleBitmap grayBmp;
  32. using (var stm = new FileStream(imagePath, FileMode.Open, FileAccess.Read, FileShare.Read, 4096, FileOptions.RandomAccess))
  33. {
  34. origBmp.Load(stm);
  35. origBmp.Opaque = opaque;
  36. grayBmp = origBmp.ToGrayscaleBitmap();
  37. }
  38.  
  39. // Resize the original photo to fit two versions on the resulting bitmap:
  40. int w = pixelSize.Width;
  41. int h = pixelSize.Height / 2;
  42. using (var sizedBmp = origBmp.Resize(w, h, InterpolationMode.Cubic))
  43. {
  44. // Copy the resized original into the upper half of the resulting bitmap:
  45. bmp.BitBlt(sizedBmp, 0, 0);
  46. // Auto adjust the contrast of the original image and copy the result into the lower half:
  47. grayBmp.AutoContrast();
  48. using (var tbmp = grayBmp.ToGcBitmap())
  49. bmp.BitBlt(tbmp, 0, h);
  50. }
  51.  
  52. // Add captions (original and adjusted images):
  53. var lineh = 2;
  54. using (var g = bmp.CreateGraphics(null))
  55. {
  56. var foreColor = Color.Yellow;
  57. var backColor = Color.Blue;
  58. var font = GCTEXT.Font.FromFile(Path.Combine("Resources", "Fonts", "cour.ttf"));
  59. g.DrawLine(0, h, w * 2, h, new GCDRAW.Pen(Color.Gray, lineh * 2));
  60. var tf = new TextFormat() { Font = font, FontSize = 18, ForeColor = foreColor, BackColor = backColor, FontBold = true };
  61. var th = g.MeasureString("QWERTY", tf).Height;
  62. g.DrawString(" Original image ", tf, new PointF(0, h - th + lineh));
  63. g.DrawString(" Auto contrast applied ", tf, new PointF(0, h * 2 + lineh - th + lineh));
  64. }
  65. }
  66. return bmp;
  67. }
  68. }
  69. }
  70.