@asoftwareworld/qrcode
v2.0.5
Published
ASW QR Code library for generating QR Code for Angular projects.
Downloads
335
Maintainers
Readme
Install ASW QR Code
Install QR Code
to set up in the project by running the following command:
npm install @asoftwareworld/qrcode
Import the component modules
Import the NgModule for each component you want to use:
import { AswQrCodeModule } from '@asoftwareworld/qrcode';
// ...
@NgModule({
imports: [
// shown passing global defaults (optional)
AswQrCodeModule
...
]
// ...
})
export class AppModule {}
Add a selector to HTML
In your template, use the component selector:
<div class="card">
<div class="header">
<h2>QR code</h2>
</div>
<div class="body">
<div class="row">
<div class="col-md-12 text-center">
<div class="qrcodeImage">
<asw-qr-code #parent [qrData]="qrdata" [width]="option.width" [height]="option.height"
[outerMargin]="option.outerMargin" [type]="option.type" [allowEmptyString]="true"
[logo]="option.logo"
[density]="option.density" [backgroundColor]="option.backgroundColor"
[logoStyle]="option.logoStyle" [middleShape]="option.middleShape"
[cornerInnerShape]="option.cornerInnerShape" [cornerOuterShape]="option.cornerOuterShape">
</asw-qr-code>
</div>
<div class="downloadButton">
<button mat-icon-button [matMenuTriggerFor]="menu" matTooltip="Download QR Code">
<mat-icon>download</mat-icon>
</button>
<mat-menu #menu="matMenu">
<button mat-menu-item (click)="parent.download({extension: 'svg', name: 'asw'})">
<span>SVG</span>
</button>
<button mat-menu-item (click)="parent.download({extension: 'png', name: 'asw'})">
<span>PNG</span>
</button>
<button mat-menu-item (click)="parent.download({extension: 'jpeg', name: 'asw'})">
<span>JPEG</span>
</button>
<button mat-menu-item (click)="parent.download({extension: 'webp', name: 'asw'})">
<span>WEBP</span>
</button>
</mat-menu>
</div>
</div>
</div>
</div>
</div>
Define in your component to get published event :
export class AppComponent implements OnInit {
title = 'ASW QR Code Demo';
option: any;
drawTpes = [
{ label: 'SVG', value: 'svg' },
{ label: 'Canvas', value: 'canvas' },
];
density: Density = {
errorCorrectionLevel: 'Q',
mode: 'Byte',
typeNumber: 0
};
logoStyle: LogoStyle = {
hideBackgroundCircle: true,
logoSize: 0.3,
logoMargin: 0
};
backgroundColor = '#ffffff';
middleShape: MiddleShape = {
color: '#000',
type: 'circle'
};
cornerInnerShape: CornerInnerShape = {
color: '#000',
type: 'circle'
};
cornerOuterShape: CornerOuterShape = {
color: '#000',
type: 'rounded'
};
public qrdata = 'https://asoftwareworld.com';
image = '';
ngOnInit(): void {
this.option = {
width: 200,
height: 200,
type: 'canvas',
logo: this.image,
outerMargin: 0,
density: this.density,
backgroundColor: this.backgroundColor,
logoStyle: this.logoStyle,
cornerInnerShape: this.cornerInnerShape,
cornerOuterShape: this.cornerOuterShape,
middleShape: this.middleShape
};
}
}
List of Input parameters
| Input parameters| Default value | Description |
| --------------- | ----------------------|----------------------------------------------------------------------------------------- |
| width: number (optional) | 200 | width refers to the horizontal measurement of the generated QR code, typically measured in pixels. |
| height: number (optional) | 200 | height refers to the vertical measurement of the generated QR code, typically measured in pixels. |
| type: string ('canvas' | 'svg') (optional) | canvas | The type of element that will be rendered for QR code generation can be either a Canvas or SVG element.|
| allowEmptyString: boolean (optional) | false | Allow qrdata to be an empty string. |
| qrData: string (optional)| | The data will be encoded to the QR code |
| outerMargin: number (optional)| 0 | Outer margin around a Canvas or SVG element. |
| backgroundColor: string (optional)| #fff
| The background color of a QR code refers to the color of the empty space surrounding the QR code modules. By default, the background color is white, but it can be customized to any other color. |
| density: Density (optional) | { typeNumber: 0, mode: 'Byte', errorCorrectionLevel: 'Q' }| typeNumber: The numeric value that represents the type of QR code being generated. A higher value results in a denser QR code with more data capacity. A value of 0 means that the type number will be determined automatically based on the data to be encoded. mode: The data encoding mode used to convert the input data into a sequence of bits that can be represented in the QR code. In this case, the Byte mode is being used, which allows encoding of all 256 possible characters using 8 bits per character. errorCorrectionLevel: The level of error correction used in the QR code. QR codes have the ability to recover data if part of the code is damaged or unreadable due to smudging or other issues. This is achieved by adding redundant data to the code that allows the QR code reader to correct errors. There are four levels of error correction available, with Q being the third-highest level of error correction. |
| logoStyle: LogoStyle (optional) | { hideBackgroundCircle: true, logoSize: 0.4, logoMargin: 20, crossOrigin: 'anonymous', } | hideBackgroundCircle: A boolean value that indicates whether the background circle of the QR code should be hidden or not. If set to true, the background circle will be hidden, otherwise it will be visible. logoSize: A numeric value that represents the size of the logo image to be overlaid on the QR code. The value is a percentage of the size of the QR code image, with 1.0 representing 100% of the QR code size. In this case, the logo will be 40% of the size of the QR code. logoMargin: A numeric value that represents the margin between the logo and the QR code image. The value is in pixels and can be used to adjust the positioning of the logo on the QR code. crossOrigin: A string value that specifies whether to use CORS (Cross-Origin Resource Sharing) for the logo image. The value can be set to anonymous to indicate that the logo image should be loaded without any credentials, or use-credentials to indicate that the logo image should be loaded with credentials. |
| middleShape: MiddleShape (optional) | { color: #000
, type: smooth
} | color: A string value that represents the color of the center dots of the QR code. In this case, the color is set to black #000
. type: A string value that represents the type of center dots to be used in the QR code. In this case, the type is set to smooth, which means that the center dots will be slightly rounded and have a smoother appearance.|
| cornerInnerShape: CornerInnerShape (optional) | { color: #000
}| color: A string value that represents the color of the inner corner shapes of the QR code. The inner corner shapes are the small squares or dots located at the corners of the QR code. In this case, the color is set to black #000
.|
| cornerOuterShape: CornerOuterShape (optional)| { color: #000
} | color: A string value that represents the color of the outer corner shapes of the QR code. The outer corner shapes are the large squares or dots located at the corners of the QR code. In this case, the color is set to black #000
.|
Density property
| Input parameters| type | Default value | Description |
| --------------- | -----|-----------------|----------------------------------------------------------------------------------------- |
|typeNumber|number (0 - 40)|0| The typeNumber property determines the size of the QR code to be generated.The value of typeNumber should be an integer between 0 and 40.The higher the typeNumber, the larger the QR code generated.|
|mode|string (Numeric
Alphanumeric
Byte
Kanji
)|'Byte'| Numeric mode only allows numeric characters (0-9).Alphanumeric mode allows a wider range of characters including uppercase letters, numeric characters, and some symbols.Byte mode allows for any 8-bit character to be encoded, including non-Latin characters.Kanji mode is specifically designed for Japanese characters.|
|errorCorrectionLevel|string (L
M
Q
H
)|Q
| L stands for Low error correction level and can recover up to 7% of data loss.M stands for Medium error correction level and can recover up to 15% of data loss.Q stands for Quartile error correction level and can recover up to 25% of data loss.H stands for High error correction level and can recover up to 30% of data loss.|
Middle Shape property
| Input parameters| type | Default value |
| --------------- | -----|-----------------|
|color|string|#000
|
|type|string (circle
rounded
smooth
smooth-rounded
square
thin-rounded
)|smooth
|
Corner Inner Shape property
| Input parameters| type | Default value |
| --------------- | -----|-----------------|
|color|string|#000
|
|type|string (circle
square
)||
Corner Outer Shape property
| Input parameters| type | Default value |
| --------------- | -----|-----------------|
|color|string|#000
|
|type|string (circle
square
rounded
)||
Download QR code
| Input parameters| type | Default value |Description|
| --------------- | -----|-----------------|-----------|
|name|string|string|asw-qr
|Name of the downloaded file|
|extension|string (png
jpeg
svg
webp
)|png
|File extension|
Browser Support
| | | | | | | ---------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ |
Report a bug
We use GitHub Issues as the official bug tracker for the ASW QR Code. Here are some advices for our users that want to report an issue:
- Make sure that you are using the latest version of the ASW QR Code.
- Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
- Some issues may be browser specific, so specifying in what browser you encountered the issue might help.
Technical Support or Questions
If you have questions or need help please email [email protected]
License
Social Media
Twitter: https://twitter.com/asoftwareworld
LinkedIn: https://in.linkedin.com/company/asoftwareworld
Youtube: https://www.youtube.com/@asoftwareworld
Facebook: https://www.facebook.com/asoftwaresworld
Donate
If you found value in ASW QR Code
or a contributor helped you out of a jam, consider becoming a contributor yourself.