Barcode as Bitmap

Is it possible to generate a barcode as a bitmap. I want to print it on a label.

Yes, you can use the following code:

procedure TForm1.Button1Click(Sender: TObject);
var
  bmp: TTMSFNCBitmap;
begin
  bmp := TMSFNCWXBarcode1.GetBarcode('MyBarCode');
  if Assigned(bmp) then
  begin
    //print bitmap
    bmp.Free;
  end;
end;