DICOM画像のサポート

Contents
[ ]

DICOM規格は、全米電機製造者協会によって開発されました。この形式には、個々の画像フレーム、フレームのシリーズ、患者情報、研究、機器、機関、検査を行う医療スタッフなどの作成、保存、転送、および印刷の機能が含まれています。

以下のコードスニペットもAspose.PDF.Drawingライブラリで動作します。

Aspose.PDF for .NETは、PDFドキュメントにDICOM画像を追加する機能をサポートしています。以下のコードスニペットは、この機能を使用する方法を示しています。

// 完全な例とデータファイルについては、https://github.com/aspose-pdf/Aspose.PDF-for-.NET をご覧ください
// ドキュメントディレクトリへのパス。
string dataDir = RunExamples.GetDataDir_AsposePdf_Images();

using (Document pdfDocument = new Document())
{
    pdfDocument.Pages.Add();
    Aspose.Pdf.Image image = new Aspose.Pdf.Image();
    image.FileType = ImageFileType.Dicom;
    image.ImageStream = new FileStream(dataDir + "0002.dcm", FileMode.Open, FileAccess.Read);
    pdfDocument.Pages[1].Paragraphs.Add(image);
    // PDF形式として出力を保存
    pdfDocument.Save(dataDir + "PdfWithDicomImage_out.pdf");
}