Trong bài viết này, chúng ta sẽ thảo luận về các chi tiết cách tạo mã vạch bằng Java cũng như nhận dạng mã vạch bằng cùng một API Java. Chúng ta đã quen thuộc rằng một mã vạch là một nhãn hoặc thẻ mã hóa được gắn trên tất cả hàng hóa, cho phép máy tính theo dõi và thanh toán sản phẩm nhanh hơn và chính xác hơn. Tương tự, chúng có thể dễ dàng được in và thêm vào các mặt hàng một cách kịp thời để toàn bộ hàng tồn kho của bạn được gán nhãn và theo dõi ngay lập tức. Hơn nữa, mã vạch cung cấp việc xác định sản phẩm tự động, nhận diện cực nhanh và thực hiện dữ liệu với tỷ lệ sai sót rất thấp. Cách tiếp cận này cực kỳ tiết kiệm chi phí và có thể hỗ trợ nhà tuyển dụng giảm chi phí chung và cắt giảm thời gian đào tạo cũng như lao động.

API tạo mã vạch

Aspose.BarCode Cloud là một API REST cho phép khách hàng của chúng tôi triển khai khả năng tạo và xử lý mã vạch trong lập trình.

API có khả năng phân tích các định dạng hình ảnh raster phổ biến. Để biết thêm chi tiết, vui lòng truy cập Supported File Formats.

Tạo mã vạch với kích thước đã chỉ định

Cách nhanh chóng và dễ nhất để kiểm tra các API của chúng tôi là sử dụng phần tham chiếu API. Phương thức GetBarcodeGenerate được sử dụng để tạo hình ảnh BarCode và nó cung cấp một loạt các tùy chọn để tạo BarCode theo yêu cầu của bạn và các chi tiết liên quan đến các tham số cụ thể được giải thích rõ ràng trên trang tham chiếu API. Khi tạo BarCode, bạn có thể chỉ định một trong các loại sau

  • Codabar
  • Code11
  • Code39Standard
  • Code39Extended
  • Code93Standard
  • Code93Extended
  • Code128
  • GS1Code128
  • EAN8
  • EAN13
  • EAN14
  • SCC14
  • SSCC18
  • UPCA
  • UPCE
  • ISBN
  • ISSN
  • ISMN
  • Standard2of5
  • Interleaved2of5
  • Matrix2of5
  • ItalianPost25
  • IATA2of5
  • ITF14
  • ITF6
  • MSI
  • VIN
  • DeutschePostIdentcode
  • DeutschePostLeitcode
  • OPC
  • PZN
  • Code16K
  • Pharmacode
  • DataMatrix
  • QR
  • Aztec
  • Pdf417
  • MacroPdf417
  • AustraliaPost
  • Postnet
  • Hành tinh
  • OneCode
  • RM4SCC
  • DatabarOmniDirectional
  • DatabarTruncated
  • DatabarLimited
  • DatabarExpanded
  • SingaporePost
  • GS1DataMatrix
  • AustralianPosteParcel
  • SwissPostParcel
  • PatchCode
  • DatabarExpandedStacked
  • DatabarStacked
  • DatabarStackedOmniDirectional
  • MicroPdf417
  • GS1QR
  • MaxiCode
  • Code32
  • DataLogic2of5
  • DotCode
  • DutchKIX
  • UpcaGs1Code128Coupon
  • UpcaGs1DatabarCoupon
  • CodablockF
  • GS1CodablockF

cURL command

curl -X GET "https://api.aspose.cloud/v3.0/barcode/generate?Type=Codabar&Text=Hello%20World&TwoDDisplayText=QR&TextLocation=Above&TextAlignment=Center&TextColor=Blue&FontSizeMode=Auto&Resolution=96&TextSpace=2&Units=Point&SizeMode=Nearest&BarHeight=50&ImageHeight=200&ImageWidth=200&RotationAngle=0&BackColor=White&BorderDashStyle=Solid&SupplementData=EAN8&format=PNG" -H  "accept: image/png" -H  "authorization: Bearer <JWT Token>"

Request URL

https://api.aspose.cloud/v3.0/barcode/generate?Type=Codabar&Text=Hello%20World&TwoDDisplayText=QR&TextLocation=Above&TextAlignment=Center&TextColor=Blue&FontSizeMode=Auto&Resolution=96&TextSpace=2&Units=Point&SizeMode=Nearest&BarHeight=50&ImageHeight=200&ImageWidth=200&RotationAngle=0&BackColor=White&BorderDashStyle=Solid&SupplementData=EAN8&format=PNG

Java

Đoạn mã sau đây có thể được sử dụng để tạo hình ảnh mã vạch và lưu trữ nó trên Cloud Storage.

// Để xem các ví dụ đầy đủ và tệp dữ liệu, vui lòng truy cập https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-java/

String name = "putBarcodeGenerateFile.png";
String type = EncodeBarcodeType.QR.getValue();
String text = "Put Barcode Generate File";
Double dimensionX = 200.0;

String twoDDisplayText = null;
String textLocation = null;
String textAlignment = null;
String textColor = null;
String fontSizeMode = null;
Double resolution = null;
Double textSpace = null;
String units = null;
String sizeMode = null;
Double barHeight = null;
Double imageHeight = null;
Double imageWidth = null;
Double rotationAngle = null;
String backColor = null;
String barColor = null;
String borderColor = null;
Double borderWidth = null;
String borderDashStyle = null;
Boolean borderVisible = null;
String enableChecksum = null;
Boolean enableEscape = null;
Boolean filledBars = null;
Boolean alwaysShowChecksum = null;
Double wideNarrowRatio = null;
Boolean validateText = null;
String supplementData = null;
Double supplementSpace = null;
String format = null;

