Giter Club home page Giter Club logo

qrcode's People

Contributors

5d avatar aschuch avatar basthomas avatar jiverson avatar pepe 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

qrcode's Issues

compiler error

branch: Swift 2.2
xcode 7.3.x

Steps to repro:

  1. clone
  2. switch to branch 2.2
  3. open example project in xcode and build

actual:
Github/QRCode/QRCode/CIImageExtension.swift:21:15: Initializer for conditional binding must have Optional type, not 'CGImage'

/Github/QRCode/QRCode/QRCode.swift:63:41: Cannot use optional chaining on non-optional value of type 'String'

QRCode string encoding

Is there a specific reason why the initialisers for string and NSURL both encode the input as latin1 instead of UTF-8?

public init?(_ string: String) {
        if let data = string.dataUsingEncoding(NSISOLatin1StringEncoding) {
            self.data = data
        } else {
            return nil
        }
    }

public init?(_ url: NSURL) {
    if let data = url.absoluteString.dataUsingEncoding(NSISOLatin1StringEncoding) {
        self.data = data
    } else {
        return nil
    }
}

Logo on the middle ?

Hello,

This a very nice work, but I have one question, it is possible to put a logo in the middle of the QR Code ?

Thank's in advance.

Maximum capacity

Hi,

What is the maximum capacity that can be encoded for an ASCII encoded string?

Thanks,
:panos

Crashes on iOS8 (when build with Xcode 8 / Swift 3)

Crash when using CIContext(options:) in CIImageExtensions.swift line 21. Seems to be an issue of Xcode 8 which is having issues translating the Swift 3 options: notation into contextWithOptions: (instead of initWithOptions). Writing a second helper extension in Obj-C would be a workaround.

Fail when building with Carthage

I received this error when i try to install this library with cathage.

In cartfile:
github "aschuch/QRCode"

Error:
*** Building scheme "QRCode" in Example.xcodeproj
** BUILD FAILED **

The following build commands failed:
CompileSwift normal x86_64 /project-path/Carthage/Checkouts/QRCode/QRCode/CIColorExtension.swift
CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
(2 failures)

Error correction level

Hi,

What is the error correction level used for the generated qr codes?

Is there a way to specify it?

Thanks,
:panos

how about add NSUrl,String extension

i think using extension to invoke have a better experience. like:
stringA.QRImage()
this method could have some default parameters,like size or something else.

if you agree with this , I can spend some time work on it,create a pull request

Converting image to NSData return nil

Hey Guys,

Trying to convert image to nsdata, but receive nil. Tried both PNG and JPEG.

let qrc = QRCode("sample")
let img = UIImagePNGRepresentation(qrc.image!) // img is nil 

Please advice

IOS 7 code still blurry

I placed the high error correction in and the code still appears blurry.

    var qrImage = UIImageView(frame: CGRectMake((lpScroll.frame.size.width - qrWidth) / 2, ish, qrWidth, qrWidth))
    let url = NSURL(string: url4Sharing)
    var qrCode = QRCode(url!)
    qrCode?.errorCorrection = QRCode.ErrorCorrection.High
    qrCode?.color = CIColor(color: UIColor.cloudsColor())
    qrCode?.backgroundColor = CIColor(color: darkColor)
    qrCode?.size = CGSize(width: qrWidth * 2, height: qrWidth * 2)
    qrImage.image = qrCode?.image
    lpScroll.addSubview(qrImage)

Submit to app Store

i guess you need to app a key to info.plist for Privacy - Media Library Usage Description
app Binary was invalid till i add to my info.plist the Error was missing this Key "NSPhotoLibraryUsageDescription"

please put a hint in readme file as it required from iOS 10

Crash issue on Xcode8 with swift2.3

Hi,

Below code will be crashed on Xcode8

guard let cgImage = CIContext(options: nil).createCGImage(self, fromRect: self.extent) else { return nil }

'NSInvalidArgumentException', reason: '-[CIContext initWithOptions:]: unrecognized selector

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.