![]() |
Barcode.jar
ver 3.0.0
Java 開発者向け バーコード作成ライブラリ
|
pao.barcode.IBarCodeを継承しています。
公開メンバ関数 | |
Code39 (Graphics2D g) | |
Code39 (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) |
boolean | getDispStartStopCode () |
void | setDispStartStopCode (boolean value) |
int | getKuroBarChousei () |
void | setKuroBarChousei (int value) |
int | getDPI () |
void | setDPI (int dpi) |
int | getImgMargin () |
void | setImgMargin (int value) |
void | draw (String code) throws ErrCode39BadChar |
void | draw (String code, float x, float y, float width, float height) throws ErrCode39BadChar |
void | draw (String code, float x, float y, float width, float height, String filePath) throws ErrCode39BadChar |
void | draw (String code, float x, float y, float width, float height, GraphicsUnit gu, int dpi) throws ErrCode39BadChar |
void | drawDelicate (String code, float x, float y, float minLineWidth, float height) throws ErrCode39BadChar |
void | drawDelicate (String code, float x, float y, float minLineWidth, float height, String filePath) throws ErrCode39BadChar |
void | drawDirect (String code, float x, float y, float width, float height) throws ErrCode39BadChar |
void | drawDirect (String code, float x, float y, float width, float height, String filePath) throws ErrCode39BadChar |
void | drawDirect (String code, float x, float y, float width, float height, GraphicsUnit gu, int dpi, boolean roundDecimalPoint) throws ErrCode39BadChar |
void | drawDirect (String code, float x, float y, float width, float height, GraphicsUnit gu, int dpi) throws ErrCode39BadChar |
float | getDrawDirectWidth (String code, float width) throws ErrCode39BadChar |
float | getDrawDelicateWidth (String code, float minLineWidth) throws ErrCode39BadChar |
pao.barcode.Code39.Code39 | ( | Graphics2D | g | ) |
Creates a new instance for Code39
g | Graphics where the barcode is going to be generated in |
pao.barcode.Code39.Code39 | ( | String | filePath | ) |
Creates a new instance for Code39
filePath | output image file path |
void pao.barcode.Code39.draw | ( | String | code | ) | throws ErrCode39BadChar |
Draws barcode without specific position, width, and height
code | Text to be generated as barcode |
ErrCode39BadChar | if code contains unknown character |
void pao.barcode.Code39.draw | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height | ||
) | throws ErrCode39BadChar |
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 |
ErrCode39BadChar | if code contains unknown character |
void pao.barcode.Code39.draw | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height, | ||
String | filePath | ||
) | throws ErrCode39BadChar |
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 |
ErrCode39BadChar | if code contains unknown character |
void pao.barcode.Code39.draw | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height, | ||
GraphicsUnit | gu, | ||
int | dpi | ||
) | throws ErrCode39BadChar |
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 |
ErrCode39BadChar | if code contains unknown character |
void pao.barcode.Code39.drawDelicate | ( | String | code, |
float | x, | ||
float | y, | ||
float | minLineWidth, | ||
float | height | ||
) | throws ErrCode39BadChar |
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 |
ErrCode39BadChar | if code contains unknown character |
void pao.barcode.Code39.drawDelicate | ( | String | code, |
float | x, | ||
float | y, | ||
float | minLineWidth, | ||
float | height, | ||
String | filePath | ||
) | throws ErrCode39BadChar |
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 |
ErrCode39BadChar | if code contains unknown character |
void pao.barcode.Code39.drawDirect | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height | ||
) | throws ErrCode39BadChar |
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 |
ErrCode39BadChar | if code contains unknown character |
void pao.barcode.Code39.drawDirect | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height, | ||
String | filePath | ||
) | throws ErrCode39BadChar |
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 |
ErrCode39BadChar | if code contains unknown character |
void pao.barcode.Code39.drawDirect | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height, | ||
GraphicsUnit | gu, | ||
int | dpi, | ||
boolean | roundDecimalPoint | ||
) | throws ErrCode39BadChar |
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 |
ErrCode39BadChar | if code contains unknown character |
void pao.barcode.Code39.drawDirect | ( | String | code, |
float | x, | ||
float | y, | ||
float | width, | ||
float | height, | ||
GraphicsUnit | gu, | ||
int | dpi | ||
) | throws ErrCode39BadChar |
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 |
ErrCode39BadChar | if code contains unknown character |
boolean pao.barcode.Code39.getDispStartStopCode | ( | ) |
Returns true if start-stop-code will be generated along with barcode
int pao.barcode.Code39.getDPI | ( | ) |
Get DPI for fine adjustment of black bars.(The defined value is 600DPI.)
int pao.barcode.Code39.getImgMargin | ( | ) |
Get Pixel of Image Margin
int pao.barcode.Code39.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.Code39.getRotateAngle | ( | ) |
Returns barcode angle
Font pao.barcode.Code39.getTextFont | ( | ) |
Gets the font used in writing text
boolean pao.barcode.Code39.getTextKintou | ( | ) |
Get drawing position drawing position (to fit a barcode to set width).
boolean pao.barcode.Code39.getTextWrite | ( | ) |
Returns true if text will be generated along with the barcode
void pao.barcode.Code39.setDispStartStopCode | ( | boolean | value | ) |
Enables or disables start-stop-code
value | true to enable start-stop-code, false to disable it |
void pao.barcode.Code39.setDPI | ( | int | dpi | ) |
Set DPI for fine adjustment of black bars.(The defined value is 600DPI.)
dpi | DPI |
void pao.barcode.Code39.setImgMargin | ( | int | value | ) |
Set Pixel of Image Margin
value | Pixelof Image Margin |
void pao.barcode.Code39.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.Code39.setRotateAngle | ( | float | value | ) |
Sets barcode angle
value | Barcode angle |
void pao.barcode.Code39.setTextFont | ( | Font | value | ) |
Sets the font used in writing text
value | Font used in writing text |
void pao.barcode.Code39.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.Code39.setTextWrite | ( | boolean | value | ) |
Enables or disables text writing
value | true to enable text writing, false to disable it |