mirror of
https://github.com/soukoku/ntwain.git
synced 2025-12-20 03:59:56 +08:00
172 lines
3.8 KiB
C#
172 lines
3.8 KiB
C#
// The MIT License (MIT)
|
|
// Copyright (c) 2013 Yin-Chun Wang
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
// to deal in the Software without restriction, including without limitation
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included
|
|
// in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
|
|
// OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
//
|
|
|
|
using System;
|
|
namespace NTwain.Triplets
|
|
{
|
|
/// <summary>
|
|
/// Class for grouping triplet operations under the Image data group.
|
|
/// </summary>
|
|
public sealed class DGImage
|
|
{
|
|
TwainSession _session;
|
|
internal DGImage(TwainSession session)
|
|
{
|
|
if (session == null) { throw new ArgumentNullException("session"); }
|
|
_session = session;
|
|
}
|
|
|
|
CieColor _cieColor;
|
|
public CieColor CieColor
|
|
{
|
|
get
|
|
{
|
|
if (_cieColor == null) { _cieColor = new CieColor(_session); }
|
|
return _cieColor;
|
|
}
|
|
}
|
|
|
|
|
|
ExtImageInfo _extImgInfo;
|
|
public ExtImageInfo ExtImageInfo
|
|
{
|
|
get
|
|
{
|
|
if (_extImgInfo == null) { _extImgInfo = new ExtImageInfo(_session); }
|
|
return _extImgInfo;
|
|
}
|
|
}
|
|
|
|
GrayResponse _grayResponse;
|
|
public GrayResponse GrayResponse
|
|
{
|
|
get
|
|
{
|
|
if (_grayResponse == null) { _grayResponse = new GrayResponse(_session); }
|
|
return _grayResponse;
|
|
}
|
|
}
|
|
|
|
IccProfile _iccProfile;
|
|
public IccProfile IccProfile
|
|
{
|
|
get
|
|
{
|
|
if (_iccProfile == null) { _iccProfile = new IccProfile(_session); }
|
|
return _iccProfile;
|
|
}
|
|
}
|
|
|
|
ImageFileXfer _imgFileXfer;
|
|
internal ImageFileXfer ImageFileXfer
|
|
{
|
|
get
|
|
{
|
|
if (_imgFileXfer == null) { _imgFileXfer = new ImageFileXfer(_session); }
|
|
return _imgFileXfer;
|
|
}
|
|
}
|
|
|
|
ImageInfo _imgInfo;
|
|
public ImageInfo ImageInfo
|
|
{
|
|
get
|
|
{
|
|
if (_imgInfo == null) { _imgInfo = new ImageInfo(_session); }
|
|
return _imgInfo;
|
|
}
|
|
}
|
|
|
|
ImageLayout _imgLayout;
|
|
public ImageLayout ImageLayout
|
|
{
|
|
get
|
|
{
|
|
if (_imgLayout == null) { _imgLayout = new ImageLayout(_session); }
|
|
return _imgLayout;
|
|
}
|
|
}
|
|
|
|
ImageMemFileXfer _imgMemFileXfer;
|
|
internal ImageMemFileXfer ImageMemFileXfer
|
|
{
|
|
get
|
|
{
|
|
if (_imgMemFileXfer == null) { _imgMemFileXfer = new ImageMemFileXfer(_session); }
|
|
return _imgMemFileXfer;
|
|
}
|
|
}
|
|
|
|
ImageMemXfer _imgMemXfer;
|
|
internal ImageMemXfer ImageMemXfer
|
|
{
|
|
get
|
|
{
|
|
if (_imgMemXfer == null) { _imgMemXfer = new ImageMemXfer(_session); }
|
|
return _imgMemXfer;
|
|
}
|
|
}
|
|
|
|
ImageNativeXfer _imgNativeXfer;
|
|
internal ImageNativeXfer ImageNativeXfer
|
|
{
|
|
get
|
|
{
|
|
if (_imgNativeXfer == null) { _imgNativeXfer = new ImageNativeXfer(_session); }
|
|
return _imgNativeXfer;
|
|
}
|
|
}
|
|
|
|
JpegCompression _jpegComp;
|
|
public JpegCompression JpegCompression
|
|
{
|
|
get
|
|
{
|
|
if (_jpegComp == null) { _jpegComp = new JpegCompression(_session); }
|
|
return _jpegComp;
|
|
}
|
|
}
|
|
|
|
Palette8 _palette8;
|
|
public Palette8 Palette8
|
|
{
|
|
get
|
|
{
|
|
if (_palette8 == null) { _palette8 = new Palette8(_session); }
|
|
return _palette8;
|
|
}
|
|
}
|
|
|
|
RgbResponse _rgbResp;
|
|
public RgbResponse RgbResponse
|
|
{
|
|
get
|
|
{
|
|
if (_rgbResp == null) { _rgbResp = new RgbResponse(_session); }
|
|
return _rgbResp;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|