All Projects → DavidLari → SwiftyJot

DavidLari / SwiftyJot

Licence: MIT license
Use your finger to annotate images.

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to SwiftyJot

Assistantkit
Easy way to detect iOS device properties, OS versions and work with screen sizes. Powered by Swift.
Stars: ✭ 569 (+3964.29%)
Mutual labels:  iphone, ipad, swift-framework
Mcpicker Ios
McPicker is a customizable, closure driven UIPickerView drop-in solution with animations that is rotation ready.
Stars: ✭ 186 (+1228.57%)
Mutual labels:  iphone, ipad, swift-framework
powerpaint
Kreative PowerPaint - Library and Application for Bitmap and Vector Image Editing
Stars: ✭ 27 (+92.86%)
Mutual labels:  drawing, image-editing
Stpopuppreview
An alternative peek preview for non 3D Touch devices. Inspired by Instagram.
Stars: ✭ 202 (+1342.86%)
Mutual labels:  iphone, ipad
Stpopup
STPopup provides STPopupController, which works just like UINavigationController in popup style, for both iPhone and iPad. It's written in Objective-C and compatible with Swift.
Stars: ✭ 2,517 (+17878.57%)
Mutual labels:  iphone, ipad
Pulley
A library to imitate the iOS 10 Maps UI.
Stars: ✭ 1,928 (+13671.43%)
Mutual labels:  iphone, ipad
Clendar
Clendar - universal calendar app. Written in SwiftUI. Available on App Store
Stars: ✭ 153 (+992.86%)
Mutual labels:  iphone, ipad
Ios
OwnTracks' iPhone App
Stars: ✭ 222 (+1485.71%)
Mutual labels:  iphone, ipad
Inappviewdebugger
A UIView debugger (like Reveal or Xcode) that can be embedded in an app for on-device view debugging
Stars: ✭ 1,805 (+12792.86%)
Mutual labels:  iphone, ipad
Chipagecontrol
A set of cool animated page controls written in Swift to replace boring UIPageControl. Mady by @ChiliLabs - https://chililabs.io
Stars: ✭ 2,909 (+20678.57%)
Mutual labels:  iphone, ipad
Ios
IRCCloud iOS App
Stars: ✭ 243 (+1635.71%)
Mutual labels:  iphone, ipad
DreamBig
☁🌝☁ 3D emoji drawing iPad app with ARKit and the Apple Pencil ☁🌝☁
Stars: ✭ 24 (+71.43%)
Mutual labels:  drawing, ipad
Filesystem
FileSystem is an application that allows you to browse the content of your iPhone disk, displaying file and folders, files contents, and detailed informations about file and folder permissions.
Stars: ✭ 148 (+957.14%)
Mutual labels:  iphone, ipad
Apple Device Model List
All Apple devices model name list. 通过内部编号判断 iOS 设备型号。
Stars: ✭ 149 (+964.29%)
Mutual labels:  iphone, ipad
Unwrap
Learn Swift interactively on your iPhone.
Stars: ✭ 1,992 (+14128.57%)
Mutual labels:  iphone, ipad
Hls Vod
HTTP Live Streaming with on-the-fly encoding of any video file for Web/Apple TV/iPhone/iPad/iPod
Stars: ✭ 221 (+1478.57%)
Mutual labels:  iphone, ipad
Jspaint
🎨 Classic MS Paint, REVIVED + ✨Extras
Stars: ✭ 5,972 (+42557.14%)
Mutual labels:  drawing, image-editing
Appleapnpush
Send push notification to Apple Devices (iPhone, iPad)
Stars: ✭ 134 (+857.14%)
Mutual labels:  iphone, ipad
Ioctocat
iOctocat v1 - GitHub for iOS (works on the iPhone, iPad, and iPod Touch)
Stars: ✭ 1,665 (+11792.86%)
Mutual labels:  iphone, ipad
Uicollectionviewsplitlayout
UICollectionViewSplitLayout makes collection view more responsive.
Stars: ✭ 226 (+1514.29%)
Mutual labels:  iphone, ipad

SwiftyJot

CI Status Version License Platform

SwiftyJot

Give your images the finger with SwiftyJot! Lightweight library lets users mark up a photo/image.

  • Options to allow user to select color using built-in palette.
  • User can select brush size.
  • Multi-level undo
  • One level redo.
  • Swift 4.
  • Works on iPhone X.
  • Supports iPhones and iPads.
  • Uses safe zones on iOS 11+.
  • No storyboards.

Inspired by the (now abandoned) jot object-C library from IFTTT but all new code, 100% Swift.

Pull requests welcomed!

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Build and run. Tap an image then tap Annotate.

Royalty free example images from Unsplash

Requirements

Works on iOS 9.0 and later. Xcode 9.x and later. Swift 4.

Installation

SwiftyJot is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'SwiftyJot'

Usage

Assumption: You have a view controller displayed and it has a UIImageView with an image on it.

First import SwiftyJot, then instantiate and present:

let swiftyJot = SwiftyJot()
swiftyJot.present(sourceImageView: imageView, presentingViewController: self)

After the user edits and taps Done, the marked up image will automatically replace your original in the image view. The new image is the same resolution as the original.

To customize the appearance, create a configuration object and set properties:

let swiftyJot = SwiftyJot()
var config = SwiftyJot.Config()
config.backgroundColor = .gray
config.title = "Example"
config.tintColor = .darkGray
config.buttonBackgroundColor = .white
config.brushColor = .red
config.brushSize = 8.0
config.showMenuButton = true
config.showPaletteButton = true
swiftyJot.config = config

swiftyJot.present(sourceImageView: imageView, presentingViewController: self)

Version

This is an early version of SwiftyJot. However, every effort will be made to avoid any compatibility breaking changes.

Author

DavidLari, [email protected]

License

SwiftyJot is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].