SwapColors.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.  
  15. namespace DsImagingWeb.Demos
  16. {
  17. // This sample demonstrates how to swap color channels on an image
  18. // using pixel access. Here we swap red and blue channels to
  19. // change the way the image looks.
  20. public class SwapColors
  21. {
  22. public GcBitmap GenerateImage(Size pixelSize, float dpi, bool opaque, string[] sampleParams = null)
  23. {
  24. var bmp = new GcBitmap(pixelSize.Width, pixelSize.Height, opaque, dpi, dpi);
  25. using (var bmpSrc = new GcBitmap(Path.Combine("Resources", "ImagesBis", "alpamayo-sq.jpg")))
  26. {
  27. // BitBlt requires the opacity of both images to be the same:
  28. bmpSrc.Opaque = opaque;
  29. // Render source image onto the target bitmap
  30. // (generally we might want to resize the source image first,
  31. // but in this case we just know that the source image has
  32. // the same size as the target, so skip this step):
  33. bmp.BitBlt(bmpSrc, 0, 0);
  34.  
  35. using (var g = bmp.CreateGraphics())
  36. {
  37. for (int i = 0; i < bmp.PixelWidth; ++i)
  38. for (int j = 0; j < bmp.PixelHeight; ++j)
  39. {
  40. #if bad_performance // Due to the number of pixels, it is better to optimize pixel operations
  41. var color = Color.FromArgb((int)bmp[i, j]);
  42. var t = color.B;
  43. color = Color.FromArgb(color.A, color.B, color.G, color.R);
  44. bmp[i, j] = (uint)color.ToArgb();
  45. #else
  46. uint px = bmp[i, j];
  47. px = ((px & 0x000000FF) << 16) | ((px & 0x00FF0000) >> 16) | (px & 0xFF00FF00);
  48. bmp[i, j] = px;
  49. #endif
  50. }
  51. // Draw the original image in the bottom right corner for reference:
  52. float sx = pixelSize.Width / 3, sy = pixelSize.Height / 3;
  53. g.DrawImage(bmpSrc, new RectangleF(sx * 2, sy * 2, sx, sy), null, ImageAlign.StretchImage);
  54. }
  55. }
  56. return bmp;
  57. }
  58. }
  59. }
  60.