You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Returns a strings that contains the resulting QR code as ASCII chars.
19
+
/// Returns a strings that contains the resulting QR code as textual representation.
20
20
/// </summary>
21
21
/// <param name="repeatPerModule">Number of repeated darkColorString/whiteSpaceString per module.</param>
22
22
/// <param name="darkColorString">String for use as dark color modules. In case of string make sure whiteSpaceString has the same length.</param>
23
23
/// <param name="whiteSpaceString">String for use as white modules (whitespace). In case of string make sure darkColorString has the same length.</param>
24
+
/// <param name="drawQuietZones">Bool that defines if quiet zones around the QR code shall be drawn</param>
24
25
/// <param name="endOfLine">End of line separator. (Default: \n)</param>
/// Returns an array of strings that contains each line of the resulting QR code as ASCII chars.
34
37
/// </summary>
35
38
/// <param name="repeatPerModule">Number of repeated darkColorString/whiteSpaceString per module.</param>
36
39
/// <param name="darkColorString">String for use as dark color modules. In case of string make sure whiteSpaceString has the same length.</param>
37
40
/// <param name="whiteSpaceString">String for use as white modules (whitespace). In case of string make sure darkColorString has the same length.</param>
41
+
/// <param name="drawQuietZones">Bool that defines if quiet zones around the QR code shall be drawn</param>
0 commit comments