2014-04-03 07:13:15 +08:00
|
|
|
|
using NTwain.Data;
|
2014-04-03 07:01:21 +08:00
|
|
|
|
using NTwain.Values;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
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-04 19:25:11 +08:00
|
|
|
|
internal GrayResponse(ITwainSessionInternal 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();
|
|
|
|
|
return PInvoke.DsmEntry(Session.AppId, Session.SourceId, Message.Reset, response);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <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);
|
|
|
|
|
return PInvoke.DsmEntry(Session.AppId, Session.SourceId, Message.Set, response);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|