用于跨平臺(tái)開(kāi)發(fā)的圖像API 用于繪制、操作、轉(zhuǎn)換和轉(zhuǎn)換圖像的本地API。
標(biāo)簽:圖像處理aspose開(kāi)發(fā)商: ASPOSE
當(dāng)前版本: v25.6
產(chǎn)品類(lèi)型:控件
產(chǎn)品功能:位圖圖像處理
平臺(tái)語(yǔ)言:.NET|Java
開(kāi)源水平:不提供源碼
本產(chǎn)品的分類(lèi)與介紹僅供參考,具體以商家網(wǎng)站介紹為準(zhǔn),如有疑問(wèn)請(qǐng)來(lái)電 023-68661681 咨詢(xún)。
鑰匙 | 概括 | 類(lèi)別 |
---|---|---|
IMAGINGJAVA-8965 | 保存圖像時(shí)不使用 PNG CompressionLevel | 特征 |
IMAGINGJAVA-8972 | NullReferenceException:在 PNG 和任何矢量圖像格式中轉(zhuǎn)換 CMX 時(shí) | 增強(qiáng) |
IMAGINGJAVA-8971 | 無(wú)法將 ICO 圖像轉(zhuǎn)換為 JPG 格式 | 增強(qiáng) |
IMAGINGJAVA-8970 | 無(wú)法打開(kāi) CMX 圖像 | 增強(qiáng) |
IMAGINGJAVA-8155 | 無(wú)法將 DCM 轉(zhuǎn)換為 PNG | 增強(qiáng) |
IMAGINGJAVA-8972 NullReferenceException:在 PNG 和任何矢量圖像格式的 CMX 轉(zhuǎn)換過(guò)程中
try (Image cmxImage = Image.load("complex_example.cmx"))
{
cmxImage.save("complex_example.cmx.png", new PngOptions());
cmxImage.save("complex_example.cmx.emf", new EmfOptions()); // NO Exception here
}
IMAGINGJAVA-8971 無(wú)法將 ICO 圖像轉(zhuǎn)換為 JPG 格式
String inputPath = "input.ico";
String outputPath = inputPath + ".jpg";
try (Image image = Image.load(inputPath))
{
image.save(outputPath);
}
IMAGINGJAVA-8970 無(wú)法打開(kāi) CMX 圖像
The following code creates 11 png files that are differently compressed.
try (Image image = Image.load("input.png"))
{
for (int compression = 0; compression <= 10; compression++)
{
String outputFile = String.format("compressionTest%d.png", compression);
image.save(outputFile, new PngOptions()
{{
setPngCompressionLevel(compression);
}});
}
}
IMAGINGJAVA-8155 無(wú)法將 DCM 轉(zhuǎn)換為 PNG
License lic = new License();
lic.setLicense(""); // reset license to evaluation
try (Image image = Image.load("IMG00001.dcm"))
{
image.save("file-png.png", new PngOptions());
}
更新時(shí)間:2025-06-12 10:34:42.000 | 錄入時(shí)間:2007-06-27 00:00:00.000 | 責(zé)任編輯:吉煒煒