製品を閲覧する

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.Imaging for .NET 22.3

ダウンロード  サポートフォーラム 

ファイルの詳細

  • ダウンロード:
  • 18
  • ファイルサイズ:
  • 38.5 MB
  • Posted By:
  • samer.el-khatib4aspose
  • ビュー:
  • 20
  • 追加日:
  • 3/7/2022

ファイルの詳細

DICOM タグのエクスポート

エクスポート時に DICOM の元のタグが失われるという問題がありました。現在、この問題は解決されており、元の DICOM タグはエクスポート後も保持されています。

using (DicomImage image = (DicomImage)Image.Load("IMG-0001-00001.dcm"))
{
    image.Save(outputFilePath);

    using (DicomImage imageSaved = (DicomImage)Image.Load("output1.dcm"))
    {
        bool isSuccess = Math.Abs(imageSaved.FileInfo.DicomInfo.Count - image.FileInfo.DicomInfo.Count) < 5;
    }
}

APS からベクトル化された PSD へのエクスポート

APS からベクトル化された PSD 形式に API 経由でエクスポートする機能を実装しました。

//Export vector image to PSD format keeping vector shapes

//Aspose.Imaging allows to export vector image formats such as CDR, EMF, EPS, ODG, SVG, WMF to the PSD format, 
//while keeping vector properties of the original, utilizing PSD Shapes, Paths //and Vector Masks.
//Currently, export of not very complex shapes is supported, whithout texture brushes or open shapes with stroke, 
//which will be improved in the upcoming releases.
//Example

//Export from the CDR format to the PSD format preserving vector 
//properties is as simple as the following snippet:

using (Image image = Imaging.Image.Load("sample.cdr"))
{
    PsdOptions imageOptions = new PsdOptions()
    {
        VectorRasterizationOptions = options,
        VectorizationOptions = new PsdVectorizationOptions()
        {
            VectorDataCompositionMode = VectorDataCompositionMode.SeparateLayers
        }
    };
    imageOptions.VectorRasterizationOptions.PageWidth = image.Width;
    imageOptions.VectorRasterizationOptions.PageHeight = image.Height;

    image.Save(outputFileName, imageOptions);
}

トランスペアレント モードで PNG を BMP 32 ビットにエクスポート

以前は、一部の PNG から BMP 32 ビットへのエクスポート インスタンスで、透明度が失われていました。現在、この問題は解決されています。

var sourcePath = "input.png"; // png image with alpha
var outputPath = "output-bmp.bmp";

using (Image pngImage = Image.Load(sourcePath))
{
    pngImage.Save(outputPath, new BmpOptions());
}

このリリースの機能、拡張機能、バグ修正の完全なリストについては、Aspose.Imaging for .NET 22.3 にアクセスしてください。

 日本