If you haven't any software to open AI file just use the online viewer tool. This app can help you to view AI file of any version. But the final result will the rendered preview. AI File is hard to view in the basic applications because AI is a vector format. Only vector viewer can open AI. AI Format is created by Adobe, it's a proprietary format. It has ".ai" extension. Most of the AI Viewer are the paid products, but if you don't need to edit Illustrator files you don't need any paid software for it. Just use View AI files Online with this app. Try this updated version of AI Viewer
You can reproduce the main functionality of this built-in app using Aspose.PSD for .NET
// To view the new AI format please use the following code:
async Task<bool> ViewPdfToPng(Stream pdfFileStream, string pngFileId, Size size)
{
pdfFileStream.Position = 0;
try
{
using var pdfDocument = new Aspose.Pdf.Document(pdfFileStream);
var page = pdfDocument.Pages[1];
using var imageStream = new MemoryStream();
Resolution resolution = new Resolution(300);
PngDevice pngDevice = new PngDevice(size.Width, size.Height, resolution);
pngDevice.Process(page, imageStream);
imageStream.Position = 0;
await StorageService.Upload(pngFileId, imageStream);
imageStream.Close();
return true;
}
catch (Aspose.Pdf.InvalidPdfFileFormatException)
{
return false;
}
}
// For the viewing of Old AI Formats please use the Aspose.PSD
using (AiImage image = (AiImage)Image.Load(sourceFileName))
{
ImageOptionsBase options = new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha };
image.Save(outFileName, options);
}
You can download Aspose.PSD for .NET from Nuget package manager
You can reproduce the main functionality of this built-in app using Aspose.PSD for Java
public static boolean viewPdfToPng(InputStream pdfFileStream, String pngFileId, Size size) {
pdfFileStream.Position = 0;
try {
Document pdfDocument = new Document(pdfFileStream);
Page page = pdfDocument.getPages().get_Item(1);
try (ByteArrayOutputStream imageStream = new ByteArrayOutputStream()) {
Resolution resolution = new Resolution(300);
PngDevice pngDevice = new PngDevice(size.getWidth(), size.getHeight(), resolution);
pngDevice.process(page, imageStream);
imageStream.Position = 0;
StorageService.upload(pngFileId, imageStream);
return true;
}
} catch (com.aspose.pdf.exceptions.InvalidPdfFileFormatException e) {
return false;
} catch (IOException e) {
return false;
}
}
public static void viewOldAiFormats(String sourceFileName, String outFileName) {
try (AiImage image = (AiImage) Image.load(sourceFileName)) {
ImageOptionsBase options = new PngOptions();
options.setColorType(PngColorType.TruecolorWithAlpha);
image.save(outFileName, options);
}
}
You can download Aspose.PSD for Java from Aspose Repository
Check the following list of documentation links:
Please check the offical documentation https://docs.aspose.com/psd/
This App is completely free, but it just a small piece of functionality that offers for you Aspose.PSD library. You can make your own app with any functionality of Aspose.PSD. If you can not find needed feature in Aspose.PSD, you can post on PSD Support Forum. The great support, different priceing plans, prioritized bug fixes and feature releasing for the Paid Support Customers.
List of Aspose.PSD versions for different configurations |
Aspose.PSD for .NET | Aspose.PSD for Java |
![](data:image/svg+xml,%3Csvg%20id=%22Layer_1%22%20xmlns=%22http://www.w3.org/2000/svg%22%20xmlns:xlink=%22http://www.w3.org/1999/xlink%22%20viewBox=%220%200%20320%20320%22%20style=%22enable-background:new%200%200%20320%20320%22%3E%3Cstyle%3E.st0%7Bfill:none;stroke:%23efefef;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4,8%7D.st1%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23fff%7D.st2%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23a4c547%7D.st3%7Bfill:%23a4c547%7D.st4%7Bfill:none;stroke:%23fff;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10%7D.st5%7Bfill:%23fff%7D.st6%7Bfill:%239cc53e%7D.st7%7Bfill:%239cc53e;stroke:%23fff;stroke-width:5;stroke-miterlimit:10%7D.st8%7Bfill:%23efefef%7D.st9%7Bfill:%23dedfdf%7D.st10%7Bfill:%234296d2%7D.st11%7Bfill:%230866aa%7D.st12%7Bfill:%232178bd%7D.st13%7Bfill:%234096d2%7D.st14%7Bdisplay:none;fill:%23fff%7D%3C/style%3E%3Ccircle%20class=%22st0%22%20cx=%22154.2%22%20cy=%22163.2%22%20r=%22123.7%22/%3E%3Cg%20id=%22_x2E_NET%22%3E%3Cpath%20id=%22XMLID_8_%22%20class=%22st1%22%20d=%22M228%20153.7c-19.6.0-36.2%206.9-49.9%2020.6-13.8%2013.6-20.6%2030.2-20.6%2049.8s6.9%2036.1%2020.6%2049.7c5.1%205.1%2010.5%209.3%2016.4%2012.5h-85.7c-1.4-.1-2.7-.5-4-1.2-2.1-1-3.2-3-3.2-6V105.4c.2-1.5.5-2.9%201-4%201.1-2.1%203.2-3.2%206.2-3.2h174.3l1.2.3c1%20.2%201.9.4%202.7.8%202.2%201%203.3%203.1%203.3%206.1v85.5c-3.2-5.9-7.4-11.4-12.6-16.5-13.8-13.8-30.4-20.7-49.7-20.7z%22/%3E%3Cg%3E%3Cpath%20id=%22XMLID_2_%22%20class=%22st2%22%20d=%22M228%20153.7c19.3.0%2035.9%206.9%2049.8%2020.6%205.2%205.1%209.3%2010.6%2012.6%2016.5v-85.5c0-3.1-1.1-5.1-3.3-6.1-.8-.3-1.7-.6-2.7-.8l-1.2-.3H108.8c-3%200-5%201.1-6.2%203.2-.5%201.1-.9%202.4-1%204v173.8c0%203%201.1%205%203.2%206%201.3.7%202.6%201.1%204%201.2h85.7c-5.9-3.2-11.4-7.4-16.4-12.5-13.8-13.6-20.6-30.1-20.6-49.7s6.9-36.1%2020.6-49.8c13.6-13.7%2030.3-20.6%2049.9-20.6zm59.7-63.4c1.9.3%203.3.8%204.4%201.4%204.3%202%206.4%205.8%206.4%2011.1v121.3c0%2019.4-6.9%2036-20.8%2049.7-13.8%2013.8-30.4%2020.7-49.8%2020.7H106.2c-2.1.0-4.2-.5-6.4-1.5-4.3-2.2-6.4-6-6.4-11.3V102.8c0-2.1.6-4.3%201.7-6.4%202.1-4.3%205.8-6.4%2011.2-6.4h179.5L287.7%2090.3z%22/%3E%3Cg%3E%3Cpath%20class=%22st3%22%20d=%22M144.8%20129.5c0%204.6-1.5%208.2-4.6%2010.6-3%202.5-7.4%203.7-13%203.7h-4.6v16.6h-7.3V116h12.8c5.6.0%209.7%201.1%2012.5%203.4C143.4%20121.7%20144.8%20125%20144.8%20129.5zM122.7%20137.7h3.9c3.7.0%206.5-.6%208.2-1.9s2.6-3.3%202.6-6.1c0-2.5-.8-4.4-2.3-5.7-1.6-1.2-4-1.9-7.3-1.9h-5.1v15.6z%22/%3E%3Cpath%20class=%22st3%22%20d=%22M162.7%20152.3c0%202.6-1%204.7-2.9%206.2s-4.6%202.3-7.9%202.3-6.1-.5-8.3-1.6v-4.6c1.4.6%202.8%201.1%204.3%201.5s3%20.6%204.3.6c1.9.0%203.4-.4%204.3-1.1s1.4-1.7%201.4-2.9c0-1.1-.4-2.1-1.3-2.8-.8-.8-2.6-1.7-5.2-2.7-2.7-1.1-4.6-2.4-5.8-3.8-1.1-1.4-1.7-3.1-1.7-5.1.0-2.5.9-4.4%202.7-5.9%201.8-1.4%204.1-2.1%207.1-2.1%202.9.0%205.7.6%208.5%201.9l-1.5%204c-2.7-1.1-5-1.7-7.1-1.7-1.6.0-2.8.3-3.6%201-.8.7-1.2%201.6-1.2%202.7.0.8.2%201.4.5%202s.9%201.1%201.6%201.6%202.1%201.1%204%201.9c2.2.9%203.8%201.8%204.8%202.5%201%20.8%201.8%201.7%202.2%202.7C162.5%20149.8%20162.7%20151%20162.7%20152.3z%22/%3E%3Cpath%20class=%22st3%22%20d=%22M188.6%20145.2c0%204.9-1.4%208.7-4.1%2011.3-2.7%202.6-6.7%203.9-11.8%203.9h-8.3v-29.7h9.2c4.7.0%208.4%201.3%2011.1%203.8C187.3%20137%20188.6%20140.6%20188.6%20145.2zM183.4%20145.4c0-7.1-3.3-10.7-10-10.7h-4.2v21.6h3.5C179.9%20156.3%20183.4%20152.7%20183.4%20145.4z%22/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Crect%20x=%22189.3%22%20y=%22199.1%22%20class=%22st4%22%20width=%2276.6%22%20height=%2252.6%22/%3E%3Cpolygon%20class=%22st5%22%20points=%22198.4,251.1%20211.3,236%20223,246.3%20238.3,220.1%20256.2,250.9%22/%3E%3Cg%3E%3Cpolygon%20class=%22st6%22%20points=%22236.3,188.4%20222.2,205.3%20239.6,206.1%20250.7,185.6%22/%3E%3Cg%3E%3Cpath%20class=%22st5%22%20d=%22M223%20209.2c-2.8.3%2027.2-32.5%2029-34.1s3.4-3.4.6%203.2-18.1%2033.2-21.6%2034C226.8%20213.4%20229.7%20208.5%20223%20209.2z%22/%3E%3Cpath%20class=%22st5%22%20d=%22M223.8%20212.6c-3.6-1.6-6.8-.4-10.7%205.7-3.8%206.1-4.3%206.1-6.4%207.4s-.4%201.4.7%201.6%2015.5%202%2018.2-5.1C228.4%20215.1%20225.5%20213.3%20223.8%20212.6z%22/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Crect%20x=%22182.7%22%20y=%22191.4%22%20class=%22st7%22%20width=%2214%22%20height=%2214%22/%3E%3Crect%20x=%22182.7%22%20y=%22242.6%22%20class=%22st7%22%20width=%2214%22%20height=%2214%22/%3E%3Crect%20x=%22258.6%22%20y=%22191.4%22%20class=%22st7%22%20width=%2214%22%20height=%2214%22/%3E%3Crect%20x=%22258.6%22%20y=%22242.6%22%20class=%22st7%22%20width=%2214%22%20height=%2214%22/%3E%3C/g%3E%3Crect%20x=%22204.4%22%20y=%22257.2%22%20class=%22st5%22%20width=%2246.5%22%20height=%224.2%22/%3E%3Crect%20x=%22209.9%22%20y=%22264.6%22%20class=%22st5%22%20width=%2235.5%22%20height=%224.4%22/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st8%22%20d=%22M274.8%20142c-19%200-34.5-15.5-34.5-34.5S255.8%2073%20274.8%2073s34.5%2015.5%2034.5%2034.5S293.9%20142%20274.8%20142z%22/%3E%3Cpath%20class=%22st9%22%20d=%22M274.8%2074.4c18.2.0%2033%2014.8%2033%2033s-14.8%2033-33%2033-33-14.8-33-33%2014.8-33%2033-33m0-3c-19.9.0-36%2016.1-36%2036s16.1%2036%2036%2036%2036-16.1%2036-36-16.1-36-36-36z%22/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpolygon%20class=%22st10%22%20points=%22212.9,47.1%20231.2,48.2%20229.8,65.2%20222.6,70.2%20215.4,66.7%22/%3E%3Cpolygon%20class=%22st10%22%20points=%22159.3,50.4%20163.4,50.4%20164.8,47.1%20165.4,27.7%20158.8,23.9%20146.3,23.9%20145.3,38.1%20145.8,50%22/%3E%3Cpolygon%20class=%22st10%22%20points=%2251,191.1%2044.9,185.6%2028.7,185.3%2027.2,187.1%2027.2,208.7%2050.5,209.1%22/%3E%3Cpolygon%20class=%22st10%22%20points=%2278.8,247.1%2072.8,241.1%2058.4,240.7%2059,268%2077.7,268%22/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath%20class=%22st10%22%20d=%22M38.2%20132.6c.4.7%201%201.1%201.8%201.2h6.2v1.9c0%20.3-.1.6-.3.8s-.5.3-.8.3H28.8c-.3.0-.6-.1-.8-.3-.2-.2-.3-.5-.3-.8v-22.6c0-.3.1-.6.3-.8s.5-.3.8-.3h9.7v6.6c0%20.3.1.6.3.8.2.2.5.3.8.3h6.6v2.3l-6.2%206.2v4c-.2.0-.3-.1-.4-.3-.3-.6-.8-.9-1.5-1.1-.7-.1-1.3.0-1.7.4l-.7-2c-.2-.6-.6-.8-1.1-.8-.6.0-.9.3-1.1.8l-.9%202.6c-.1.3-.3.4-.5.4h-.6c-.2.0-.4.1-.6.2-.1.1-.2.3-.2.6.0.2.1.4.2.6.1.1.3.2.6.2h.6c.5.0.9-.1%201.2-.4.4-.3.6-.6.8-1.1l.5-1.5.8%202.4c.1.3.3.5.7.5s.6-.1.7-.4l.4-.7c.1-.2.3-.3.5-.3C38%20132.3%2038.1%20132.4%2038.2%20132.6zM46.3%20117.9v.3h-6.2V112h.3c.3.0.6.1.8.3L46%20117C46.2%20117.3%2046.3%20117.6%2046.3%20117.9zM55.3%20120.1c.2.3.3.6.3.9s-.1.6-.3.9l-1.4%201.4-3.3-3.3%201.4-1.4c.2-.2.5-.3.9-.3.3.0.6.1.9.3L55.3%20120.1z%22/%3E%3C/g%3E%3Cg%3E%3Cpolygon%20class=%22st10%22%20points=%2279.5,66.8%2079.5,70.4%2077.6,71%2078.4,74.2%2080.5,74.2%2099.4,74.2%20101.5,74.2%20101.5,72.1%20100.6,70.5%20100.5,58.7%2098.1,56.2%2090.3,56.8%2089.6,67.8%2088.4,63.7%22/%3E%3Cpolygon%20class=%22st10%22%20points=%2291.3,47.9%2088.2,47.9%2088.2,50%2072.1,50.7%2070.4,47.4%2068,47.4%2066.4,51.5%2067.9,51.5%2068.3,62.8%2067.4,63.7%2066.4,67.1%2065.8,69.2%2070,67.9%2072.2,67.1%2087.9,68%2087.6,70%2091.3,69.1%2091.3,65.4%2089.5,65.4%2090.3,56.8%2096.6,56.8%2097.3,57.9%20102.1,59.5%20101.5,57.4%20101.5,55.3%2099.8,54.6%2094.7,55.9%2089.1,55.5%2092.1,52%22/%3E%3Cg%3E%3Cpath%20class=%22st8%22%20d=%22M102.9%2059.5h-.8V70h.8c.5.0.8.3.8.8v4.7c0%20.5-.3.8-.8.8h-4.7c-.5.0-.8-.3-.8-.8v-.8H82.6v.8c0%20.5-.3.8-.8.8h-4.7c-.5.0-.8-.3-.8-.8v-4.7c0-.5.3-.8.8-.8h.8v-1.6h-5.8v.8c0%20.5-.3.8-.8.8h-4.7c-.5.0-.8-.3-.8-.8v-4.7c0-.5.3-.8.8-.8h.8V53.2h-.8c-.5.0-.8-.3-.8-.8v-4.7c0-.5.3-.8.8-.8h4.7c.5.0.8.3.8.8v.8h14.7v-.8c0-.5.3-.8.8-.8h4.7c.5.0.8.3.8.8v4.7c0%20.5-.3.8-.8.8h-.8v1.6h5.8V54c0-.5.3-.8.8-.8h4.7c.5.0.8.3.8.8v4.7C103.6%2059.2%20103.4%2059.5%20102.9%2059.5zM70%2051.1V49h-2.1v2.1H70zm0%2016.8v-2.1h-2.1v2.1H70zM72.1%2065.2h14.7v-.8c0-.5.3-.8.8-.8h.8V53.2h-.8c-.5.0-.8-.3-.8-.8v-.8H72.1v.8c0%20.5-.3.8-.8.8h-.8v10.5h.8c.5.0.8.3.8.8V65.2zM80.5%2074.2v-2.1h-2.1v2.1H80.5zM98.9%2070V59.5h-.8c-.5.0-.8-.3-.8-.8v-.8h-5.8v5.8h.8c.5.0.8.3.8.8v4.7c0%20.5-.3.8-.8.8h-4.7c-.5.0-.8-.3-.8-.8v-.8H81V70h.8c.5.0.8.3.8.8v.8h14.7v-.8c0-.5.3-.8.8-.8H98.9zm-10-21v2.1H91V49H88.9zm0%2016.8v2.1H91v-2.1H88.9zm12.6-8.4v-2.1h-2.1v2.1H101.5zm0%2016.8v-2.1h-2.1v2.1H101.5z%22/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st8%22%20d=%22M210.8%2045.1h22.5l-2.1%2023.2-9.2%203.1-9.2-3.1L210.8%2045.1zm18%207.5.3-2.8H215l.7%208.5h9.8l-.4%203.6-3.1.8-3.2-.8-.2-2.2h-2.8l.4%204.4%205.8%201.6h.1l5.7-1.6.8-8.7h-10.3l-.2-2.9L228.8%2052.6z%22/%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st8%22%20d=%22M165.4%2027.7c.6.5.8%201.2.8%202v19.5c0%20.8-.3%201.4-.8%202-.6.5-1.2.8-2%20.8h-16.9c-.8.0-1.4-.3-2-.8s-.8-1.2-.8-2V24.8c0-.8.3-1.4.8-2s1.2-.8%202-.8h11.9c.8.0%201.4.3%202%20.8l5%204.9zM146.6%2049.1h16.9V32.2h-6.1c-.4.0-.7-.1-1-.4-.3-.3-.4-.6-.4-1v-6.1h-9.4V49.1zM149.3%2033.1c.6-.5%201.2-.8%202-.8s1.4.3%202%20.8.8%201.2.8%202-.3%201.5-.8%202c-.6.5-1.2.8-2%20.8s-1.4-.3-2-.8-.8-1.2-.8-2S148.7%2033.6%20149.3%2033.1zM148.4%2046.3v-3.8l2.3-2.3c.3-.3.6-.3.9.0l2.3%202.3%205.2-5.2c.3-.3.6-.3.9.0l1.4%201.4v7.5L148.4%2046.3zm14.8-16.9-4.4-4.4v4.5C158.8%2029.4%20163.2%2029.4%20163.2%2029.4z%22/%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st8%22%20d=%22M47.5%20115c.5.6.8%201.2.8%202v19.4c0%20.8-.3%201.4-.8%202s-1.2.8-2%20.8H28.6c-.8.0-1.5-.3-2-.8-.5-.6-.8-1.2-.8-2V112c0-.8.3-1.4.8-2s1.2-.8%202-.8h12c.8.0%201.4.3%202%20.8l4.9%205zM28.6%20136.5h16.9v-16.9h-6.1c-.4.0-.7-.1-1-.4s-.4-.6-.4-1v-6.1h-9.4v24.4zm16.7-19.7-4.5-4.4v4.4h4.5z%22/%3E%3Cpolygon%20class=%22st10%22%20points=%2241.6,128.8%2049.6,120.9%2052.9,124.2%2045,132.2%2041.6,132.2%22/%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st8%22%20d=%22M51.2%20190.1c.5.6.8%201.2.8%202v15.7c0%20.8-.3%201.4-.8%202s-1.2.8-2%20.8H28.6c-.8.0-1.5-.3-2-.8-.5-.6-.8-1.2-.8-2v-20.6c0-.8.3-1.4.8-2s1.2-.8%202-.8h15.7c.8.0%201.4.3%202%20.8L51.2%20190.1zm-2.3%2017.7c.2.0.3-.1.3-.4v-15.2c0-.1.0-.2-.1-.2l-4.6-4.6v5.9c0%20.4-.1.7-.4%201s-.6.4-1%20.4H32.8c-.4.0-.7-.1-1-.4-.3-.3-.4-.6-.4-1v-6.1H29c-.2.0-.4.1-.4.4v19.9c0%20.2.1.4.4.4L48.9%20207.8zM35.3%20197.6c1-1%202.2-1.5%203.6-1.5s2.6.5%203.6%201.5%201.5%202.2%201.5%203.6-.5%202.6-1.5%203.6-2.2%201.5-3.6%201.5-2.6-.5-3.6-1.5-1.5-2.2-1.5-3.6S34.3%20198.6%2035.3%20197.6zm6.5-10.5h-7.5v4.7h7.5V187.1zm-4.5%2015.8c.5.4%201%20.7%201.7.7s1.2-.2%201.7-.7c.5-.4.7-1%20.7-1.7s-.2-1.2-.7-1.7c-.5-.4-1-.7-1.7-.7s-1.2.2-1.7.7c-.5.4-.7%201-.7%201.7S36.8%20202.4%2037.3%20202.9z%22/%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st8%22%20d=%22M79.3%20245.6c.6.6.8%201.2.8%202V267c0%20.8-.3%201.4-.8%202s-1.2.8-2%20.8H60.4c-.8.0-1.5-.3-2-.8s-.8-1.2-.8-2v-24.4c0-.8.3-1.4.8-2s1.2-.8%202-.8h12c.8.0%201.4.3%202%20.8L79.3%20245.6zm-2%2021.4v-16.9h-6.1c-.4.0-.7-.1-1-.4s-.4-.6-.4-1v-6.1h-9.4V267H77.3zM66.4%20260.3c.2.2.2.5.0.8l-1%201c-.1.1-.2.2-.4.2-.1.0-.2-.1-.3-.2l-3.3-3.2c-.3-.2-.3-.5.0-.7l3.3-3.2c.3-.3.5-.3.8.0l1%201v.1c.2.2.2.5.0.7l-1.9%201.7L66.4%20260.3zM69.9%20252.4l1.4.4c.3.1.5.3.3.6l-3.2%2011c-.1.4-.3.5-.6.4l-1.4-.4c-.3-.1-.5-.3-.3-.6l3.2-11C69.4%20252.4%2069.6%20252.3%2069.9%20252.4zM71.3%20256.9c-.2-.2-.2-.5.0-.8l1-1.1c.2-.3.5-.3.8.0l3.3%203.2c.3.2.3.5.0.7l-3.3%203.2c-.3.3-.5.3-.8.0l-1-1V261c-.2-.2-.2-.5.0-.7l1.9-1.7L71.3%20256.9zm1.3-14v4.4H77L72.6%20242.9z%22/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st11%22%20d=%22M290.9%2092.2l-7.3-3.5c-.8-.4-1.9-.2-2.5.4l-23.9%2021.8c-.6.6-.6%201.6.0%202.2l2%201.8c.5.5%201.3.5%201.9.1l28.8-21.8c1-.7%202.4.0%202.4%201.2v-.1C292.1%2093.4%20291.7%2092.6%20290.9%2092.2z%22/%3E%3Cg%3E%3Cpath%20class=%22st12%22%20d=%22M290.9%20120l-7.3%203.5c-.8.4-1.9.2-2.5-.4l-23.9-21.8c-.6-.6-.6-1.6.0-2.2l2-1.8c.5-.5%201.3-.5%201.9-.1l28.8%2021.8c1%20.7%202.4.0%202.4-1.2v.1C292.1%20118.9%20291.7%20119.6%20290.9%20120z%22/%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st13%22%20d=%22M283.6%20123.5c-.8.4-1.9.2-2.5-.4.8.8%202.2.2%202.2-.9V90.1c0-1.2-1.4-1.7-2.2-.9.7-.7%201.7-.8%202.5-.4l7.3%203.5c.8.4%201.2%201.1%201.2%202V118c0%20.8-.5%201.6-1.2%202L283.6%20123.5z%22/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Ccircle%20class=%22st14%22%20cx=%22923.5%22%20cy=%22-48.5%22%20r=%228.1%22/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E) | ![](data:image/svg+xml,%3Csvg%20id=%22Layer_1%22%20xmlns=%22http://www.w3.org/2000/svg%22%20xmlns:xlink=%22http://www.w3.org/1999/xlink%22%20viewBox=%220%200%20320%20320%22%20style=%22enable-background:new%200%200%20320%20320%22%3E%3Cstyle%3E.st0%7Bfill:none;stroke:%23efefef;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:4,8%7D.st1%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23fff%7D.st2%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23e04645%7D.st3%7Bfill:%23e04645%7D.st4%7Bfill:none;stroke:%23fff;stroke-width:6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10%7D.st5%7Bfill:%23fff%7D.st6%7Bfill:%23e04645;stroke:%23fff;stroke-width:5;stroke-miterlimit:10%7D.st7%7Bfill:%23efefef%7D.st8%7Bfill:%23dedfdf%7D.st9%7Bfill:%234296d2%7D%3C/style%3E%3Ccircle%20class=%22st0%22%20cx=%22154.2%22%20cy=%22163.2%22%20r=%22123.7%22/%3E%3Cg%20id=%22_x2E_NET%22%3E%3Cpath%20id=%22XMLID_8_%22%20class=%22st1%22%20d=%22M228%20153.7c-19.6.0-36.2%206.9-49.9%2020.6-13.8%2013.6-20.6%2030.2-20.6%2049.8s6.9%2036.1%2020.6%2049.7c5.1%205.1%2010.5%209.3%2016.4%2012.5h-85.7c-1.4-.1-2.7-.5-4-1.2-2.1-1-3.2-3-3.2-6V105.4c.2-1.5.5-2.9%201-4%201.1-2.1%203.2-3.2%206.2-3.2h174.3l1.2.3c1%20.2%201.9.4%202.7.8%202.2%201%203.3%203.1%203.3%206.1v85.5c-3.2-5.9-7.4-11.4-12.6-16.5-13.8-13.8-30.4-20.7-49.7-20.7z%22/%3E%3Cg%3E%3Cpath%20id=%22XMLID_2_%22%20class=%22st2%22%20d=%22M228%20153.7c19.3.0%2035.9%206.9%2049.8%2020.6%205.2%205.1%209.3%2010.6%2012.6%2016.5v-85.5c0-3.1-1.1-5.1-3.3-6.1-.8-.3-1.7-.6-2.7-.8l-1.2-.3H108.8c-3%200-5%201.1-6.2%203.2-.5%201.1-.9%202.4-1%204v173.8c0%203%201.1%205%203.2%206%201.3.7%202.6%201.1%204%201.2h85.7c-5.9-3.2-11.4-7.4-16.4-12.5-13.8-13.6-20.6-30.1-20.6-49.7s6.9-36.1%2020.6-49.8c13.6-13.7%2030.3-20.6%2049.9-20.6zm59.7-63.4c1.9.3%203.3.8%204.4%201.4%204.3%202%206.4%205.8%206.4%2011.1v121.3c0%2019.4-6.9%2036-20.8%2049.7-13.8%2013.8-30.4%2020.7-49.8%2020.7H106.2c-2.1.0-4.2-.5-6.4-1.5-4.3-2.2-6.4-6-6.4-11.3V102.8c0-2.1.6-4.3%201.7-6.4%202.1-4.3%205.8-6.4%2011.2-6.4h179.5L287.7%2090.3z%22/%3E%3Cg%3E%3Cpath%20class=%22st3%22%20d=%22M144.8%20129.5c0%204.6-1.5%208.2-4.6%2010.6-3%202.5-7.4%203.7-13%203.7h-4.6v16.6h-7.3V116h12.8c5.6.0%209.7%201.1%2012.5%203.4C143.4%20121.7%20144.8%20125%20144.8%20129.5zM122.7%20137.7h3.9c3.7.0%206.5-.6%208.2-1.9s2.6-3.3%202.6-6.1c0-2.5-.8-4.4-2.3-5.7-1.6-1.2-4-1.9-7.3-1.9h-5.1v15.6z%22/%3E%3Cpath%20class=%22st3%22%20d=%22M162.7%20152.3c0%202.6-1%204.7-2.9%206.2s-4.6%202.3-7.9%202.3-6.1-.5-8.3-1.6v-4.6c1.4.6%202.8%201.1%204.3%201.5s3%20.6%204.3.6c1.9.0%203.4-.4%204.3-1.1s1.4-1.7%201.4-2.9c0-1.1-.4-2.1-1.3-2.8-.8-.8-2.6-1.7-5.2-2.7-2.7-1.1-4.6-2.4-5.8-3.8-1.1-1.4-1.7-3.1-1.7-5.1.0-2.5.9-4.4%202.7-5.9%201.8-1.4%204.1-2.1%207.1-2.1%202.9.0%205.7.6%208.5%201.9l-1.5%204c-2.7-1.1-5-1.7-7.1-1.7-1.6.0-2.8.3-3.6%201-.8.7-1.2%201.6-1.2%202.7.0.8.2%201.4.5%202s.9%201.1%201.6%201.6%202.1%201.1%204%201.9c2.2.9%203.8%201.8%204.8%202.5%201%20.8%201.8%201.7%202.2%202.7C162.5%20149.8%20162.7%20151%20162.7%20152.3z%22/%3E%3Cpath%20class=%22st3%22%20d=%22M188.6%20145.2c0%204.9-1.4%208.7-4.1%2011.3-2.7%202.6-6.7%203.9-11.8%203.9h-8.3v-29.7h9.2c4.7.0%208.4%201.3%2011.1%203.8C187.3%20137%20188.6%20140.6%20188.6%20145.2zM183.4%20145.4c0-7.1-3.3-10.7-10-10.7h-4.2v21.6h3.5C179.9%20156.3%20183.4%20152.7%20183.4%20145.4z%22/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Crect%20x=%22189.3%22%20y=%22199.1%22%20class=%22st4%22%20width=%2276.6%22%20height=%2252.6%22/%3E%3Cpolygon%20class=%22st5%22%20points=%22198.4,251.1%20211.3,236%20223,246.3%20238.3,220.1%20256.2,250.9%22/%3E%3Cg%3E%3Cpolygon%20class=%22st3%22%20points=%22236.3,188.4%20222.2,205.3%20239.6,206.1%20250.7,185.6%22/%3E%3Cg%3E%3Cpath%20class=%22st5%22%20d=%22M223%20209.2c-2.8.3%2027.2-32.5%2029-34.1s3.4-3.4.6%203.2-18.1%2033.2-21.6%2034C226.8%20213.4%20229.7%20208.5%20223%20209.2z%22/%3E%3Cpath%20class=%22st5%22%20d=%22M223.8%20212.6c-3.6-1.6-6.8-.4-10.7%205.7-3.8%206.1-4.3%206.1-6.4%207.4s-.4%201.4.7%201.6%2015.5%202%2018.2-5.1C228.4%20215.1%20225.5%20213.3%20223.8%20212.6z%22/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Crect%20x=%22182.7%22%20y=%22191.4%22%20class=%22st6%22%20width=%2214%22%20height=%2214%22/%3E%3Crect%20x=%22182.7%22%20y=%22242.6%22%20class=%22st6%22%20width=%2214%22%20height=%2214%22/%3E%3Crect%20x=%22258.6%22%20y=%22191.4%22%20class=%22st6%22%20width=%2214%22%20height=%2214%22/%3E%3Crect%20x=%22258.6%22%20y=%22242.6%22%20class=%22st6%22%20width=%2214%22%20height=%2214%22/%3E%3C/g%3E%3Crect%20x=%22204.4%22%20y=%22257.2%22%20class=%22st5%22%20width=%2246.5%22%20height=%224.2%22/%3E%3Crect%20x=%22209.9%22%20y=%22264.6%22%20class=%22st5%22%20width=%2235.5%22%20height=%224.4%22/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st7%22%20d=%22M274.8%20142c-19%200-34.5-15.5-34.5-34.5S255.8%2073%20274.8%2073s34.5%2015.5%2034.5%2034.5S293.9%20142%20274.8%20142z%22/%3E%3Cpath%20class=%22st8%22%20d=%22M274.8%2074.4c18.2.0%2033%2014.8%2033%2033s-14.8%2033-33%2033-33-14.8-33-33%2014.8-33%2033-33m0-3c-19.9.0-36%2016.1-36%2036s16.1%2036%2036%2036%2036-16.1%2036-36-16.1-36-36-36z%22/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpolygon%20class=%22st9%22%20points=%22212.9,47.1%20231.2,48.2%20229.8,65.2%20222.6,70.2%20215.4,66.7%22/%3E%3Cpolygon%20class=%22st9%22%20points=%22159.3,50.4%20163.4,50.4%20164.8,47.1%20165.4,27.7%20158.8,23.9%20146.3,23.9%20145.3,38.1%20145.8,50%22/%3E%3Cpolygon%20class=%22st9%22%20points=%2251,191.1%2044.9,185.6%2028.7,185.3%2027.2,187.1%2027.2,208.7%2050.5,209.1%22/%3E%3Cpolygon%20class=%22st9%22%20points=%2278.8,247.1%2072.8,241.1%2058.4,240.7%2059,268%2077.7,268%22/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath%20class=%22st9%22%20d=%22M38.2%20132.6c.4.7%201%201.1%201.8%201.2h6.2v1.9c0%20.3-.1.6-.3.8s-.5.3-.8.3H28.8c-.3.0-.6-.1-.8-.3-.2-.2-.3-.5-.3-.8v-22.6c0-.3.1-.6.3-.8s.5-.3.8-.3h9.7v6.6c0%20.3.1.6.3.8.2.2.5.3.8.3h6.6v2.3l-6.2%206.2v4c-.2.0-.3-.1-.4-.3-.3-.6-.8-.9-1.5-1.1-.7-.1-1.3.0-1.7.4l-.7-2c-.2-.6-.6-.8-1.1-.8-.6.0-.9.3-1.1.8l-.9%202.6c-.1.3-.3.4-.5.4h-.6c-.2.0-.4.1-.6.2-.1.1-.2.3-.2.6.0.2.1.4.2.6.1.1.3.2.6.2h.6c.5.0.9-.1%201.2-.4.4-.3.6-.6.8-1.1l.5-1.5.8%202.4c.1.3.3.5.7.5s.6-.1.7-.4l.4-.7c.1-.2.3-.3.5-.3C38%20132.3%2038.1%20132.4%2038.2%20132.6zM46.3%20117.9v.3h-6.2V112h.3c.3.0.6.1.8.3L46%20117C46.2%20117.3%2046.3%20117.6%2046.3%20117.9zM55.3%20120.1c.2.3.3.6.3.9s-.1.6-.3.9l-1.4%201.4-3.3-3.3%201.4-1.4c.2-.2.5-.3.9-.3.3.0.6.1.9.3L55.3%20120.1z%22/%3E%3C/g%3E%3Cg%3E%3Cpolygon%20class=%22st9%22%20points=%2279.5,66.8%2079.5,70.4%2077.6,71%2078.4,74.2%2080.5,74.2%2099.4,74.2%20101.5,74.2%20101.5,72.1%20100.6,70.5%20100.5,58.7%2098.1,56.2%2090.3,56.8%2089.6,67.8%2088.4,63.7%22/%3E%3Cpolygon%20class=%22st9%22%20points=%2291.3,47.9%2088.2,47.9%2088.2,50%2072.1,50.7%2070.4,47.4%2068,47.4%2066.4,51.5%2067.9,51.5%2068.3,62.8%2067.4,63.7%2066.4,67.1%2065.8,69.2%2070,67.9%2072.2,67.1%2087.9,68%2087.6,70%2091.3,69.1%2091.3,65.4%2089.5,65.4%2090.3,56.8%2096.6,56.8%2097.3,57.9%20102.1,59.5%20101.5,57.4%20101.5,55.3%2099.8,54.6%2094.7,55.9%2089.1,55.5%2092.1,52%22/%3E%3Cg%3E%3Cpath%20class=%22st7%22%20d=%22M102.9%2059.5h-.8V70h.8c.5.0.8.3.8.8v4.7c0%20.5-.3.8-.8.8h-4.7c-.5.0-.8-.3-.8-.8v-.8H82.6v.8c0%20.5-.3.8-.8.8h-4.7c-.5.0-.8-.3-.8-.8v-4.7c0-.5.3-.8.8-.8h.8v-1.6h-5.8v.8c0%20.5-.3.8-.8.8h-4.7c-.5.0-.8-.3-.8-.8v-4.7c0-.5.3-.8.8-.8h.8V53.2h-.8c-.5.0-.8-.3-.8-.8v-4.7c0-.5.3-.8.8-.8h4.7c.5.0.8.3.8.8v.8h14.7v-.8c0-.5.3-.8.8-.8h4.7c.5.0.8.3.8.8v4.7c0%20.5-.3.8-.8.8h-.8v1.6h5.8V54c0-.5.3-.8.8-.8h4.7c.5.0.8.3.8.8v4.7C103.6%2059.2%20103.4%2059.5%20102.9%2059.5zM70%2051.1V49h-2.1v2.1H70zm0%2016.8v-2.1h-2.1v2.1H70zM72.1%2065.2h14.7v-.8c0-.5.3-.8.8-.8h.8V53.2h-.8c-.5.0-.8-.3-.8-.8v-.8H72.1v.8c0%20.5-.3.8-.8.8h-.8v10.5h.8c.5.0.8.3.8.8V65.2zM80.5%2074.2v-2.1h-2.1v2.1H80.5zM98.9%2070V59.5h-.8c-.5.0-.8-.3-.8-.8v-.8h-5.8v5.8h.8c.5.0.8.3.8.8v4.7c0%20.5-.3.8-.8.8h-4.7c-.5.0-.8-.3-.8-.8v-.8H81V70h.8c.5.0.8.3.8.8v.8h14.7v-.8c0-.5.3-.8.8-.8H98.9zm-10-21v2.1H91V49H88.9zm0%2016.8v2.1H91v-2.1H88.9zm12.6-8.4v-2.1h-2.1v2.1H101.5zm0%2016.8v-2.1h-2.1v2.1H101.5z%22/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st7%22%20d=%22M210.8%2045.1h22.5l-2.1%2023.2-9.2%203.1-9.2-3.1L210.8%2045.1zm18%207.5.3-2.8H215l.7%208.5h9.8l-.4%203.6-3.1.8-3.2-.8-.2-2.2h-2.8l.4%204.4%205.8%201.6h.1l5.7-1.6.8-8.7h-10.3l-.2-2.9L228.8%2052.6z%22/%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st7%22%20d=%22M165.4%2027.7c.6.5.8%201.2.8%202v19.5c0%20.8-.3%201.4-.8%202-.6.5-1.2.8-2%20.8h-16.9c-.8.0-1.4-.3-2-.8s-.8-1.2-.8-2V24.8c0-.8.3-1.4.8-2s1.2-.8%202-.8h11.9c.8.0%201.4.3%202%20.8l5%204.9zM146.6%2049.1h16.9V32.2h-6.1c-.4.0-.7-.1-1-.4-.3-.3-.4-.6-.4-1v-6.1h-9.4V49.1zM149.3%2033.1c.6-.5%201.2-.8%202-.8s1.4.3%202%20.8.8%201.2.8%202-.3%201.5-.8%202c-.6.5-1.2.8-2%20.8s-1.4-.3-2-.8-.8-1.2-.8-2S148.7%2033.6%20149.3%2033.1zM148.4%2046.3v-3.8l2.3-2.3c.3-.3.6-.3.9.0l2.3%202.3%205.2-5.2c.3-.3.6-.3.9.0l1.4%201.4v7.5L148.4%2046.3zm14.8-16.9-4.4-4.4v4.5C158.8%2029.4%20163.2%2029.4%20163.2%2029.4z%22/%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st7%22%20d=%22M47.5%20115c.5.6.8%201.2.8%202v19.4c0%20.8-.3%201.4-.8%202s-1.2.8-2%20.8H28.6c-.8.0-1.5-.3-2-.8-.5-.6-.8-1.2-.8-2V112c0-.8.3-1.4.8-2s1.2-.8%202-.8h12c.8.0%201.4.3%202%20.8l4.9%205zM28.6%20136.5h16.9v-16.9h-6.1c-.4.0-.7-.1-1-.4s-.4-.6-.4-1v-6.1h-9.4v24.4zm16.7-19.7-4.5-4.4v4.4h4.5z%22/%3E%3Cpolygon%20class=%22st9%22%20points=%2241.6,128.8%2049.6,120.9%2052.9,124.2%2045,132.2%2041.6,132.2%22/%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st7%22%20d=%22M51.2%20190.1c.5.6.8%201.2.8%202v15.7c0%20.8-.3%201.4-.8%202s-1.2.8-2%20.8H28.6c-.8.0-1.5-.3-2-.8-.5-.6-.8-1.2-.8-2v-20.6c0-.8.3-1.4.8-2s1.2-.8%202-.8h15.7c.8.0%201.4.3%202%20.8L51.2%20190.1zm-2.3%2017.7c.2.0.3-.1.3-.4v-15.2c0-.1.0-.2-.1-.2l-4.6-4.6v5.9c0%20.4-.1.7-.4%201s-.6.4-1%20.4H32.8c-.4.0-.7-.1-1-.4-.3-.3-.4-.6-.4-1v-6.1H29c-.2.0-.4.1-.4.4v19.9c0%20.2.1.4.4.4L48.9%20207.8zM35.3%20197.6c1-1%202.2-1.5%203.6-1.5s2.6.5%203.6%201.5%201.5%202.2%201.5%203.6-.5%202.6-1.5%203.6-2.2%201.5-3.6%201.5-2.6-.5-3.6-1.5-1.5-2.2-1.5-3.6S34.3%20198.6%2035.3%20197.6zm6.5-10.5h-7.5v4.7h7.5V187.1zm-4.5%2015.8c.5.4%201%20.7%201.7.7s1.2-.2%201.7-.7c.5-.4.7-1%20.7-1.7s-.2-1.2-.7-1.7c-.5-.4-1-.7-1.7-.7s-1.2.2-1.7.7c-.5.4-.7%201-.7%201.7S36.8%20202.4%2037.3%20202.9z%22/%3E%3C/g%3E%3Cg%3E%3Cpath%20class=%22st7%22%20d=%22M79.3%20245.6c.6.6.8%201.2.8%202V267c0%20.8-.3%201.4-.8%202s-1.2.8-2%20.8H60.4c-.8.0-1.5-.3-2-.8s-.8-1.2-.8-2v-24.4c0-.8.3-1.4.8-2s1.2-.8%202-.8h12c.8.0%201.4.3%202%20.8L79.3%20245.6zm-2%2021.4v-16.9h-6.1c-.4.0-.7-.1-1-.4s-.4-.6-.4-1v-6.1h-9.4V267H77.3zM66.4%20260.3c.2.2.2.5.0.8l-1%201c-.1.1-.2.2-.4.2-.1.0-.2-.1-.3-.2l-3.3-3.2c-.3-.2-.3-.5.0-.7l3.3-3.2c.3-.3.5-.3.8.0l1%201v.1c.2.2.2.5.0.7l-1.9%201.7L66.4%20260.3zM69.9%20252.4l1.4.4c.3.1.5.3.3.6l-3.2%2011c-.1.4-.3.5-.6.4l-1.4-.4c-.3-.1-.5-.3-.3-.6l3.2-11C69.4%20252.4%2069.6%20252.3%2069.9%20252.4zM71.3%20256.9c-.2-.2-.2-.5.0-.8l1-1.1c.2-.3.5-.3.8.0l3.3%203.2c.3.2.3.5.0.7l-3.3%203.2c-.3.3-.5.3-.8.0l-1-1V261c-.2-.2-.2-.5.0-.7l1.9-1.7L71.3%20256.9zm1.3-14v4.4H77L72.6%20242.9z%22/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg%20id=%22java_1_%22%3E%3Cpath%20id=%22XMLID_17_%22%20class=%22st3%22%20d=%22M274.2%2091.8c-1.8%201.3-3.9%202.7-5%205.1-1.9%204.2%203.9%208.7%204.2%208.9.1.0.1.1.2.1s.1.0.2-.1.1-.3.1-.4c0%200-2.1-4.1-2-7%200-1%201.5-2.2%203-3.4%201.4-1.1%202.9-2.4%203.9-3.9%202-3.3-.2-6.5-.2-6.5-.1-.1-.2-.2-.4-.1s-.2.2-.2.4c0%200%20.4%202.1-.8%204.3C276.6%2090.1%20275.5%2090.9%20274.2%2091.8z%22/%3E%3Cpath%20id=%22XMLID_16_%22%20class=%22st3%22%20d=%22M281.9%2093.2c.1-.1.2-.3.1-.4s-.2-.2-.4-.2c-.3.1-7.5%202.9-7.5%206.3.0%202.3%201%203.6%201.7%204.4.3.3.5.7.6.9.2.8-.3%202.1-.5%202.6-.1.1.0.3.1.4s.1.1.2.1.1.0.2-.1%203-2.2%202.5-4.6c-.2-.9-.7-1.6-1.1-2.2-.6-.9-1.1-1.6-.4-2.9C278.1%2096%20281.8%2093.3%20281.9%2093.2z%22/%3E%3Cpath%20id=%22XMLID_7_%22%20class=%22st3%22%20d=%22M263%20107.4c-.1.4-.1.7.2%201.1.8%201.1%203.6%201.7%207.8%201.7.6.0%201.2.0%201.8.0%206.8-.2%209.3-2.4%209.4-2.4.1-.1.1-.3.1-.4s-.2-.2-.4-.2c-2.4.7-6.9.9-10%20.9-3.5.0-5.2-.2-5.7-.4.2-.3%201.6-.8%203.3-1.2.2.0.3-.2.3-.3.0-.2-.1-.3-.3-.3C268.6%20105.7%20263.6%20105.8%20263%20107.4z%22/%3E%3Cpath%20id=%22XMLID_6_%22%20class=%22st3%22%20d=%22M285.8%20105.2c-1.4.0-2.7.7-2.8.7-.1.1-.2.2-.2.4s.2.2.3.2c0%200%203%200%203.3%201.7.2%201.5-2.8%203.8-4%204.6-.1.1-.2.2-.1.4.0.1.2.2.3.2h.1c.3-.1%206.9-1.5%206.2-5.4C288.5%20105.7%20287%20105.2%20285.8%20105.2z%22/%3E%3Cpath%20id=%22XMLID_5_%22%20class=%22st3%22%20d=%22M281.3%20112.4c0-.1.0-.2-.1-.3l-1.6-1.1c-.1-.1-.2-.1-.3-.1.0.0-1.7.4-4.1.7-1%20.1-2%20.2-3.1.2-2.4.0-4-.3-4.2-.5v-.1c0-.1.3-.2.4-.3.2-.1.2-.2.2-.4s-.2-.3-.4-.2c-1.6.4-2.4.9-2.3%201.6.1%201.2%202.9%201.8%205.2%202%20.3.0.7.0%201.1.0%203.9.0%208.9-1.2%209-1.2C281.1%20112.6%20281.2%20112.5%20281.3%20112.4z%22/%3E%3Cpath%20id=%22XMLID_4_%22%20class=%22st3%22%20d=%22M269.3%20115c.1-.1.2-.2.1-.4.0-.1-.2-.2-.3-.2-.2.0-2.1.1-2.2%201.3.0.4.1.7.3%201%20.7.8%202.5%201.3%205.6%201.4.4.0.7.0%201.1.0%203.9.0%206.5-1.2%206.6-1.3s.2-.2.2-.3.0-.2-.1-.3l-2-1.2c-.1.0-.1-.1-.2.0.0.0-1.3.3-3.2.5-.4.1-.8.1-1.4.1C271.9%20115.6%20269.7%20115.3%20269.3%20115%20269.2%20115.1%20269.2%20115%20269.3%20115z%22/%3E%3Cpath%20id=%22XMLID_3_%22%20class=%22st3%22%20d=%22M272%20121.8c9%200%2013.8-1.6%2014.7-2.6.3-.3.4-.7.3-.9-.1-.5-.6-.9-.6-.9-.1-.1-.3-.1-.4.1-.1.1-.1.3.0.4s.1.2-.1.4c-.4.3-4.1%201.4-10.3%201.7-.9.0-1.7.1-2.6.1-5.6.0-9.6-.8-10.2-1.2.2-.3%201.6-.8%203.2-1%20.2.0.3-.2.3-.4s-.2-.3-.4-.3c0%200-.2.0-.4.0-2.5.2-5.4.5-5.6%201.8.0.4.1.8.4%201.1C260.9%20120.8%20262.9%20121.8%20272%20121.8z%22/%3E%3Cpath%20id=%22XMLID_1_%22%20class=%22st3%22%20d=%22M288.4%20119.5c-.1-.1-.3.0-.4.1.0.0-1.4%201.4-5.4%202.2-1.5.3-4.5.5-8.6.5s-8.2-.2-8.2-.2c-.2.0-.3.1-.3.3s.1.3.2.4c0%200%204.2%201%209.9%201%202.7.0%205.4-.2%207.9-.7%204.7-.8%205-3.2%205-3.2C288.6%20119.7%20288.6%20119.5%20288.4%20119.5z%22/%3E%3C/g%3E%3C/svg%3E) |
Aspose.PSD for .NET has the version for the most popular .NET versions including: .NET Framework 2, 3.5, 4.0, 4.0CP, .netstandard 2, .NET 5, 6, 7. Version of .NET Library for .NET 7 is suitable for the mobile development | Aspose.PSD for Java made on the Java 1.6, so it can be used in the any popular Java configurations. It's suitable for Cross-platform developement |
Official Aspose.PSD for .NET page | Official Aspose.PSD for Java page |
Aspose.PSD for .NET Pricing plans | Aspose.PSD for Java Pricing plans |
Please check the support forum. Where you can feel the real customer care |
View AI file with Aspose.PSD. Easy and fast AI Viewer.