mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 20:59:23 +08:00
40 lines
1.4 KiB
C#
40 lines
1.4 KiB
C#
using NTwain.Data;
|
|
using NTwain.Values;
|
|
using System;
|
|
|
|
namespace NTwain.Triplets
|
|
{
|
|
/// <summary>
|
|
/// Represents <see cref="DataArgumentType.RgbResponse"/>.
|
|
/// </summary>
|
|
public sealed class RgbResponse : OpBase
|
|
{
|
|
internal RgbResponse(ITwainStateInternal session) : base(session) { }
|
|
|
|
/// <summary>
|
|
/// Causes the Source to use its "identity" response curves for future RGB transfers. The identity
|
|
/// curve causes no change in the values of the captured data when it is applied. (Note that
|
|
/// resetting the curves for RGB data does not reset any curves for other pixel types).
|
|
/// </summary>
|
|
/// <param name="response">The response.</param>
|
|
/// <returns></returns>
|
|
public ReturnCode Reset(out TWRgbResponse response)
|
|
{
|
|
Session.VerifyState(4, 4, DataGroups.Image, DataArgumentType.RgbResponse, Message.Reset);
|
|
response = new TWRgbResponse();
|
|
return PInvoke.DsmEntry(Session.AppId, Session.SourceId, Message.Reset, response);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Causes the Source to transform any RGB data according to the response curves specified by the
|
|
/// application.
|
|
/// </summary>
|
|
/// <param name="response">The response.</param>
|
|
/// <returns></returns>
|
|
public ReturnCode Set(TWRgbResponse response)
|
|
{
|
|
Session.VerifyState(4, 4, DataGroups.Image, DataArgumentType.RgbResponse, Message.Set);
|
|
return PInvoke.DsmEntry(Session.AppId, Session.SourceId, Message.Set, response);
|
|
}
|
|
}
|
|
} |