String storage = "Storage";
String folder = "Temp/"

ResultImageInfo response =
		api.putBarcodeGenerateFile(
				name,type,text,twoDDisplayText,textLocation,textAlignment,textColor,fontSizeMode,
				resolution,null,null,dimensionX,textSpace,units,sizeMode,barHeight,
				imageHeight,imageWidth,rotationAngle,backColor,barColor,borderColor,borderWidth,
				borderDashStyle,borderVisible,enableChecksum,enableEscape,filledBars,
				alwaysShowChecksum,wideNarrowRatio,validateText,supplementData,
				supplementSpace,storage,folder,format);

assertTrue(response.getFileSize() > 0);
assertTrue(response.getImageWidth() > 0);
assertTrue(response.getImageHeight() > 0);
Hình ảnh mã vạch

Hình ảnh 1:- Bản xem trước của mã vạch được tạo ra bằng API Java

Nhận diện mã vạch từ hình ảnh raster

API cũng cung cấp khả năng nhận diện mã vạch từ các tập tin hình ảnh raster. Tập tin hình ảnh có thể là định dạng PNG, JPEG, BMP, GIF, TIFF hoặc EXIF. Phương thức GetBarcodeRecognize của API cho phép bạn thực hiện yêu cầu này. Trường tên là bắt buộc và các trường tùy chọn khác cung cấp khả năng thực hiện các hoạt động nhận diện tốt hơn vì bạn có thể chỉ định thông tin loại mã vạch, Kiểm tra tính hợp lệ của tổng, Mã hóa, một cài đặt cho phép cấu hình chất lượng và tốc độ nhận diện, và nhiều hơn nữa.

cURL

curl -X GET "https://api.aspose.cloud/v3.0/barcode/index.png/recognize?Type=all&ChecksumValidation=Off&DetectEncoding=false&Preset=HighQuality" -H  "accept: application/json" -H  "authorization: Bearer <JWT Token>"

Request URL

https://api.aspose.cloud/v3.0/barcode/index.png/recognize?Type=all&ChecksumValidation=Off&DetectEncoding=false&Preset=HighQuality

Đọc mã vạch từ URL hình ảnh bên ngoài

// Để xem các ví dụ đầy đủ và tệp dữ liệu, vui lòng truy cập https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-java/

String type = null;
String checksumValidation = ChecksumValidation.OFF.toString();
Boolean detectEncoding = null;
String preset = PresetType.HIGHPERFORMANCE.toString();
String url = "http://www.barcoding.com/images/Barcodes/pdf417.gif";

Integer rectX = null;
Integer rectY = null;
Integer rectWidth = null;
Integer rectHeight = null;
Boolean stripFNC = null;
Integer timeout = null;
Integer medianSmoothingWindowSize = null;
Boolean allowMedianSmoothing = null;
Boolean allowComplexBackground = null;
Boolean allowDatamatrixIndustrialBarcodes = null;
Boolean allowDecreasedImage = null;
Boolean allowDetectScanGap = null;
Boolean allowIncorrectBarcodes = null;
Boolean allowInvertImage = null;
Boolean allowMicroWhiteSpotsRemoving = null;
Boolean allowOneDFastBarcodesDetector = null;
Boolean allowOneDWipedBarsRestoration = null;
Boolean allowQRMicroQrRestoration = null;
Boolean allowRegularImage = null;
Boolean allowSaltAndPepperFiltering = null;
Boolean allowWhiteSpotsRemoving = null;
Double regionLikelihoodThresholdPercent = null;
List<Integer> scanWindowSizes = null;
Double similarity = null;
Boolean skipDiagonalSearch = null;
String australianPostEncodingTable = null;
String rectangleRegion = null;
File image = null;

BarcodeResponseList response = 
   	 api.postBarcodeRecognizeFromUrlOrContent( 
      		type,checksumValidation,detectEncoding,preset,rectX,rectY,rectWidth,rectHeight,
      		stripFNC,timeout,medianSmoothingWindowSize,allowMedianSmoothing,allowComplexBackground,
      		allowDatamatrixIndustrialBarcodes,allowDecreasedImage,allowDetectScanGap,
		allowIncorrectBarcodes,allowInvertImage,allowMicroWhiteSpotsRemoving,allowOneDFastBarcodesDetector,
      		allowOneDWipedBarsRestoration,allowQRMicroQrRestoration,allowRegularImage,allowSaltAndPepperFiltering,
      		allowWhiteSpotsRemoving,regionLikelihoodThresholdPercent,scanWindowSizes,similarity,skipDiagonalSearch,
      		australianPostEncodingTable,rectangleRegion,url,image);

assertNotNull(response);
assertFalse(response.getBarcodes().isEmpty());

BarcodeResponse barcode = response.getBarcodes().get(0);
assertEquals(DecodeBarcodeType.CODE11.getValue(), barcode.getType());
assertEquals("1234567812", barcode.getBarcodeValue());

Kết luận

Trong bài viết này, chúng tôi đã thảo luận về các bước và chi tiết liên quan đến cách tạo mã vạch một cách lập trình bằng Java cũng như cách đọc và nhận diện một mã vạch tồn tại bằng đoạn mã Java. Bạn có thể đã nhận thấy rằng tất cả các thao tác này đều được thực hiện với một vài dòng mã đơn giản. Không cần tải xuống hoặc cài đặt phần mềm bổ sung và các thao tác này có thể được thực hiện với ít dòng mã hơn.

Bài viết liên quan

Chúng tôi khuyên bạn nên truy cập các liên kết sau để tìm hiểu thêm về