← Back to list

How to generate a EAN-8 barcode as a PNG file in Node.JS

Setting up a barcode system in Node.JS all by yourself can be a bit intimidating. To help ease that load a bit, we have developed an API…

Cloudmersive · 2020-03-23 04:02 · 0 claps · 1.1 min read
#generate #ean-8 #barcode #nodejs #png
Open on Medium ↗
Wiki topics: 🌐 · Web Development 💑 · Relationships

How to generate a EAN-8 barcode as a PNG file in Node.JS

Setting up a barcode system in Node.JS all by yourself can be a bit intimidating. To help ease that load a bit, we have developed an API that will help you in generating EAN-8 barcodes. Using it is a piece of cake, as you are about to see.

First comes our client installation, which just means adding a reference to your package.json file.

"dependencies": {
    "cloudmersive-barcodeapi-client": "^1.1.2"
  }

The next step is to call our function, in this case generateBarcodeEAN8.

var CloudmersiveBarcodeapiClient = require('cloudmersive-barcodeapi-client');
var defaultClient = CloudmersiveBarcodeapiClient.ApiClient.instance;
// Configure API key authorization: Apikey
var Apikey = defaultClient.authentications['Apikey'];
Apikey.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Apikey.apiKeyPrefix = 'Token';
var apiInstance = new CloudmersiveBarcodeapiClient.GenerateBarcodeApi();
var value = "value_example"; // String | Barcode value to generate from
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.generateBarcodeEAN8(value, callback);

Done! Yup, it’s just that simple. Any string that you enter in for the value will be encoded as a EAN-8. We have API support for a variety of other barcode formats as well, including QR, EAN-13, and more.


메타데이터
post_id
d451b3430bd0
slug
how-to-generate-a-ean-8-barcode-as-a-png-file-in-node-js-d451b3430bd0
url
https://medium.com/@cloudmersive/how-to-generate-a-ean-8-barcode-as-a-png-file-in-node-js-d451b3430bd0
canonical_url
https://medium.com/@cloudmersive/how-to-generate-a-ean-8-barcode-as-a-png-file-in-node-js-d451b3430bd0
author_url
https://medium.com/@cloudmersive
status
ok
fetched_at
2026-07-29 05:29:04