# GetGraphic Method
Returns a strings that contains the resulting QR code as ASCII chars.
## Definition
**Namespace:** QRCoder.Core
**Assembly:** QRCoder.Core (in QRCoder.Core.dll) Version: 1.0.2+100b048b01076590efe500a3be242a5faeb43294
**XMLNS for XAML:** Not mapped to an xmlns.
**C#**
``` C#
public string GetGraphic(
int repeatPerModule,
string darkColorString = "██",
string whiteSpaceString = "",
bool drawQuietZones = true,
string endOfLine = ""
)
```
**C++**
``` C++
public:
String^ GetGraphic(
int repeatPerModule,
String^ darkColorString = L"██",
String^ whiteSpaceString = L"",
bool drawQuietZones = true,
String^ endOfLine = L""
)
```
#### Parameters
- Int32
- Number of repeated darkColorString/whiteSpaceString per module.
- String (Optional)
- String for use as dark color modules. In case of string make sure whiteSpaceString has the same length.
- String (Optional)
- String for use as white modules (whitespace). In case of string make sure darkColorString has the same length.
- Boolean (Optional)
- \[Missing <param name="drawQuietZones"/> documentation for "M:QRCoder.Core.AsciiQRCode.GetGraphic(System.Int32,System.String,System.String,System.Boolean,System.String)"\]
- String (Optional)
- End of line separator. (Default: \n)
#### Return Value
String
\[Missing <returns> documentation for "M:QRCoder.Core.AsciiQRCode.GetGraphic(System.Int32,System.String,System.String,System.Boolean,System.String)"\]
## See Also
#### Reference
AsciiQRCode Class
QRCoder.Core Namespace