製品を閲覧する Toggle navigation
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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
API を介してテクスチャ ブラシをベクトル化された Adobe Photoshop® PSD 形式にエクスポートする機能。
CdrRasterizationOptions rasterizationOptions = new CdrRasterizationOptions(); PsdVectorizationOptions psdVectorizationOptions = new PsdVectorizationOptions() { VectorDataCompositionMode = VectorDataCompositionMode.SeparateLayers }; PsdOptions psdOptions = new PsdOptions() { VectorRasterizationOptions = rasterizationOptions, VectorizationOptions = psdVectorizationOptions }; string inputFileName = "brushes.cdr"; string outputFileName = "brushes.cdr.psd"; using (Image image = Image.Load(inputFileName)) { psdOptions.VectorRasterizationOptions.PageWidth = image.Width; psdOptions.VectorRasterizationOptions.PageHeight = image.Height; image.Save(outputFileName, psdOptions); }
このバージョンの画像処理 API では、透明度の処理と境界線の色の濃さによって、リサンプリングの品質が大幅に向上しています。
List<ResizeType> resizeTypes = new List<ResizeType>() { ResizeType.NearestNeighbourResample, ResizeType.AdaptiveResample, ResizeType.Bell, ResizeType.BilinearResample, ResizeType.CatmullRom, ResizeType.CubicBSpline, ResizeType.CubicConvolution, ResizeType.HighQualityResample, ResizeType.LanczosResample }; foreach (ResizeType resizeType in resizeTypes) { using (Image image = Image.Load("square-499.png")) { image.Resize(400, 400, resizeType); image.Save("square-499" + resizeType + ".png"); } }
TSPAN
以前は、SVG TSPAN 要素の配置に問題があった場合がありました。 API での SVG TSPAN 要素の処理を改善することで、これらの問題が解決されました。
const string baseFolder = @"D:\"; const string fileName = "w3c_tspan02.svg"; var inputFileName = Path.Combine(baseFolder, fileName); var outFileName = inputFileName + ".png"; using (Image image = Image.Load(inputFileName)) { image.Save(outFileName, new PngOptions()); }
このリリースの機能、拡張機能、バグ修正の完全なリストについては、Aspose.Imaging for .NET 22.4 にアクセスしてください。