افتح ملف AI عبر الإنترنت

عندما لا تحتاج إلى وظيفة التحرير عند فتح تنسيق AI عبر الإنترنت، فإن AI Viewer هذا يعد حلاً جيدًا للعديد من الأغراض. يمكنك فتح ملف AI عبر الإنترنت بعد التحميل إلى خادم الويب. صيغة AI هي صيغة متجهة، لذلك ستتم متابعة التنقيط بحجم الصورة المحدد. للحصول على الوظائف الإضافية، يمكنك استخدام .Net أو Java واجهة برمجة تطبيقات عالية الكود لفتح ملفات AI بالأبعاد التي تحتاجها

Drag and drop a file or click Open Image

your image

You can reproduce the main functionality of this built-in app using Aspose.PSD

	// For the new AI format please use the following code:
	async Task<bool> OpenPdfToPng(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 Old AI Formats please use the Aspose.PSD high-code API
	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

افتح ملف AI باستخدام Aspose.PSD أو منتجات Aspose الأخرى. قم بعرض معاينة ملف AI عبر الإنترنت.