MemeFactory.Core.Abstraction
1.0.0-alpha.33
This is a prerelease version of MemeFactory.Core.Abstraction.
dotnet add package MemeFactory.Core.Abstraction --version 1.0.0-alpha.33
NuGet\Install-Package MemeFactory.Core.Abstraction -Version 1.0.0-alpha.33
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="MemeFactory.Core.Abstraction" Version="1.0.0-alpha.33" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MemeFactory.Core.Abstraction" Version="1.0.0-alpha.33" />
<PackageReference Include="MemeFactory.Core.Abstraction" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MemeFactory.Core.Abstraction --version 1.0.0-alpha.33
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MemeFactory.Core.Abstraction, 1.0.0-alpha.33"
#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.
#:package MemeFactory.Core.Abstraction@1.0.0-alpha.33
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MemeFactory.Core.Abstraction&version=1.0.0-alpha.33&prerelease
#tool nuget:?package=MemeFactory.Core.Abstraction&version=1.0.0-alpha.33&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
MemeFactory
A meme processing utility based on ImageSharp.
Install
<PackageReference Include="MemeFactory.Core" Version="1.0.0-alpha.28" />
Design
sequenceDiagram
participant Service
participant Sequence as Sequence
participant Processor as AsyncLinq Operations
Service ->> Service: prepare images
Service ->> Sequence: convert Image to Sequence
Sequence ->> Service: IAsyncEnumerable<Frame>
Service ->> Processor: transform frames
Processor ->> Processor: (optional) draw other image into frame
Processor ->> Processor: (optional) expand frame
Processor ->> Processor: (optional) or redraw every frame using AI!
Processor ->> Service: final IAsyncEnumerable<Frame>
Service ->> Sequence: Compose frame sequence to Image
Sequence ->> Service: Image/Encoder/File Extensions
Usage
Matting image using AI
<PackageReference Include="MemeFactory.Matting.Onnx" Version="1.0.0-alpha.28" />
IAsyncEnumerable<Frame> frames;
var model = new RmbgConfiguration("your_model_path");
using var result = frames.ApplyModel(model).AutoComposeAsync();
await result.Image.SaveAsync("result." + result.Extension, result.Encoder);
See also: RMBG-2.0 / ModNet / PaddleSeg/Matting
Note: Reference at least one ONNX runtime native package in your project.
Built-in Processors
Method | Description |
---|---|
DuplicateFrame | Duplicate every frame in sequence, e.g. 1234 to 1122334 |
Loop | Loop the entire sequence, e.g. 1234 to 12341234 |
FrameBasedZipSequence | Merge two sequences frame by frame |
AutoComposeAsync | Evaluate all processors and generate the final image, and the output format is determined by the count of the final sequence |
EachFrame | Apply a FrameProcessor to every frame |
Rotation | Rotate the sequence frame by frame while incrementing the angle each frame |
Sliding | Slide sequence from edge to edge |
TimelineSliding | Not only sliding the canvas, also including the timeline |
Flip | Flip every frame |
Resize | Resize every frame |
BackgroundColor | Replace the background color of every frame |
Glow | Apply a radial glow to every frame |
Vignette | Apply a radial vignette to every frame |
BokehBlur | Apply a Bokeh blur filter to every frame |
GaussianBlur | Apply a Gaussian blur filter to every frame |
GaussianSharpen | Apply a Gaussian sharpen filter to every frame |
BlackWhite | Apply a black white filter to every frame |
Invert | Apply a invert color filter to every frame |
Kodachrome | Apply a Kodachrome filter to every frame |
Polaroid | Apply a Polaroid filter to every frame |
Pixelate | Apply a pixelate filter to every frame |
Contrast | Adjust the contrast of every frame |
Opacity | Adjust the opacity of every frame |
Hue | Adjust the hue of every frame |
Saturate | Adjust the saturate of every frame |
Lightness | Adjust the lightness of every frame |
Brightness | Adjust the rightness of every frame |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- SixLabors.ImageSharp (>= 3.1.7)
- System.Linq.Async (>= 6.0.1)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on MemeFactory.Core.Abstraction:
Package | Downloads |
---|---|
MemeFactory.Core
A meme processing utility that provides many tools to generate meme. |
|
MemeFactory.Matting.Onnx
A meme processing utility that provides many tools to generate meme. |
|
MemeFactory.OpenCv
A meme processing utility that provides many tools to generate meme. |
|
MemeFactory.Ffmpeg
A meme processing utility that provides many tools to generate meme. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
1.0.0-alpha.33 | 196 | 3/17/2025 |