DicomOptions
内容
[
隐藏
]DicomOptions class
DICOM 文件格式创建选项。
public class DicomOptions : ImageOptionsBase
构造函数
姓名 | 描述 |
---|---|
DicomOptions() | 默认构造函数。 |
特性
姓名 | 描述 |
---|---|
BufferSizeHint { get; set; } | 获取或设置缓冲区大小提示,该提示定义了所有内部缓冲区的最大允许大小。 |
ColorType { get; set; } | 获取或设置颜色的类型。 |
Compression { get; set; } | 获取或设置压缩。 |
Disposed { get; } | 获取一个值,该值指示此实例是否被释放。 |
FullFrame { get; set; } | 获取或设置一个值,指示是否[全帧]. |
MultiPageOptions { get; set; } | 多页选项 |
virtual Palette { get; set; } | 获取或设置调色板。 |
ProgressEventHandler { get; set; } | 获取或设置进度事件处理程序。 |
virtual ResolutionSettings { get; set; } | 获取或设置分辨率设置。 |
Source { get; set; } | 获取或设置要在其中创建图像的源。 |
VectorRasterizationOptions { get; set; } | 获取或设置矢量光栅化选项。 |
override XmpData { get; set; } | 获取或设置 Xmp 数据。 |
方法
姓名 | 描述 |
---|---|
virtual Clone() | 克隆此实例。 |
Dispose() | 处理当前实例。 |
例子
在 DICOM 压缩中更改颜色类型。
[C#]
using (var inputImage = Image.Load("original.jpg"))
{
var options = new DicomOptions { ColorType = ColorType.Grayscale8Bit };
inputImage.Save("original_8Bit.dcm", options);
}
在 DICOM 图像中使用 RLE 压缩。
[C#]
using (var inputImage = Image.Load("original.jpg"))
{
var options = new DicomOptions
{
ColorType = ColorType.Rgb24Bit,
Compression = new Compression { Type = CompressionType.Rle }
};
inputImage.Save("original_RLE.dcm", options);
}
在 DICOM 图像中使用 JPEG 2000 压缩。
[C#]
using (var inputImage = Image.Load("original.jpg"))
{
var options = new DicomOptions
{
ColorType = ColorType.Rgb24Bit,
Compression = new Compression
{
Type = CompressionType.Jpeg2000,
Jpeg2000 = new Jpeg2000Options
{
Codec = Jpeg2000Codec.Jp2,
Irreversible = false
}
}
};
inputImage.Save("original_JPEG2000.dcm", options);
}
在 DICOM 图像中使用 JPEG 压缩。
[C#]
using (var inputImage = Image.Load("original.jpg"))
{
var options = new DicomOptions
{
ColorType = ColorType.Rgb24Bit,
Compression = new Compression
{
Type = CompressionType.Jpeg,
Jpeg = new JpegOptions
{
CompressionType = JpegCompressionMode.Baseline,
SampleRoundingMode = SampleRoundingMode.Truncate,
Quality = 50
}
}
};
inputImage.Save("original_JPEG.dcm", options);
}
以下示例显示导出为 DICOM 文件格式(单页和多页)。
[C#]
string fileName = "sample.jpg";
string inputFileNameSingle = fileName;
string inputFileNameMultipage = "multipage.tif";
string outputFileNameSingleDcm = "output.dcm";
string outputFileNameMultipageDcm = "outputMultipage.dcm";
// 下一个代码示例将 JPEG 图像转换为 DICOM 文件格式
using (var image = Aspose.Imaging.Image.Load(inputFileNameSingle))
{
image.Save(outputFileNameSingleDcm, new Aspose.Imaging.ImageOptions.DicomOptions());
}
// DICOM 格式支持多页图像。您可以像 JPEG 图像一样将 GIF 或 TIFF 图像转换为 DICOM
using (var imageMultiple = Aspose.Imaging.Image.Load(inputFileNameMultipage))
{
imageMultiple.Save(outputFileNameMultipageDcm, new Aspose.Imaging.ImageOptions.DicomOptions());
}
创建多页 Dicom 图像。
[C#]
using (DicomImage image = (DicomImage)Image.Create(
new DicomOptions() { Source = new StreamSource(new MemoryStream()) },
100,
100))
{
// 使用矢量图形绘制一些东西
Graphics graphics = new Graphics(image);
graphics.FillRectangle(new SolidBrush(Color.BlueViolet), image.Bounds);
graphics.FillRectangle(new SolidBrush(Color.Aqua), 10, 20, 50, 20);
graphics.FillEllipse(new SolidBrush(Color.Orange), 30, 50, 70, 30);
// 保存绘制图像的像素。它们现在位于 Dicom 图像的第一页。
int[] pixels = image.LoadArgb32Pixels(image.Bounds);
// 之后添加几页,使它们变暗
for (int i = 1; i < 5; i++)
{
DicomPage page = image.AddPage();
page.SaveArgb32Pixels(page.Bounds, pixels);
page.AdjustBrightness(i * 30);
}
// 在主页面前面添加几页,使它们更亮
for (int i = 1; i < 5; i++)
{
DicomPage page = image.InsertPage(0);
page.SaveArgb32Pixels(page.Bounds, pixels);
page.AdjustBrightness(-i * 30);
}
// 将创建的多页图片保存到输出文件
image.Save("MultiPage.dcm");
}