Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
To Recognize Specific Barcode Symbology using Aspose.Barcode Java for PHP, simply invoke RecognizeSpecificSymbology module. Here you can see example code.
PHPCode
# initialize barcode reader
$img = $dataDir . "barcode.jpg";
$barcode_reader_type = new BarCodeReadType();
$rd = new BarCodeReader($img, $barcode_reader_type->Code39Standard);
\# read barcode
while (java_values($rd->read())){
\# print the code text, if barcode found
print "CodeText: " . (string)$rd->getCodeText();
\# print the symbology type
print "Type: " . (string)$rd->getReadType().PHP_EOL;
}
Download Recognizing Specific Barcode Symbology (Aspose.BarCode) from any of the below mentioned social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.