<?xml version="1.0"?>
<doc>
<assembly>
<name>SixLabors.ImageSharp</name>
</assembly>
<members>
<member name="T:SixLabors.ImageSharp.Advanced.AdvancedImageExtensions">
<summary>
Extension methods over Image{TPixel}
</summary>
</member>
<member name="M:SixLabors.ImageSharp.Advanced.AdvancedImageExtensions.DetectEncoder(SixLabors.ImageSharp.Image,System.String)">
<summary>
For a given file path find the best encoder to use via its extension.
</summary>
<param name="source">The source image.</param>
<param name="filePath">The target file path to save the image to.</param>
<exception cref="T:System.ArgumentNullException">The file path is null.</exception>
<exception cref="T:System.NotSupportedException">No encoder available for provided path.</exception>
<returns>The matching <see cref="T:SixLabors.ImageSharp.Formats.IImageEncoder"/>.</returns>
</member>
<member name="M:SixLabors.ImageSharp.Advanced.AdvancedImageExtensions.AcceptVisitor(SixLabors.ImageSharp.Image,SixLabors.ImageSharp.Advanced.IImageVisitor)">
<summary>
Accepts a <see cref="T:SixLabors.ImageSharp.Advanced.IImageVisitor"/> to implement a double-dispatch pattern in order to
apply pixel-specific operations on non-generic <see cref="T:SixLabors.ImageSharp.Image"/> instances
</summary>
<param name="source">The source image.</param>
<param name="visitor">The image visitor.</param>
</member>
<member name="M:SixLabors.ImageSharp.Advanced.AdvancedImageExtensions.AcceptVisitorAsync(SixLabors.ImageSharp.Image,SixLabors.ImageSharp.Advanced.IImageVisitorAsync,System.Threading.CancellationToken)">
<summary>
Accepts a <see cref="T:SixLabors.ImageSharp.Advanced.IImageVisitor"/> to implement a double-dispatch pattern in order to
apply pixel-specific operations on non-generic <see cref="T:SixLabors.ImageSharp.Image"/> instances
</summary>
<param name="source">The source image.</param>
<param name="visitor">The image visitor.</param>
<param name="cancellationToken">The token to monitor for cancellation requests.</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
</member>
<member name="M:SixLabors.ImageSharp.Advanced.AdvancedImageExtensions.GetConfiguration(SixLabors.ImageSharp.Image)">
<summary>
Gets the configuration for the image.
</summary>
<param name="source">The source image.</param>
<returns>Returns the configuration.</returns>
</member>
<member name="M:SixLabors.ImageSharp.Advanced.AdvancedImageExtensions.GetConfiguration(SixLabors.ImageSharp.ImageFrame)">
<summary>
Gets the configuration for the image frame.
</summary>
<param name="source">The source image.</param>
<returns>Returns the configuration.</returns>
</member>
<member name="M:SixLabors.ImageSharp.Advanced.AdvancedImageExtensions.GetConfiguration(SixLabors.ImageSharp.Advanced.IConfigurationProvider)">
<summary>
Gets the configuration.
</summary>
<param name="source">The source image</param>
<returns>Returns the bounds of the image</returns>
</member>
<member name="M:SixLabors.ImageSharp.Advanced.AdvancedImageExtensions.GetPixelMemoryGroup``1(SixLabors.ImageSharp.ImageFrame{``0})">
<summary>
Gets the representation of the pixels as a <see cref="T:SixLabors.ImageSharp.Memory.IMemoryGroup`1"/> containing the backing pixel data of the image
stored in row major order, as a list of contiguous <see cref="T:System.Memory`1"/> blocks in the source image's pixel format.
</summary>
<param name="source">The source image.</param>
<typeparam name="TPixel">The type of the pixel.</typeparam>
<returns>The <see cref="T:SixLabors.ImageSharp.Memory.IMemoryGroup`1"/>.</returns>
<remarks>
Certain Image Processors may invalidate the returned <see cref="T:SixLabors.ImageSharp.Memory.IMemoryGroup`1"/> and all it's buffers,
therefore it's not recommended to mutate the image while holding a reference to it's <see cref="T:SixLabors.ImageSharp.Memory.IMemoryGroup`1"/>.
</remarks>
</member>
<member name="M:SixLabors.ImageSharp.Advanced.AdvancedImageExtensions.GetPixelMemoryGroup``1(SixLabors.ImageSharp.Image{``0})">
<summary>
Gets the representation of the pixels as a <see cref="T:SixLabors.ImageSharp.Memory.IMemoryGroup`1"/> containing the backing pixel data of the image
stored in row major order, as a list of contiguous <see cref="T:System.Memory`1"/> blocks in the source image's pixel format.
</summary>
<param name="source">The source image.</param>
<typeparam name="TPixel">The type of the pixel.</typeparam>
<returns>The <see cref="T:SixLabors.ImageSharp.Memory.IMemoryGroup`1"/>.</returns>
<remarks>
Certain Image Processors may invalidate the returned <see cref="T:SixLabors.ImageSharp.Memory.IMemoryGroup`1"/> and all it's buffers,
therefore it's not recommended to mutate the image while holding a reference to it's <see cref="T:SixLabors.ImageSharp.Memory.IMemoryGroup`1"/>.
</remarks>
</member>
<member name="M:SixLabors.ImageSharp.Advanced.AdvancedImageExtensions.DangerousGetPixelRowMemory``1(SixLabors.ImageSharp.ImageFrame{``0},System.Int32)">
<summary>
Gets the representation of the pixels as a <see cref="T:System.Span`1"/> of contiguous memory
at row <paramref name="rowIndex"/> beginning from the the first pixel on that row.
</summary>
<typeparam name="TPixel">The type of the pixel.</typeparam>
<param name="source">The source.</param>
<param name="rowIndex">The row.</param>
<returns>The <see cref="T:System.Span`1"/></returns>
</member>
<member name="M:SixLabors.ImageSharp.Advanced.AdvancedImageExtensions.DangerousGetPixelRowMemory``1(SixLabors.ImageSharp.Image{``0},System.Int32)">
<summary>
Gets the representation of the pixels as <see cref="T:System.Span`1"/> of of contiguous memory
at row <paramref name="rowIndex"/> beginning from the the first pixel on that row.
</summary>
<typeparam name="TPixel">The type of the pixel.</typeparam>
<param name="source">The source.</param>
<param name="rowIndex">The row.</param>
<returns>The <see cref="T:System.Span`1"/></returns>
</member>
<member name="M:SixLabors.ImageSharp.Advanced.AdvancedImageExtensions.GetMemoryAllocator(SixLabors.ImageSharp.Advanced.IConfigurationProvider)">
<summary>
Gets the <see cref="T:SixLabors.ImageSharp.Memory.MemoryAllocator"/> assigned to 'source'.
</summary>
<param name="source">The source image.</param>
<returns>Returns the configuration.</returns>
</member>
<member name="T:SixLabors.ImageSharp.Advanced.AotCompilerTools">
<summary>
Unlike traditional Mono/.NET, code on the iPhone is statically compiled ahead of time instead of being
compiled on demand by a JIT compiler. This means there are a few limitations with respect to generics,
these are caused because not every possible generic instantiation can be determined up front at compile time.
The Aot Compiler is designed to overc
咕噜奥
- 粉丝: 6
- 资源: 4
最新资源
- Matlab_IEEE TVT中ris辅助双功能雷达通信系统联合波形设计与无源波束形成的Matlab代码.zip
- Matlab_IEEE TIP 2020高被引论文MatLab.zip
- Matlab_IEEE图像处理论文的Matlab代码:一种用于真实世界图像去噪的盲像素级非局部方法.zip
- Matlab_kShape的Matlab实现.zip
- Matlab_KMeans用于大数据预处理和稀疏化的Matlab实现Aka KMeans.zip
- Matlab_ifforest异常检测代码Matlab版.zip
- Matlab_LTE turbo码的编码器和解码器的Matlab仿真.zip
- Matlab_Manopt是一个Matlab工具箱,用于优化流形.zip
- Matlab_Letswave 6 Matlab脑电信号处理工具箱.zip
- 内网渗透讲义-全干货2024最新内网渗透讲解
- 2025最新英特尔手册完整中文版
- 计算机面试+Java+面试刷题相关图片+作为图片
- Nuclei POC 12W+合集
- 基于Matlab实现DOA与频率联合估计算法仿真(源码).rar
- 2024网络安全十大创新方向
- 低功耗可配置架构中HEVC解码器优化研究与应用
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