Skip to content

Commit c190a16

Browse files
Update dependencies and release notes
1 parent 03d0a97 commit c190a16

File tree

3 files changed

+18
-20
lines changed

3 files changed

+18
-20
lines changed

IronSoftware.Drawing/IronSoftware.Drawing.Common/AnyBitmap.cs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -469,28 +469,28 @@ public static AnyBitmap FromSpan(ReadOnlySpan<byte> span)
469469
}
470470

471471
/// <summary>
472-
/// Create a new Bitmap from a a Byte Span.
472+
/// Create a new Bitmap from a a byte span.
473473
/// </summary>
474-
/// <param name="span">A Byte Span of image data in any common format.</param>
474+
/// <param name="span">A byte span of image data in any common format.</param>
475475
/// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.</param>
476476
public static AnyBitmap FromSpan(ReadOnlySpan<byte> span, bool preserveOriginalFormat)
477477
{
478478
return new AnyBitmap(span, preserveOriginalFormat);
479479
}
480480

481481
/// <summary>
482-
/// Create a new Bitmap from a a Byte Array.
482+
/// Create a new Bitmap from a a byte array.
483483
/// </summary>
484-
/// <param name="bytes">A ByteArray of image data in any common format.</param>
484+
/// <param name="bytes">A byte array of image data in any common format.</param>
485485
public static AnyBitmap FromBytes(byte[] bytes)
486486
{
487487
return new AnyBitmap(bytes, true);
488488
}
489489

490490
/// <summary>
491-
/// Create a new Bitmap from a a Byte Array.
491+
/// Create a new Bitmap from a a byte array.
492492
/// </summary>
493-
/// <param name="bytes">A ByteArray of image data in any common format.</param>
493+
/// <param name="bytes">A byte array of image data in any common format.</param>
494494
/// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.</param>
495495
public static AnyBitmap FromBytes(byte[] bytes, bool preserveOriginalFormat)
496496
{
@@ -555,7 +555,7 @@ public AnyBitmap(ReadOnlySpan<byte> span)
555555
}
556556

557557
/// <summary>
558-
/// Construct a new Bitmap from binary data (byte span).
558+
/// Construct a new Bitmap out of binary data with a byte span.
559559
/// </summary>
560560
/// <param name="span">A byte span of image data in any common format.</param>
561561
/// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.</param>
@@ -577,9 +577,9 @@ public AnyBitmap(byte[] bytes)
577577
}
578578

579579
/// <summary>
580-
/// Construct a new Bitmap from binary data (bytes).
580+
/// Construct a new Bitmap out of binary data with a byte array.
581581
/// </summary>
582-
/// <param name="bytes">A ByteArray of image data in any common format.</param>
582+
/// <param name="bytes">A byte array of image data in any common format.</param>
583583
/// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.</param>
584584
/// <seealso cref="FromBytes(byte[], bool)"/>
585585
/// <seealso cref="AnyBitmap"/>
@@ -670,7 +670,7 @@ public AnyBitmap(string file, bool preserveOriginalFormat)
670670
}
671671

672672
/// <summary>
673-
/// Construct a new Bitmap from a Uri
673+
/// Construct a new Bitmap from a Uri.
674674
/// </summary>
675675
/// <param name="uri">The uri of the image.</param>
676676
/// <seealso cref="FromUriAsync(Uri)"/>
@@ -689,7 +689,7 @@ public AnyBitmap(Uri uri)
689689
}
690690

691691
/// <summary>
692-
/// Construct a new Bitmap from a Uri
692+
/// Construct a new Bitmap from a Uri.
693693
/// </summary>
694694
/// <param name="uri">The uri of the image.</param>
695695
/// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.</param>
@@ -709,7 +709,7 @@ public AnyBitmap(Uri uri, bool preserveOriginalFormat)
709709
}
710710

711711
/// <summary>
712-
/// Construct a new Bitmap from width and height
712+
/// Construct a new Bitmap from width and height.
713713
/// </summary>
714714
/// <param name="width">Width of new AnyBitmap</param>
715715
/// <param name="height">Height of new AnyBitmap</param>
@@ -757,7 +757,7 @@ public static AnyBitmap FromFile(string file, bool preserveOriginalFormat)
757757
}
758758

759759
/// <summary>
760-
/// Construct a new Bitmap from a Uri
760+
/// Construct a new Bitmap from a Uri.
761761
/// </summary>
762762
/// <param name="uri">The uri of the image.</param>
763763
/// <returns></returns>
@@ -778,7 +778,7 @@ public static async Task<AnyBitmap> FromUriAsync(Uri uri)
778778
}
779779

780780
/// <summary>
781-
/// Construct a new Bitmap from a Uri
781+
/// Construct a new Bitmap from a Uri.
782782
/// </summary>
783783
/// <param name="uri">The uri of the image.</param>
784784
/// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.</param>
@@ -823,7 +823,7 @@ public static AnyBitmap FromUri(Uri uri)
823823
}
824824

825825
/// <summary>
826-
/// Construct a new Bitmap from a Uri
826+
/// Construct a new Bitmap from a Uri.
827827
/// </summary>
828828
/// <param name="uri">The uri of the image.</param>
829829
/// <param name="preserveOriginalFormat">Determine whether to load <see cref="SixLabors.ImageSharp.Image"/> as its original pixel format or Rgba32.</param>

IronSoftware.Drawing/IronSoftware.Drawing.Common/IronSoftware.Drawing.Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<Choose>
3636
<When Condition="'$(TargetFramework)' == 'net60'">
3737
<ItemGroup>
38-
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.8" />
38+
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.10" />
3939
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.6" />
4040
</ItemGroup>
4141
</When>

NuGet/IronSoftware.Drawing.nuspec

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ Supports:
3939

4040
For general support and technical inquiries, please email us at: [email protected]</description>
4141
<summary>IronSoftware.System.Drawing is an open-source solution for .NET developers to replace System.Drawing.Common with a universal and flexible library.</summary>
42-
<releaseNotes>- Updates internal dependencies.
43-
- Fixes the issue of some images are auto-rotated when loading as AnyBitmap.
44-
- Adds an option called preserveOriginalFormat to download input image as Rgba32 via AnyBitmap.</releaseNotes>
42+
<releaseNotes>- Updates internal dependencies.</releaseNotes>
4543
<copyright>Copyright © Iron Software 2022-2025</copyright>
4644
<tags>Images, Bitmap, SkiaSharp, SixLabors, BitMiracle, Maui, SVG, TIFF, TIF, GIF, JPEG, PNG, Color, Rectangle, Drawing, C#, VB.NET, ASPX, create, render, generate, standard, netstandard2.0, core, netcore</tags>
4745
<repository type="git" url="https://github.com/iron-software/IronSoftware.Drawing.Common" commit="$commit$" />
@@ -55,7 +53,7 @@ For general support and technical inquiries, please email us at: support@ironsof
5553
</group>
5654
<group targetFramework="net60">
5755
<dependency id="IronSoftware.Drawing.Abstractions" version="2025.4.2" />
58-
<dependency id="SixLabors.ImageSharp" version="3.1.8" />
56+
<dependency id="SixLabors.ImageSharp" version="3.1.10" />
5957
<dependency id="SixLabors.ImageSharp.Drawing" version="2.1.6" />
6058
<dependency id="BitMiracle.LibTiff.NET" version="2.4.649" />
6159
<dependency id="System.Memory" version="4.5.5" />

0 commit comments

Comments
 (0)