A B C D E F G H I L M N O P Q R S T U W

R

RIGHT - Static variable in class com.aspose.barcode.TextAlign
align to the right
Redirection - Static variable in class com.aspose.barcode.AustraliaPostFormatControlCode
Redirection BarCode
ReplyPaid - Static variable in class com.aspose.barcode.AustraliaPostFormatControlCode
Reply Paid BarCode
Resolution - class com.aspose.barcode.Resolution.
Resolution of the barcode image.
Resolution() - Constructor for class com.aspose.barcode.Resolution
Construct x Resolution with default settings, with x 96 * 96 DpiX and DpiY
Resolution(int, int) - Constructor for class com.aspose.barcode.Resolution
Constructs x Resolution class with custom settings
Resolution(int) - Constructor for class com.aspose.barcode.Resolution
Constructs x Resolution class with custom settings
Routing - Static variable in class com.aspose.barcode.AustraliaPostFormatControlCode
Routing BarCode
read() - Method in class com.aspose.barcode.BarCodeReader

Scan the image for barcodes.

render(Graphics) - Method in class com.aspose.barcode.BarCodeBuilder

Renders barcode by Graphics g

Example

public class AppletSample extends Applet { public void paint(Graphics g) { BarCodeBuilder b = new BarCodeBuilder(); b.setSymbology(Symbology.CODE128); b.setCodeText("12345678"); b.render(g); } }

render(Graphics2D) - Method in class com.aspose.barcode.BarCodeBuilder

Renders barcode by Graphics2D g

render(HttpServletResponse) - Method in class com.aspose.barcode.BarCodeBuilder

Renders barcode to servlet

Example import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse;

import com.aspose.barcode.*;

public class ServletSample extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { BarCodeBuilder b = new BarCodeBuilder(); b.setSymbology(Symbology.CODE128); b.setCodeText("12345678"); b.render(response); } }

reset() - Method in class com.aspose.barcode.Margins
Reset the marginal area to be 0

A B C D E F G H I L M N O P Q R S T U W