Skip to content

Instantly share code, notes, and snippets.

View tilseam's full-sized avatar

Tilseam tilseam

View GitHub Profile
@raphaelhanneken
raphaelhanneken / NSImageExtensions.swift
Last active March 6, 2025 23:01
NSImage extensions for easy resizing, cropping and saving png images.
//
// NSImageExtensions.swift
//
import Cocoa
extension NSImage {
/// The height of the image.
var height: CGFloat {
@acj
acj / TrimVideo.swift
Last active November 2, 2023 15:05
Trim video using AVFoundation in Swift
//
// TrimVideo.swift
// VideoLab
//
// Created by Adam Jensen on 3/28/15.
// Updated for Swift 5 (tested with Xcode 10.3) on 7/30/19.
// MIT license
//
import AVFoundation