• Create, generate ISBN barcodes in C#.NET programs
  • Create high quality ISBN ISBN barcodes in Png, Gif, Jpeg, Tiff, or Bmp files in .NET projects using C#
  • Support to adjust width and height setting of the whole ISBN image
  • Support to select pixel, cm, inch as unit measurement for ISBN size
  • Support 2 & 5 digit supplemental data add-on
  • Mature ISBN barcode generating dll with royalty-free and perpetual developer license
Installation of .NET Barcode Generator in C# .NET
  1. Add BusinessRefinery.Barcode.Win.dll or BusinessRefinery.Barcode.Web.dll to your .NET project reference
  2. Add .NET Barcode Generator .NET Windows Control Library to .NET Visual Studio Toolbox
Setting ISBN Barcode Size in C#.NET
C# ISBN barcode provides a set of barcode size settings to specify you ISBN barcodes. Please download C# barcode component and install, copy those following code to your Visual Studio:
     Linear barcode = new Linear();
     barcode.Symbology = Symbology.ISBN;
     barcode.Code = "9876543210";
     

Basic


BarcodeUnit

BarcodeUnit is short for Unit of Measure, which is the unit of measure for all size related settings in the library.
     barcode.BarcodeUnit = BarcodeUnit.PIXEL;
     

ISBN Barcode Width Related Settings


BarWidth

BarWidth is the bar module width, which is also called X dimension.
     barcode.BarWidth = 5;
     
BarcodeWidth

BarcodeWidth is the ISBN barcode image width.
     barcode.BarcodeWidth = 200;
     
Left & Right Margin

LeftMargin is used to modify generated barcode image left margin, which is a white zone with nothing on it.
RightMargin is used to modify generated barcode image right margin.
     barcode.LeftMargin = 3;
     barcode.RightMargin = 5;
     

ISBN Barcode Height Related Settings


BarHeight

BarHeight is the ISBN bar module height, which is also called Y dimension.
     barcode.BarHeight = 5;
     
SupplementSpace

SupplementSpace is the space between the ISBN barcodes and supplemental data.
     barcode.SupplementSpace = 19;
     
Supplement Height

SupplementHeight is the height of the supplement data bar module. It is the N percent of Y (module height of ISSN barcode bar).
     barcode.SupplementSpace = 0.5f;
     
BarcodeHeight

BarcodeHeight is the ISBN barcode image height.
     barcode.BarcodeHeight = 150;
     
Top & Bottom Margin

TopMargin is used for specifying generated barcode image top margin.
BottomMargin is used for specifying generated barcode image bottom margin.
     barcode.TopMargin = 3;
     barcode.BottomMargin = 5;
    
Text Margin

TextMargin is the white margin between barcode and barcode text.
     barcode.TextMargin = 20;
    
Text Font

TextFont is used for customizing the human-readable characters size, color, font style under ISBN symbol.
     barcode.TextFont = new FontStyle("Arial", Font.PLAIN, 11);





Quick Links