├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md └── Sources └── Blacksmith ├── Helpers ├── ExportMarketingImageToURL.swift ├── ExportSize.swift ├── ImageBackground.swift ├── Localization.swift ├── TitleAlignment.swift ├── ViewToNSImage.swift └── ViewToUIImage.swift └── Views ├── CapturingView.swift └── ScreenshotWithTitle.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Blacksmith/Helpers/ExportMarketingImageToURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/Sources/Blacksmith/Helpers/ExportMarketingImageToURL.swift -------------------------------------------------------------------------------- /Sources/Blacksmith/Helpers/ExportSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/Sources/Blacksmith/Helpers/ExportSize.swift -------------------------------------------------------------------------------- /Sources/Blacksmith/Helpers/ImageBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/Sources/Blacksmith/Helpers/ImageBackground.swift -------------------------------------------------------------------------------- /Sources/Blacksmith/Helpers/Localization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/Sources/Blacksmith/Helpers/Localization.swift -------------------------------------------------------------------------------- /Sources/Blacksmith/Helpers/TitleAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/Sources/Blacksmith/Helpers/TitleAlignment.swift -------------------------------------------------------------------------------- /Sources/Blacksmith/Helpers/ViewToNSImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/Sources/Blacksmith/Helpers/ViewToNSImage.swift -------------------------------------------------------------------------------- /Sources/Blacksmith/Helpers/ViewToUIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/Sources/Blacksmith/Helpers/ViewToUIImage.swift -------------------------------------------------------------------------------- /Sources/Blacksmith/Views/CapturingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/Sources/Blacksmith/Views/CapturingView.swift -------------------------------------------------------------------------------- /Sources/Blacksmith/Views/ScreenshotWithTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chFlorian/Blacksmith/HEAD/Sources/Blacksmith/Views/ScreenshotWithTitle.swift --------------------------------------------------------------------------------