@@ -463,7 +463,7 @@ public T ToBitmap<T>()
463463 /// Create a new Bitmap from a a Byte Span.
464464 /// </summary>
465465 /// <param name="span">A Byte Span of image data in any common format.</param>
466- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
466+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
467467 /// Default is true. Set to false to load as Rgba32.</param>
468468 public static AnyBitmap FromSpan ( ReadOnlySpan < byte > span , bool preserveOriginalFormat = true )
469469 {
@@ -474,7 +474,7 @@ public static AnyBitmap FromSpan(ReadOnlySpan<byte> span, bool preserveOriginalF
474474 /// Create a new Bitmap from a a Byte Array.
475475 /// </summary>
476476 /// <param name="bytes">A ByteArray of image data in any common format.</param>
477- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
477+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
478478 /// Default is true. Set to false to load as Rgba32.</param>
479479 public static AnyBitmap FromBytes ( byte [ ] bytes , bool preserveOriginalFormat = true )
480480 {
@@ -485,7 +485,7 @@ public static AnyBitmap FromBytes(byte[] bytes, bool preserveOriginalFormat = tr
485485 /// Create a new Bitmap from a <see cref="Stream"/> (bytes).
486486 /// </summary>
487487 /// <param name="stream">A <see cref="Stream"/> of image data in any common format.</param>
488- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
488+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
489489 /// Default is true. Set to false to load as Rgba32.</param>
490490 /// <seealso cref="FromStream(Stream, bool)"/>
491491 /// <seealso cref="AnyBitmap"/>
@@ -498,7 +498,7 @@ public static AnyBitmap FromStream(MemoryStream stream, bool preserveOriginalFor
498498 /// Create a new Bitmap from a <see cref="Stream"/> (bytes).
499499 /// </summary>
500500 /// <param name="stream">A <see cref="Stream"/> of image data in any common format.</param>
501- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
501+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
502502 /// Default is true. Set to false to load as Rgba32.</param>
503503 /// <seealso cref="FromStream(MemoryStream, bool)"/>
504504 /// <seealso cref="AnyBitmap"/>
@@ -511,7 +511,7 @@ public static AnyBitmap FromStream(Stream stream, bool preserveOriginalFormat =
511511 /// Construct a new Bitmap from binary data (byte span).
512512 /// </summary>
513513 /// <param name="span">A byte span of image data in any common format.</param>
514- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
514+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
515515 /// Default is true. Set to false to load as Rgba32.</param>
516516 /// <seealso cref="AnyBitmap"/>
517517 public AnyBitmap ( ReadOnlySpan < byte > span , bool preserveOriginalFormat = true )
@@ -523,7 +523,7 @@ public AnyBitmap(ReadOnlySpan<byte> span, bool preserveOriginalFormat = true)
523523 /// Construct a new Bitmap from binary data (bytes).
524524 /// </summary>
525525 /// <param name="bytes">A ByteArray of image data in any common format.</param>
526- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
526+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
527527 /// Default is true. Set to false to load as Rgba32.</param>
528528 /// <seealso cref="FromBytes"/>
529529 /// <seealso cref="AnyBitmap"/>
@@ -536,7 +536,7 @@ public AnyBitmap(byte[] bytes, bool preserveOriginalFormat = true)
536536 /// Construct a new Bitmap from a <see cref="Stream"/> (bytes).
537537 /// </summary>
538538 /// <param name="stream">A <see cref="Stream"/> of image data in any common format.</param>
539- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
539+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
540540 /// Default is true. Set to false to load as Rgba32.</param>
541541 /// <seealso cref="FromStream(Stream, bool)"/>
542542 /// <seealso cref="AnyBitmap"/>
@@ -549,7 +549,7 @@ public AnyBitmap(MemoryStream stream, bool preserveOriginalFormat = true)
549549 /// Construct a new Bitmap from a <see cref="Stream"/> (bytes).
550550 /// </summary>
551551 /// <param name="stream">A <see cref="Stream"/> of image data in any common format.</param>
552- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
552+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
553553 /// Default is true. Set to false to load as Rgba32.</param>
554554 /// <seealso cref="FromStream(MemoryStream, bool)"/>
555555 /// <seealso cref="AnyBitmap"/>
@@ -574,7 +574,7 @@ public AnyBitmap(AnyBitmap original, int width, int height)
574574 /// Construct a new Bitmap from a file.
575575 /// </summary>
576576 /// <param name="file">A fully qualified file path./</param>
577- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
577+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
578578 /// Default is true. Set to false to load as Rgba32.</param>
579579 /// <seealso cref="FromFile"/>
580580 /// <seealso cref="AnyBitmap"/>
@@ -587,7 +587,7 @@ public AnyBitmap(string file, bool preserveOriginalFormat = true)
587587 /// Construct a new Bitmap from a Uri
588588 /// </summary>
589589 /// <param name="uri">The uri of the image.</param>
590- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
590+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
591591 /// Default is true. Set to false to load as Rgba32.</param>
592592 /// <seealso cref="FromUriAsync"/>
593593 /// <seealso cref="AnyBitmap"/>
@@ -619,7 +619,7 @@ public AnyBitmap(int width, int height, Color backgroundColor = null)
619619 /// Create a new Bitmap from a file.
620620 /// </summary>
621621 /// <param name="file">A fully qualified file path.</param>
622- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
622+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
623623 /// Default is true. Set to false to load as Rgba32.</param>
624624 /// <seealso cref="FromFile"/>
625625 /// <seealso cref="AnyBitmap"/>
@@ -639,7 +639,7 @@ public static AnyBitmap FromFile(string file, bool preserveOriginalFormat = true
639639 /// Construct a new Bitmap from a Uri
640640 /// </summary>
641641 /// <param name="uri">The uri of the image.</param>
642- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
642+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
643643 /// Default is true. Set to false to load as Rgba32.</param>
644644 /// <returns></returns>
645645 /// <seealso cref="AnyBitmap"/>
@@ -662,7 +662,7 @@ public static async Task<AnyBitmap> FromUriAsync(Uri uri, bool preserveOriginalF
662662 /// Construct a new Bitmap from a Uri
663663 /// </summary>
664664 /// <param name="uri">The uri of the image.</param>
665- /// <param name="preserveOriginalFormat">Determine whether load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
665+ /// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.
666666 /// Default is true. Set to false to load as Rgba32.</param>
667667 /// <returns></returns>
668668 /// <seealso cref="AnyBitmap"/>
0 commit comments