mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 20:59:23 +08:00
26 lines
866 B
C#
26 lines
866 B
C#
using NTwain.Data;
|
|
using NTwain.Internals;
|
|
|
|
namespace NTwain.Triplets
|
|
{
|
|
/// <summary>
|
|
/// Represents <see cref="DataArgumentType.IccProfile"/>.
|
|
/// </summary>
|
|
public sealed class IccProfile : OpBase
|
|
{
|
|
internal IccProfile(ITwainSessionInternal session) : base(session) { }
|
|
|
|
/// <summary>
|
|
/// This operation provides the application with the ICC profile associated with the image which is
|
|
/// about to be transferred (state 6) or is being transferred (state 7).
|
|
/// </summary>
|
|
/// <param name="profile">The profile.</param>
|
|
/// <returns></returns>
|
|
public ReturnCode Get(ref TWMemory profile)
|
|
{
|
|
Session.VerifyState(6, 7, DataGroups.Image, DataArgumentType.IccProfile, Message.Get);
|
|
profile = new TWMemory();
|
|
return Dsm.DsmEntry(Session.AppId, Session.SourceId, DataArgumentType.IccProfile, Message.Get, ref profile);
|
|
}
|
|
}
|
|
} |