Bump Magick.NET-Q8-AnyCPU from 13.5.0 to 14.10.2#34169
Open
dependabot[bot] wants to merge 3 commits intomainfrom
Open
Bump Magick.NET-Q8-AnyCPU from 13.5.0 to 14.10.2#34169dependabot[bot] wants to merge 3 commits intomainfrom
dependabot[bot] wants to merge 3 commits intomainfrom
Conversation
--- updated-dependencies: - dependency-name: Magick.NET-Q8-AnyCPU dependency-version: 14.10.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Member
|
@copilot fix |
Contributor
Magick.NET v14 introduced several breaking changes that cause build failures after the 13.5.0 → 14.10.2 bump. ### Changes - **`MagickGeometry`**: width/height constructor params changed from `int` to `uint` → added `(uint)` casts - **`MagickImage.Width`/`Height`**: return type changed from `int` to `uint` → cast back to `int` at interface boundaries - **`RePage()`**: renamed to `ResetPage()` - **`Compare(image, metric, diffImage, channels)`**: overload removed; diff image is now returned directly from `Compare(image, CompareSettings, channels, out distortion)` ```csharp // Before MagickImage magickDiffImage = new MagickImage(); magickDiffImage.Format = MagickFormat.Png; double pct = baseline.Compare(actual, _errorMetric, magickDiffImage, Channels.Red); // After var settings = new CompareSettings(_errorMetric); using var magickDiffImage = baseline.Compare(actual, settings, Channels.Red, out _); magickDiffImage.Format = MagickFormat.Png; ``` <!-- START COPILOT CODING AGENT TIPS --> --- 💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more [Copilot coding agent tips](https://gh.io/copilot-coding-agent-tips) in the docs. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: PureWeen <5375137+PureWeen@users.noreply.github.com>
Member
|
Still broken src\Controls\tests\TestCases.Shared.Tests\UITest.cs(666,8) |
Contributor
After bumping Magick.NET-Q8-AnyCPU from 13.5.0 to 14.10.2, `UITest.cs` failed to compile due to two v14 breaking changes not addressed by the initial fix. ## Changes - **`ImageMagick.Drawing` namespace**: `Drawables` and all drawing classes moved out of `ImageMagick` into `ImageMagick.Drawing` in v14. Added the missing `using ImageMagick.Drawing;`. - **`MagickImage` constructor**: `(IMagickColor, uint width, uint height)` — width/height params changed from `int` to `uint`. Added `(uint)` casts on the `int` values sourced from `GetRect()`. ```csharp // Before (v13) using var surface = new MagickImage(MagickColors.Transparent, width, height); new Drawables() // CS0246: type not found — Drawables moved to ImageMagick.Drawing // After (v14) using ImageMagick.Drawing; // ... using var surface = new MagickImage(MagickColors.Transparent, (uint)width, (uint)height); new Drawables() // resolves correctly ``` <!-- START COPILOT CODING AGENT TIPS --> --- 💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more [Copilot coding agent tips](https://gh.io/copilot-coding-agent-tips) in the docs. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: PureWeen <5375137+PureWeen@users.noreply.github.com>
Member
|
/azp run maui-pr-uitests, maui-pr-devicetests |
|
Azure Pipelines successfully started running 2 pipeline(s). |
This was referenced Feb 22, 2026
Open
Contributor
Author
|
A newer version of Magick.NET-Q8-AnyCPU exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated Magick.NET-Q8-AnyCPU from 13.5.0 to 14.10.2.
Release notes
Sourced from Magick.NET-Q8-AnyCPU's releases.
14.10.2
Related changes in ImageMagick since the last release of Magick.NET:
identifydoesn't report resolution whenunits = undefinedImageMagick/ImageMagick#8496)Library updates:
Full Changelog: dlemstra/Magick.NET@14.10.1...14.10.2
14.10.1
Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
Full Changelog: dlemstra/Magick.NET@14.10.0...14.10.1
14.10.0
What's Changed
HighBitDepthto theJpegWriteDefines.Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
Full Changelog: dlemstra/Magick.NET@14.9.1...14.10.0
14.9.1
What's Changed
Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
Full Changelog: dlemstra/Magick.NET@14.8.2...14.9.0
14.9.0
What's Changed
StrokeDashArrayof theDrawingSettingstonull.ColorProfileto a newColorProfilesclass and mark them obsolete.Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
Full Changelog: dlemstra/Magick.NET@14.8.2...14.9.0
14.8.2
What's Changed
Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
Full Changelog: dlemstra/Magick.NET@14.8.1...14.8.2
14.8.1
What's Changed
Gravityoverload of theSplicemethod (#1881).Related changes in ImageMagick since the last release of Magick.NET:
-limit height/width(Fix infinite loop when decoding JXL with-limit height/widthImageMagick/ImageMagick#8303)Library updates:
Full Changelog: dlemstra/Magick.NET@14.8.0...14.8.1
14.8.0
What's Changed
Sf3toMagickFormat.Gravityoverload to theSplicemethod (#1881).TrimMemoryto theResourceLimits(#1854).Library updates:
Full Changelog: dlemstra/Magick.NET@14.7.0...14.8.0
14.7.0
What's Changed
Resizemethod that allows specifying the filter (#1819).ArrayPoolAPI in .NET Standard 2.1 or later to reduce the creation of LOH objects (#1812).XandYin thePointDstruct (#1856).MagickGeometryclass (#1855).IcntoMagickFormat.Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
Full Changelog: dlemstra/Magick.NET@14.6.0...14.7.0
14.6.0
What's Changed
PhaseCorrelationandDotProductCorrelationtoErrorMetric.MaxBayerPatternPixels,MaxChildrenPerBox,MaxComponents,MaxIlocExtentsPerItem,MaxItems,MaxNumberOfTilesandMaxSizeEntityGroupto theHeicReadDefines(#1807).ToBitmapmethod based upon ideas from (#1777).Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
Full Changelog: dlemstra/Magick.NET@14.5.0...14.6.0
14.5.0
What's Changed
ToWriteableBitmapWithDensityand changed the default DPI to 96 (#1781)CAT02LMSCtoColorSpace.Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
New Contributors
Full Changelog: dlemstra/Magick.NET@14.4.0...14.5.0
14.4.0
What's Changed
Full Changelog: dlemstra/Magick.NET@14.3.0...14.4.0
14.3.0
What's Changed
FrameCountis 1 when reading a MagickImage (#1761).ColorProfilethat has a name obsolete and only useiccas the name in the future.MagickImage.FormatExpression.Added missing interface inheritance (#1776).Magick.NET.AvaloniaMediaImaging(#1743).Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
Full Changelog: dlemstra/Magick.NET@14.2.0...14.3.0
14.2.0
What's Changed
MagicKernelSharp2013andMagicKernelSharp2021toFilterType.Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
Full Changelog: dlemstra/Magick.NET@14.1.0...14.2.0
14.1.0
What's Changed
biasvalue inAdaptiveThreshold(#1717)CloneAreatoIMagickImagethat will replace theCloneoverload with aMagickGeometry.CloneAndMutatetoIMagickImagethat can be used to efficiently clone and mutate an image (#1577).Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
New Contributors
Full Changelog: dlemstra/Magick.NET@14.0.0...14.1.0
14.0.0
Breaking changes in Magick.NET:
netstandard21support and changed this tonet8.0instead.IMagickImage:EncodingGeometry,IsDisposed.FormatInfoproperty (useMagickFormatInfo.Create(image.Format)instead).ChromaBluePrimary,ChromaGreenPrimary,ChromaRedPrimary,ChromaWhitePointproperties (useChromaticityinstead).Distortoverload that had both aDistortMethodandIDistortSettingsbecause the settings now contain aDistortMethodproperty.Deskewoverload that hadIDeskewSettingsand renamed it toDeskewAndCropbecause that was the only setting. And this also means thatIDeskewSettingsandDeskewSettingshave been removed from the library.MaptoRemap.RePagetoResetPage.Morphologyoverloads and only keep the method that usesMorphologySettings.Interlaceproperty is now readonly andMagickSettings.Interlaceshould be used to set this setting.ColorTypeproperty no longer returns the value of theMagickSettings.IMagickImageinstead ofdoublein theComparemethod overloads that had anIMagickImageand changed thedoublereturn value to anoutparam instead.PerceptualHashfromsRGBandHCLptoXyYandHSB.IMagickImageCollection:MaptoRemap.RePagetoResetPage.IChannelPerceptualHash:SrgbHuPhashandHclpHuPhash(HuPhash(colorspace, index)should be used instead).IEightBimValue:IDproperty (Idshould be used instead)IExifProfile:CreateThumbnailmethod is no longer be available for thenetstandard20target.IImageProfile:GetData(ToByteArrayorToReadOnlySpanshould be used instead).ToByteArraymethod will no longer returnnull.IPixelCollection:GetIndex(GetChannelIndexshould be used instead).Channels:Default,GraysandSync.CompareSettings:ErrorMetricproperty mandatory (through constructor) and immutable.ComplexSettings:ComplexOperatorproperty mandatory (through constructor) and immutable.DngReadDefinesUseAutoWhitebalanceproperty (UseAutoWhiteBalanceshould be used instead).UseCameraWhitebalanceproperty (UseCameraWhiteBalanceshould be used instead).DdsWriteDefines:Mipmapsproperty (MipmapCountshould be used instead).DrawableComposite:CompositeOperator.DrawablePushPattern:IDproperty (Idshould be used instead).ExifTag:TimeZoneOffsettoshort[].LogEventArgs:Messageproperty will no longer returnnull.OpenCLKernelProfileRecordAverageDurationproperty.... (truncated)
13.10.0
What's Changed
XDocumentorIXPathNavigableto aXmpProfile(#1652)UseAutoWhiteBalanceandUseCameraWhiteBalancein theDngReadDefines.ImageFormatequality comparison by @midare160 (#1668)XandYin ToString when it is specified in one of the constructors ofMagickGeometry(#1674).Fxoperation on aMagickImageCollection(#1616).PngWriteDefinesto Magick.NET by @cordeiro-rubens in (#1661)Related changes in ImageMagick since the last release of Magick.NET:
msvg:flattens curved paths too coarsely in upscaled SVGs ImageMagick/ImageMagick#7465)Library updates:
New Contributors
Full Changelog: dlemstra/Magick.NET@13.9.1...13.10.0
13.9.1
Changes in Magick.NET:
Full Changelog: dlemstra/Magick.NET@13.9.0...13.9.1
13.9.0
Changes in Magick.NET:
MetaChannelCounttoMagickImage(#1585)Clutmethod and and fixed bug that was found in (#1630).HaldClutmethod ofMagickImage.PointDforMagickImage.Resampleby @Gounlaf in (#1631)IMagickImage.ToBase64by @Gounlaf in (#1639)ToBase64variantMagickImageCollectionby @Gounlaf in (#1640)HashSetinstead of List by @Gounlaf in (#1642)GetChannelIndexto theIPixelCollectionthat will replaceGetIndexin the next major release.Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
Full Changelog: dlemstra/Magick.NET@13.8.0...13.9.0
13.8.0
Changes in Magick.NET:
MagickImage.MeanShiftby @Gounlaf in fix: add guards for MagickImage.MeanShift dlemstra/Magick.NET#1612ChromaUpsamplingto theHeicReadDefines.IMorphologySettings.csby @Gounlaf in typo: Update IMorphologySettings.cs dlemstra/Magick.NET#1617MagickImage.Morphologyby @Gounlaf in fix: add guard for MagickImage.Morphology dlemstra/Magick.NET#1618NoIdentifierto thePdfWriteDefines.NearLosslessof theWebPWriteDefinesobsolete because this was removed from ImageMagick.Dictionaryby @Gounlaf in perf: use index access to Dictionary dlemstra/Magick.NET#1621MagickImage.OilPaintby @Gounlaf in doc: missing Exception for MagickImage.OilPaint dlemstra/Magick.NET#1623PerceptualHashsummaries. by @Gounlaf in Remove typo in *PerceptualHash summaries. dlemstra/Magick.NET#1624Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
Full Changelog: dlemstra/Magick.NET@13.7.0...13.8.0
13.7.0
Changes in Magick.NET:
OffIfOpaquetoAlphaOption.AssumeAlphato theTiffReadDefines.WithInkscapeEnabledto theConfigurationFilesthat can be used to enableInkscapein the delegates.MagickImage.HoughLineby @Gounlaf in fix: add guards for MagickImage.HoughLine dlemstra/Magick.NET#1566Thumbnailto thePdfWriteDefines.MagickImage.Lowerby @Gounlaf in fix: add guards for MagickImage.Lower dlemstra/Magick.NET#1569MagickGeometryby @Gounlaf in opti: remove redundant tests before creating MagickGeometry dlemstra/Magick.NET#1571Versionto thePdfWriteDefines.RemoveProfiledoesn't throwMagickExceptionby @Gounlaf in doc: fix RemoveProfile doesn't throw MagickException dlemstra/Magick.NET#1579Percentageonly positive by @Gounlaf in feat: make Percentage only positive dlemstra/Magick.NET#1572MagickImage.SetBitDepthby @Gounlaf in fix: add guards for MagickImage.SetBitDepth dlemstra/Magick.NET#1580MagickImage.Statisticby @Gounlaf in fix: add guards for MagickImage.Statistic dlemstra/Magick.NET#1582MagickImage.Shaveby @Gounlaf in fix: add guards for MagickImage.Shave dlemstra/Magick.NET#1581OrientationtoMagickImageInfoby @ruairica in add orientation to MagickImageInfo dlemstra/Magick.NET#1588ToReadOnlySpantoIImageProfilefornetstandard21.IExifProfile.CreateThumbnailas obsolete innetstandard20.GetDataof theIImageProfileobsolete.MaxProfileSizeto theResourceLimits(#1607).Related changes in ImageMagick since the last release of Magick.NET:
Library updates:
... (truncated)
13.6.0
Changes in Magick.NET:
Related changes in ImageMagick since the last release of Magick.NET:
strokeattributes ImageMagick/ImageMagick#7097)Library updates:
... (truncated)
Commits viewable in compare view.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.