MarkBitmap 1.0.0-alpha.3

This is a prerelease version of MarkBitmap.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package MarkBitmap --version 1.0.0-alpha.3
NuGet\Install-Package MarkBitmap -Version 1.0.0-alpha.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MarkBitmap" Version="1.0.0-alpha.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MarkBitmap --version 1.0.0-alpha.3
#r "nuget: MarkBitmap, 1.0.0-alpha.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MarkBitmap as a Cake Addin
#addin nuget:?package=MarkBitmap&version=1.0.0-alpha.3&prerelease

// Install MarkBitmap as a Cake Tool
#tool nuget:?package=MarkBitmap&version=1.0.0-alpha.3&prerelease

MarkBitmap

MarkBitmap is a package to mark the bitmap images with geometric shapes.

⚠️ Alpha version. Experimantal only. Do not use.

MarkBitmap

Download on NuGet gallery

⚠️ Alpha version. Experimantal only. Do not use.

Description

MarkBitmap will consist different geometric shaped and more to mark bitmap files easily.

Example Usage

byte[] to byte[]

MarkHorizontally(Bitmap bitmap, int count, Color color)
MarkVertically(Bitmap bitmap, int count, Color color)
MarkDiagonally(Bitmap bitmap, int count, Color color)
MarkDiagonallyInverse(Bitmap bitmap, int count, Color color)

byte[] to byte[] Safe

MarkHorizontallySafe(Bitmap bitmap, int count, Color color)
MarkVerticallySafe(Bitmap bitmap, int count, Color color)
MarkDiagonallySafe(Bitmap bitmap, int count, Color color)
MarkDiagonallyInverseSafe(Bitmap bitmap, int count, Color color)

Version History

See changelog MarkBitmap changelog

Task list

  • Create an issue or check task list: Issues

Licence

MIT license

Authors

Twitter: Enes Okullu @enesokullu

Help

Twitter: Enes Okullu @enesokullu

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0-alpha.9 35 4/26/2024
1.0.0-alpha.8 41 4/8/2024
1.0.0-alpha.7 51 3/13/2024
1.0.0-alpha.5 51 3/6/2024
1.0.0-alpha.4 169 11/6/2023
1.0.0-alpha.3 58 10/19/2023
1.0.0-alpha.2 58 10/18/2023
1.0.0-alpha.1 63 10/7/2023
1.0.0-alpha 89 10/2/2023

v1.0.0-alpha.3
     
## Added
* `Image.GetPixelFormatSize()` added into `ToBuffer()` and not `depth` is used to create buffer.
* Method summaries.

## Changed
* Bug fixed on `Marshal.Copy()` on `ToBuffer()` which was causing data reading error.
* byte[] `MarkHorizontally()` method is fixed.
* byte[] `MarkVertically()` method is added and working.
* byte[] `MarkDiagonally()` method is added and not working.
* byte[] `MarkDiagonallyInverse` method is added and not working.

## Removed
* `MarkBuffer()` method is removed.
* `MarkBitmapInternal()` method is removed.
     
     See changelog (https://github.com/meokullu/MarkBitmap/blob/master/CHANGELOG.md)