-
Notifications
You must be signed in to change notification settings - Fork 724
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(NSUImageExtensions): added monochrome image recoloring for macOS
- Loading branch information
Showing
4 changed files
with
114 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
using System; | ||
using System.Runtime.InteropServices; | ||
using CoreGraphics; | ||
using Windows.UI; | ||
|
||
#if __IOS__ | ||
using _UIImage = UIKit.UIImage; | ||
#elif __MACOS__ | ||
using _UIImage = AppKit.NSImage; | ||
using AppKit; | ||
#endif | ||
|
||
namespace Uno.UI.Extensions | ||
{ | ||
internal static partial class NSUIImageExtensions | ||
{ | ||
internal static _UIImage AsMonochrome(this _UIImage image, Color foreground) | ||
{ | ||
var width = (int)image.Size.Width; | ||
var height = (int)image.Size.Height; | ||
var imageRect = new CGRect(0, 0, image.Size.Width, image.Size.Height); | ||
|
||
var rawData = new byte[width * height * 4]; | ||
var outputData = new byte[width * height * 4]; | ||
var handle = GCHandle.Alloc(rawData); | ||
|
||
try | ||
{ | ||
using (var colorSpace = CGColorSpace.CreateDeviceRGB()) | ||
{ | ||
using (var context = new CGBitmapContext( | ||
data: rawData, | ||
width: (nint)imageRect.Width, | ||
height: (nint)imageRect.Height, | ||
bitsPerComponent: 8, | ||
bytesPerRow: (nint)imageRect.Width * 4, | ||
colorSpace: colorSpace, | ||
bitmapInfo: CGImageAlphaInfo.PremultipliedLast | ||
) | ||
) | ||
{ | ||
context.DrawImage(imageRect, image.CGImage); | ||
|
||
for (int x = 0; x < width; x++) | ||
{ | ||
for (int y = 0; y < height; y++) | ||
{ | ||
var index = x * 4 + y * height * 4; | ||
|
||
var sourceAlpha = rawData[index + 3]; | ||
|
||
outputData[index + 0] = foreground.R; | ||
outputData[index + 1] = foreground.G; | ||
outputData[index + 2] = foreground.B; | ||
outputData[index + 3] = sourceAlpha; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
finally | ||
{ | ||
handle.Free(); | ||
} | ||
|
||
using (var dataProvider = new CGDataProvider(outputData, 0, outputData.Length)) | ||
{ | ||
using (var colorSpace = CGColorSpace.CreateDeviceRGB()) | ||
{ | ||
var bitsPerComponent = 8; | ||
var bytesPerPixel = 4; | ||
|
||
using (var cgImage = new CGImage( | ||
width, | ||
height, | ||
bitsPerComponent, | ||
bitsPerComponent * bytesPerPixel, | ||
bytesPerPixel * width, | ||
colorSpace, | ||
CGImageAlphaInfo.Last, | ||
dataProvider, | ||
null, | ||
false, | ||
CGColorRenderingIntent.Default | ||
)) | ||
{ | ||
return FromCGImage(cgImage); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Runtime.InteropServices; | ||
using System.Text; | ||
using CoreGraphics; | ||
using Windows.UI; | ||
using AppKit; | ||
|
||
namespace Uno.UI.Extensions | ||
{ | ||
internal static partial class NSUIImageExtensions | ||
{ | ||
internal static NSImage FromCGImage(CGImage cgImage) | ||
{ | ||
return new NSImage(cgImage, new CGSize(cgImage.Width, cgImage.Height)); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters