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
Copy file name to clipboardExpand all lines: QRCoder/ArtQRCode.cs
+26-4Lines changed: 26 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -53,10 +53,12 @@ public Bitmap GetGraphic(Bitmap backgroundImage = null)
53
53
/// <param name="pixelSizeFactor">Value between 0.0 to 1.0 that defines how big the module dots are. The bigger the value, the less round the dots will be.</param>
54
54
/// <param name="drawQuietZones">If true a white border is drawn around the whole QR Code</param>
55
55
/// <param name="quietZoneRenderingStyle">Style of the quiet zones</param>
56
+
/// <param name="backgroundImageStyle">Style of the background image (if set). Fill=spanning complete graphic; DataAreaOnly=Don't paint background into quietzone</param>
56
57
/// <param name="finderPatternImage">Optional image that should be used instead of the default finder patterns</param>
/// Defines how the background image (if set) shall be rendered.
249
+
/// </summary>
250
+
publicenumBackgroundImageStyle
251
+
{
252
+
Fill,
253
+
DataAreaOnly
254
+
}
235
255
}
236
256
237
257
publicstaticclassArtQRCodeHelper
@@ -253,16 +273,18 @@ public static class ArtQRCodeHelper
253
273
/// <param name="pixelSizeFactor">Value between 0.0 to 1.0 that defines how big the module dots are. The bigger the value, the less round the dots will be.</param>
254
274
/// <param name="drawQuietZones">If true a white border is drawn around the whole QR Code</param>
255
275
/// <param name="quietZoneRenderingStyle">Style of the quiet zones</param>
276
+
/// <param name="backgroundImageStyle">Style of the background image (if set). Fill=spanning complete graphic; DataAreaOnly=Don't paint background into quietzone</param>
256
277
/// <param name="finderPatternImage">Optional image that should be used instead of the default finder patterns</param>
0 commit comments