Iron 608 function for ironocr#21
Merged
mee-ironsoftware merged 16 commits intomasterfrom Nov 14, 2022
Merged
Conversation
- ImageSharp not supported Images with different sizes, will read only first page - Add FrameCount for multi page image
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
reviewed
Nov 14, 2022
mbkrispy
approved these changes
Nov 14, 2022
Contributor
mbkrispy
left a comment
There was a problem hiding this comment.
I've suggested a few changes. But overall looks good. Thanks 👍
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.
AnyBitmap
Bug Fixed
Functional Added
Image manipulated
AnyBitmap.Clone(CropRectangle)to Clone image with CropRectangleAnyBitmap.BitsPerPixelto Gets colors depth, in number of bits per pixel.Tiff image manipulated
AnyBitmap.FrameCountto Gets the number of frames in our loaded Image. Each “frame” is a page of an image such as Tiff or Gif. All other image formats return 1.AnyBitmap.GetAllFramesto Gets all of the cloned frames in our loaded Image. Each "frame" is a page of an image such as Tiff or Gif. All other image formats return an IEnumerable of length 1.Create multiple page image
AnyBitmap.CreateMultiFrameTiff(IEnumerable<AnyBitmap>)to Creates a multi-frame TIFF image from multiple AnyBitmaps.AnyBitmap.CreateMultiFrameGif(IEnumerable<AnyBitmap>)to Creates a multi-frame GIF image from multiple AnyBitmaps.Color
Bug Fixed
Functional Added
Color.ToArgbto Gets the 32-bit ARGB value of this Color structure.CropRectangle
Bug Fixed
Functional Added