GithubHelp home page GithubHelp logo

makomori / sharaku Goto Github PK

View Code? Open in Web Editor NEW
1.5K 37.0 151.0 11.15 MB

(Not maintained)Image filtering UI library like Instagram.

License: MIT License

Ruby 8.09% Swift 91.91%
ios swift-3 swift swift-library instagram cocoapods

sharaku's Introduction

sharaku_header

Sharaku

Version License Platform

Usage

How to present SHViewController

let imageToBeFiltered = UIImage(named: "targetImage")
let vc = SHViewController(image: imageToBeFiltered)
vc.delegate = self
self.present(vc, animated:true, completion: nil)

SHViewControllerDelegate methods

extension ViewController: SHViewControllerDelegate {
    func shViewControllerImageDidFilter(image: UIImage) {
      // Filtered image will be returned here.
    }

    func shViewControllerDidCancel() {
      // This will be called when you cancel filtering the image.
    }
}

Example

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

Demo video

Sharaku animation

Requirements

  • Swift3
  • iOS 8.3+

Installation

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

pod "Sharaku"

Install manually

It requires a few things. Please follow the steps.

Contribution

Creating new issues for bug report, feature request and pull request is always welcome! Please feel free to contribute to Sharaku!

Author

makomori, [email protected], Twitter: @makomori26

License

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

sharaku's People

Contributors

makomori avatar xeoneux avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

sharaku's Issues

Crop Image

Great Lib :)

Any plans to add the possibility to crop the Image?

No such module..

It says there is no such module as Sharaku, even when I installed pods

Manual Install

I've a problem to install your library.
I can't use: "use_frameworks!" in my project, can I install it manually?
Thanks a lot!
Great Work!

Objective c?

Hi i want this Library in Objective c how to do this with out bridging? I mean any other Libraries.

CocoaPodsでインストールするとビルドに失敗する

おそらくpodspecファイルで

s.source_files = 'Sharaku/Classes/**/*'

と指定しているためxibファイルがコンパイル対象として認識されていて、xibをコンパイルしようとしてエラーになります。
手元のプロジェクトでは以下のように回避していますが、podspecの修正をしていただけるとありがたいです。

post_install do |installer|
  installer.pods_project.targets.each do |target|
    if target.name == 'Sharaku'
      source_files = target.source_build_phase.files
      selected = source_files.select do |file|
        file.file_ref.name.to_s.include? 'xib'
      end
      selected.each do |file|
        source_files.delete file
        puts "Deleting source file #{file.inspect} from target #{target.inspect}."
      end
    end
  end
end

Change theme colour?

Is there any way I can change the colour scheme of the SHViewController from black to match the theme of my own app?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.