coding...
- New York, NY
- www.cfarini.com
Highlights
- Pro
Block or Report
Block or report Farini
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
-
-
1
/**
2A CIFilter that uses a Metal function that converts a black pixel (or almost black) to a transparent pixel.
3*/
4class BLKTransparent: CIFilter {
5 -
1
extension NSImage {
23/// Returns the height of the current image.
4var height: CGFloat {
5return self.size.height
-
1
/// Gets the Last Modified and Created Date of the file at path.
2func fileDateAttributes(at path:String) -> (created:Date?, modified:Date?) {
34do {
5let attributes:[FileAttributeKey:Any] = try FileManager.default.attributesOfItem(atPath: path)
-
1
// Pathfinder
2// Created by Carlos Farini on 8/21/21.
34/**
5This is a tutorial that tries to approach the following question: