製品を閲覧する 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.
JPG
.NET C# コードを介してプログラムで「JPG」の画質を構成します。
using (JpegImage image = (JpegImage)Image.Load("cat.jpg")) { bool isNotDefaultQuality = image.JpegOptions.Quality != 75; }
エラー メッセージを確認して、適切で使いやすいものにしてください。
try { // invalid CDR with no pages using (var image = Image.Load("city-auto-skf_2.cdr")) { } } catch (Exception e) { var correctMessage = "CDR document contains no pages."; if (e.InnerException.Message != correctMessage) { throw; } }
WMZ
PNG
圧縮された Windows Media Player® WMZ ファイルを PNG ラスター形式にエクスポートします。
using (var image = Image.Load("image.wmz")) { var options = new PngOptions { VectorRasterizationOptions = new WmfRasterizationOptions() { PageHeight = image.Height, PageWidth = image.Width } }; image.Save("result.png", options); }
このリリースの機能、拡張機能、バグ修正の完全なリストについては、Aspose.Imaging for .NET 22.8 - Release notes にアクセスしてください。