Skip to content

sorleone/TermQRCode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

TermQRCode

TermQRCode is a wrapper to the ZXing Java library that allows you to easily create QR Codes in your terminal.

Getting Started

Gradle

repositories {
  maven { url "https://jitpack.io" }
}

dependencies {
  compile 'com.github.sorleone:TermQRCode:1.0'
}

Basic Usage

import com.google.zxing.WriterException;
import term.TermQRCode;

public class Main {
  public static void main(String args[]) throws WriterException {
    TermQRCode termQRCode = new TermQRCode();
    System.out.println(termQRCode.generate("test"));
  }
}

Contribution

Please report issues/bugs, feature requests and suggestions for improvements to the issue tracker.

About

The Java QR Code generator for your terminal.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages