Save Generated Barcodes

This article outlines the ways of outputting generated barcode images as files, streams, or bitmaps, as well as various raster (PNG, JPEG, BMP, GIF, and TIFF) and vector (SVG and EMF) image file formats.

Overview

During barcode generation, it may be required to save barcode images not only in common raster image formats but also as streams or vector files. Aspose.BarCode for Node.js via Java enables different options of saving generated barcodes: five common image formats, two vector formats, and some other ways, such as outputting barcode labels to a file, stream, or a bitmap). These options are discussed further.

Saving to File

Aspose.BarCode for Node.js via Java enables saving generated barcode images as files in the desired format.

Saving to Stream

It may be necessary to output generated barcode images in the form of a stream, in other words, in a binary format. A stream can be viewed as a byte sequence abstraction. To save barcode images as streams, class BarcodeGenerator provides the public method save.

Saving as Bitmap

Aspose.BarCode for Node.js via Java enables saving barcode images in the form of bitmap objects and then converting it to the required format or using it in graphical transformations. These objects can be fetched from instances of class BarcodeGenerator through the generateBarCodeImage method and then processed further.

Raster Image Formats

In Aspose.BarCode for Node.js via Java, barcode images can be saved to common raster image formats, namely, PNG, GIF, BMP, JPEG, and TIFF. The value of the BarCodeImageFormat global property can be passed as the second argument to the save(filePath, format) method of class BarcodeGenerator to save barcode images in the specified format. The description of all supported image formats is given further.

BMP Format

BMP images are bitmap files that store bitmap digital images regardless of a graphics adapter. The BMP file format enables storing information as two-dimensional digital images in monochrome and color formats with different color depths. Using the BMP format for image generation results in producing images without compression. In this case, barcode images will have large size and 24-bit color depth. Moreover, they will not contain losses and artifacts.

The sample BMP barcode image is given below.

PNG Format

Portable Network Graphics (PNG) is a raster image format that is used for lossless data compression. This format is the most preferable to generate barcode labels. Images created using this format have 32-bit color depth and no losses.

The sample barcode image in the PNG format is provided below.

GIF Format

Graphics Interchange Format (GIF) is a lossless raster file format that supports only 256 colors and enables creating both static and animated images. Aspose.BarCode for Node.js via Java allows using this format only for black and white raster images. The code following code snippet explains how to generate barcodes in the GIF format.

The GIF barcode image generated using this code is shown below.

JPEG Format

JPEG is a common image file format used for lossy and compressed image data. As a result of compression, generating JPEG images require finding a trade-off between image quality and storage size and therefore often have artifacts and graphical noises. This file format is not recommended for barcode generation. The following code sample shows how to create JPEG barcode images.

The example of a JPEG barcode image is given below.

TIFF (TIFFInCMYK) Format

Tagged Image File Format (TIFF) is a lossless raster image format that allows creating images of very high quality and 32-bit color. Only a variation of this format, TIFFInCMYK, supports the CMYK color scheme. The code snippet provided below explains how to generate barcode images in the TIFF format.

TIFF and TIFFInCMYK barcode images are given below.

Output Format TIFF TIFFInCMYK

Vector Image Formats

Vector image formats represent images as a set of graphical operations executed consequently on a graphics unit. Vector images can be generated through mathematical formulas that specify points on a grid. This format allows scaling without resolution losses. Accordingly, vector image formats may be more suitable than raster ones in some cases. Aspose.BarCode for Node.js via Java supports outputting barcode images in two vector formats: EMF and SVG.

EMF Format

Enhanced Metafile (EMF) is a vector image format that is device-independent and is commonly used in Windows operating systems for printing tasks. An EMF image file comprise variable-length records in chronological order. Then, a vector image can be rendered on any output device. Such records can serve to represent objects, drawing commands, and graphics parameters that are critical to render vector images. When a digital device opens an EMF metafile through its graphics environment, dimension paraneters, proportions, color scheme, and other graphics properties of the source image do not get altered on any platform.

SVG Format

Scalable Vector Graphics (SVG) corresponds to an vector image format based on XML. It is used to create two-dimensional images in web applications. In SVG images, the image appearance is described in XML text. Such files can be scaled to various size measures keeping resolution quality. Accordingly, this vector image format is suitable for websites and graphics printing owing to its capability to resize images in line with various design requirements.