File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Performance considerations
2
2
3
- Generating a QR Code is not a trivial task - it is a combination of countless complex mathematical operations.
3
+ Generating a QR Code is not a trivial task - it is a combination of countless complex mathematical operations on top of rendering the output .
4
4
5
5
This library seeks not to be the fastest QR Code generator, but instead to provide flexibility and user friendlyness,
6
6
which in turn comes with a slight performance cost.
@@ -12,7 +12,7 @@ The [version of the QR symbol](./Terminology.md#version) is one of the major per
12
12
determines the size of the symbol and therefore the amount of data that can be stored. Iterating over the internal
13
13
representation of the matrix takes more time with increasing size and the internals iterate over the matrix a LOT.
14
14
15
- Because of that you want of course to select the smallest possible version for the given data, which the encoder does by default.
15
+ Because of that, you want to select the smallest possible version for the given data of course , which the encoder does by default.
16
16
However, sometimes the possibly varying size of the symbol may not be desired and you want to choose a fixed size, in which case
17
17
you should determine the maximum size of the input data and choose a version that fits.
18
18
You can’t perform that action at this time.
0 commit comments