rusbrown / plsql-utils

Automatically exported from code.google.com/p/plsql-utils
0 stars 0 forks source link

JDBMS_QRCODE - Two new function: get_Google_QrCode_Image and get_ZXing_QrCode_Image #19

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
1. Add 2 new function:

function get_Google_QrCode_Image(iSIZEX in PLS_INTEGER,
    iSIZEY in PLS_INTEGER,
    iCONTENT IN NVARCHAR2,
    iENCODING IN VARCHAR2,
    iCORRECTION_LEVEL IN CHAR,
    iMARGIN IN PLS_INTEGER,
    iFORMAT IN VARCHAR2)
    return BLOB;

function get_ZXing_QrCode_Image(iSIZEX in PLS_INTEGER,
    iSIZEY in PLS_INTEGER,
    iCONTENT IN NVARCHAR2,
    iENCODING IN VARCHAR2,
    iCORRECTION_LEVEL IN CHAR,
  iFORMAT in VARCHAR2)
    return BLOB;

Original issue reported on code.google.com by wiesi...@gmail.com on 17 Apr 2013 at 9:07

Attachments:

GoogleCodeExporter commented 8 years ago
New file.

Original comment by wiesi...@gmail.com on 17 Apr 2013 at 12:34

Attachments:

GoogleCodeExporter commented 8 years ago
New parameter iFORMAT:

JPEG
PNG  (default for other function)
BMP
WBMP
GIF

http://download.java.net/jdk8/docs/api/javax/imageio/package-summary.html

Original comment by wiesi...@gmail.com on 17 Apr 2013 at 12:40

GoogleCodeExporter commented 8 years ago

Original comment by thehunge...@gmail.com on 21 Apr 2013 at 11:32