Zobrazit soubor AI online
Pokud nemáte žádný software k otevření souboru AI, použijte nástroj online viewer. Tato aplikace vám pomůže zobrazit soubor AI jakékoli verze. Ale konečný výsledek bude rendrovaný náhled. AI Soubor je těžké zobrazit v základních aplikacích, protože AI je vektorový formát. Pouze vektorový prohlížeč může otevřít AI. AI Format je vytvořen společností Adobe, je to proprietární formát. Má příponu „.ai“. Většina AI Viewer jsou placené produkty, ale pokud nepotřebujete upravovat soubory Illustrator, nepotřebujete k tomu žádný placený software. Stačí použít Zobrazit soubory AI online s touto aplikací. Vyzkoušejte tuto aktualizovanou verzi AI Viewer
Drag and drop a file or click Open Image
You can reproduce the main functionality of this built-in app using Aspose.PSD
// 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 from Nuget package manager
Check the following list of documentation links:
Please check the offical documentation https://docs.aspose.com/psd/
Zobrazte soubor AI pomocí Aspose.PSD. Snadný a rychlý prohlížeč AI.