ntwain/NTwain/Triplets/DGImage/DGImage.JpegCompression.cs

64 lines
2.4 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.JpegCompression"/>.
/// </summary>
2014-04-03 07:01:21 +08:00
public sealed class JpegCompression : OpBase
{
2014-04-06 04:48:28 +08:00
internal JpegCompression(ITwainStateInternal session) : base(session) { }
2014-04-03 07:01:21 +08:00
/// <summary>
/// Causes the Source to return the parameters that will be used during the compression of data
/// using the JPEG algorithms.
/// </summary>
/// <param name="compression">The compression.</param>
/// <returns></returns>
public ReturnCode Get(out TWJpegCompression compression)
{
Session.VerifyState(4, 6, DataGroups.Image, DataArgumentType.JpegCompression, Message.Get);
compression = new TWJpegCompression();
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Get, compression);
2014-04-03 07:01:21 +08:00
}
/// <summary>
/// Causes the Source to return the power-on default values applied to JPEG-compressed data
/// transfers.
/// </summary>
/// <param name="compression">The compression.</param>
/// <returns></returns>
public ReturnCode GetDefault(out TWJpegCompression compression)
{
Session.VerifyState(4, 6, DataGroups.Image, DataArgumentType.JpegCompression, Message.GetDefault);
compression = new TWJpegCompression();
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.GetDefault, compression);
2014-04-03 07:01:21 +08:00
}
/// <summary>
/// Return the Source to using its power-on default values for JPEG-compressed transfers.
/// </summary>
/// <param name="compression">The compression.</param>
/// <returns></returns>
public ReturnCode Reset(out TWJpegCompression compression)
{
Session.VerifyState(4, 4, DataGroups.Image, DataArgumentType.JpegCompression, Message.Reset);
compression = new TWJpegCompression();
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Reset, compression);
2014-04-03 07:01:21 +08:00
}
/// <summary>
/// Allows the application to configure the compression parameters to be used on all future JPEGcompressed
/// transfers during the current session. The application should have already
/// established that the requested values are supported by the Source.
/// </summary>
/// <param name="compression">The compression.</param>
/// <returns></returns>
public ReturnCode Set(TWJpegCompression compression)
{
Session.VerifyState(4, 4, DataGroups.Image, DataArgumentType.JpegCompression, Message.Set);
2014-04-16 18:53:05 +08:00
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Set, compression);
2014-04-03 07:01:21 +08:00
}
}
}