ntwain/NTwain/Triplets/DGImage/DGImage.GrayResponse.cs

38 lines
1.3 KiB
C#
Raw Normal View History

2014-04-03 07:13:15 +08:00
using NTwain.Data;
2014-04-21 04:57:38 +08:00
using NTwain.Internals;
2014-04-03 07:01:21 +08:00
namespace NTwain.Triplets
{
2014-04-05 10:19:16 +08:00
/// <summary>
/// Represents <see cref="DataArgumentType.GrayResponse"/>.
/// </summary>
2014-04-03 07:01:21 +08:00
public sealed class GrayResponse : OpBase
{
2014-04-06 04:48:28 +08:00
internal GrayResponse(ITwainStateInternal session) : base(session) { }
2014-04-03 07:01:21 +08:00
/// <summary>
/// The Reset operation causes the Source to use its "identity response curve." The identity
/// curve causes no change in the values of the captured data when it is applied.
/// </summary>
/// <param name="response">The response.</param>
/// <returns></returns>
public ReturnCode Reset(out TWGrayResponse response)
{
Session.VerifyState(4, 4, DataGroups.Image, DataArgumentType.GrayResponse, Message.Reset);
response = new TWGrayResponse();
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Reset, response);
2014-04-03 07:01:21 +08:00
}
/// <summary>
/// This operation causes the Source to transform any grayscale data according to the response
/// curve specified.
/// </summary>
/// <param name="response">The response.</param>
/// <returns></returns>
public ReturnCode Set(TWGrayResponse response)
{
Session.VerifyState(4, 4, DataGroups.Image, DataArgumentType.GrayResponse, Message.Set);
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Set, response);
2014-04-03 07:01:21 +08:00
}
}
}