![]() |
Barcode.jar
ver 3.0.0
Java 開発者向け バーコード作成ライブラリ
|
pao.barcode.IBarCodeを継承しています。
公開メンバ関数 | |
Code128 (Graphics2D g) | |
Code128 (String filePath) | |
boolean | getTextWrite () |
void | setTextWrite (boolean value) |
boolean | getTextKintou () |
void | setTextKintou (boolean value) |
Font | getTextFont () |
void | setTextFont (Font value) |
float | getRotateAngle () |
void | setRotateAngle (float value) |
int | getKuroBarChousei () |
void | setKuroBarChousei (int value) |
int | getDPI () |
void | setDPI (int dpi) |
int | getImgMargin () |
void | setImgMargin (int value) |
boolean | getDispStartStopCode () |
void | setDispStartStopCode (boolean value) |
String | getImgFilePath () |
void | setImgFilePath (String _imgFilePath) |
CodeSet128 | getCodeABC () |
void | setCodeABC (CodeSet128 _codeABC) |
void | draw (String code) |
void | draw (String code, float x, float y, float width, float height) |
void | draw (String code, float x, float y, float width, float height, String filePath) |
void | draw (String code, float x, float y, float width, float height, GraphicsUnit gu, int dpi) |
void | drawDelicate (String code, float x, float y, float minLineWidth, float height) |
void | drawDelicate (String code, float x, float y, float minLineWidth, float height, String filePath) |
void | drawDirect (String code, float x, float y, float width, float height) |
void | drawDirect (String code, float x, float y, float width, float height, String filePath) |
void | drawDirect (String code, float x, float y, float width, float height, GraphicsUnit gu, int dpi, boolean roundDecimalPoint) |
void | drawDirect (String code, float x, float y, float width, float height, GraphicsUnit gu, int dpi) |
float | getDrawDirectWidth (String code, float width) |
float | getDrawDelicateWidth (String code, float minLineWidth) |
pao.barcode.Code128.Code128 | ( | Graphics2D | g | ) |
Creates a new instance for Code128
g | Graphics where the barcode is going to be generated in |
pao.barcode.Code128.Code128 | ( | String | filePath | ) |
Creates a new instance for Code128
filePath | output image file path |
void pao.barcode.Code128.draw | ( | String | code | ) |
Draws barcode without specific position, width, and height
code | Text to be generated as barcode |
void pao.barcode.Code128.draw | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height | ||
) |
Draws barcode with specific position, width, and height
code | Text to be generated as barcode |
x | Position of barcode (X axis) |
y | Position of barcode (Y axis) |
width | Width of barcode |
height | Height of barcode |
void pao.barcode.Code128.draw | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height, | ||
String | filePath | ||
) |
Draws barcode with specific position, width, and height
code | Text to be generated as barcode |
x | Position of barcode (X axis) |
y | Position of barcode (Y axis) |
width | Width of barcode |
height | Height of barcode |
filePath | image file path |
void pao.barcode.Code128.draw | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height, | ||
GraphicsUnit | gu, | ||
int | dpi | ||
) |
Draws barcode with specific position, width, and height
code | Text to be generated as barcode |
x | Position of barcode (X axis) |
y | Position of barcode (Y axis) |
width | Width of barcode |
height | Height of barcode |
gu | Graphics Unit (mm, Inch, Point, Pixel) |
dpi | Output Device dpi |
void pao.barcode.Code128.drawDelicate | ( | String | code, |
float | x, | ||
float | y, | ||
float | minLineWidth, | ||
float | height | ||
) |
Draws barcode with specific position, minimum line width, and height
code | Text to be generated as barcode |
x | Position of barcode (X axis) |
y | Position of barcode (Y axis) |
minLineWidth | Minimum line width of barcode |
height | Height of barcode |
void pao.barcode.Code128.drawDelicate | ( | String | code, |
float | x, | ||
float | y, | ||
float | minLineWidth, | ||
float | height, | ||
String | filePath | ||
) |
Draws barcode with specific position, minimum line width, and height
code | Text to be generated as barcode |
x | Position of barcode (X axis) |
y | Position of barcode (Y axis) |
minLineWidth | Minimum line width of barcode |
height | Height of barcode |
filePath | image file path |
void pao.barcode.Code128.drawDirect | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height | ||
) |
Barcode is directly drawn within the width set in pixel. Accuracy and speed are better than Draw method, although the width cannot be fixed.
code | Text to be generated as barcode |
x | Position of barcode (X axis) |
y | Position of barcode (Y axis) |
width | Width of barcode |
height | Height of barcode |
void pao.barcode.Code128.drawDirect | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height, | ||
String | filePath | ||
) |
Barcode is directly drawn within the width set in pixel. Accuracy and speed are better than Draw method, although the width cannot be fixed.
code | Text to be generated as barcode |
x | Position of barcode (X axis) |
y | Position of barcode (Y axis) |
width | Width of barcode |
height | Height of barcode |
filePath | image file path |
void pao.barcode.Code128.drawDirect | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height, | ||
GraphicsUnit | gu, | ||
int | dpi, | ||
boolean | roundDecimalPoint | ||
) |
Barcode is directly drawn within the width set in pixel. Accuracy and speed are better than Draw method, although the width cannot be fixed.
code | Text to be generated as barcode |
x | Position of barcode (X axis) |
y | Position of barcode (Y axis) |
width | Width of barcode |
height | Height of barcode |
gu | Graphics Unit (mm, Inch, Point, Pixel) |
dpi | Output Device dpi |
roundDecimal | Rounding a decimal point |
void pao.barcode.Code128.drawDirect | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height, | ||
GraphicsUnit | gu, | ||
int | dpi | ||
) |
Barcode is directly drawn within the width set in pixel. Accuracy and speed are better than Draw method, although the width cannot be fixed.
code | Text to be generated as barcode |
x | Position of barcode (X axis) |
y | Position of barcode (Y axis) |
width | Width of barcode |
height | Height of barcode |
CodeSet128 pao.barcode.Code128.getCodeABC | ( | ) |
Get CODE128 CODE-SET (AUTO, A, B, C)
boolean pao.barcode.Code128.getDispStartStopCode | ( | ) |
Returns true if start-stop-code will be generated along with barcode (dummy for interface)
int pao.barcode.Code128.getDPI | ( | ) |
Get DPI for fine adjustment of black bars.(The defined value is 600DPI.)
int pao.barcode.Code128.getImgMargin | ( | ) |
Get Pixel of Image Margin
int pao.barcode.Code128.getKuroBarChousei | ( | ) |
Set number of dot for fine adjustment of black bars.(The defined value of dot is 0.)
value | The number of dot for fine adjustment of black bars. |
float pao.barcode.Code128.getRotateAngle | ( | ) |
Returns barcode angle
Font pao.barcode.Code128.getTextFont | ( | ) |
Gets the font used in writing text
boolean pao.barcode.Code128.getTextKintou | ( | ) |
Get drawing position drawing position (to fit a barcode to set width).
boolean pao.barcode.Code128.getTextWrite | ( | ) |
Returns true if text will be generated along with the barcode
void pao.barcode.Code128.setCodeABC | ( | CodeSet128 | _codeABC | ) |
Set CODE128 CODE-SET (AUTO, A, B, C)
value | CODE-SET (AUTO, A, B, C) |
void pao.barcode.Code128.setDispStartStopCode | ( | boolean | value | ) |
Enables or disables start-stop-code (dummy for interface)
value | true to enable start-stop-code, false to disable it |
void pao.barcode.Code128.setDPI | ( | int | dpi | ) |
Set DPI for fine adjustment of black bars.(The defined value is 600DPI.)
dpi | DPI |
void pao.barcode.Code128.setImgMargin | ( | int | value | ) |
Set Pixel of Image Margin
value | Pixelof Image Margin |
void pao.barcode.Code128.setKuroBarChousei | ( | int | value | ) |
Set number of dot for fine adjustment of black bars.(The defined value of dot is 0.)
value | The number of dot for fine adjustment of black bars. |
void pao.barcode.Code128.setRotateAngle | ( | float | value | ) |
Sets barcode angle
value | Barcode angle |
void pao.barcode.Code128.setTextFont | ( | Font | value | ) |
Sets the font used in writing text
value | Font used in writing text |
void pao.barcode.Code128.setTextKintou | ( | boolean | value | ) |
Set drawing position drawing position (to fit a barcode to set width).
value | true: Draw barcode within an overall width by equal spacing, false: Draw barcode at a bar meaning a code (default) |
void pao.barcode.Code128.setTextWrite | ( | boolean | value | ) |
Enables or disables text writing
value | true to enable text writing, false to disable it |