PS إلى PNG
تحويل PS إلى PNG عبر API Solution لـ C++.
يوفر محول Aspose.Page for PS to PNG تحويل ملف PostScript (PS) إلى صورة PNG باستخدام أي لغة يدعمها C++.
يمكن استخدام واجهة برمجة التطبيقات (API) التي تراها هنا لإنشاء تطبيق خاص بك عبر الأنظمة الأساسية أو دمجها في مشروع C++ الخاص بك.
لتحويل XPS إلى PNG:
Aspose.Page for C++ API وهي واجهة برمجة تطبيقات غنية بالميزات وقوية وسهلة الاستخدام لمعالجة المستندات وتحويلها لمنصة C++.
يمكنك تنزيل أحدث إصدار مباشرةً، ما عليك سوى فتح مدير الحزم NuGet، والبحث عن Aspose.Page.Cpp وتثبيته. يمكنك أيضًا استخدام الأمر التالي من وحدة تحكم إدارة الحزم.
Package Manager Console Command
PM> Install-Package Aspose.Page.Cpp
خطوات تحويل PS إلى PNG باستخدام C++
يسهّل Aspose.Page على المطورين تحميل ملفات PS وتحويلها إلى PNG في بضعة أسطر فقط من التعليمات البرمجية.
- قم بتحميل ملف PS باستخدام Aspose.Page لـ C++.
- قم بإنشاء كائن ImageSaveOptions Class وقم بتعيين تنسيق الصورة على أنه ImageFormat::Png .
- احصل على مجموعة بايت من استدعاء الصور SaveAsImage مع خيارات محددة.
- حفظ الصورة عن طريق كتابة بايت الصورة إلى تيار الإخراج.
تحويل PS إلى PNG C++
// The path to the documents directory. | |
System::String dataDir = RunExamples::GetDataDir_WorkingWithDocumentConversion(); | |
// Initialize PsDocument with the name of PostScript file. | |
System::SharedPtr<PsDocument> document = System::MakeObject<PsDocument>(dataDir + u"input.ps"); | |
// If you want to convert Postscript file despite of minor errors set this flag | |
bool suppressErrors = true; | |
//Initialize options object with necessary parameters. | |
System::SharedPtr<ImageSaveOptions> options = System::MakeObject<ImageSaveOptions>(); | |
//Set output image format. | |
options->set_ImageFormat(Aspose::Page::Drawing::Imaging::ImageFormat::Png); | |
// If you want to add special folder where fonts are stored. Default fonts folder in OS is always included. | |
options->set_AdditionalFontsFolders(System::MakeArray<System::String>({u"{FONT_FOLDER}"})); | |
// Save PS document as array of image bytes, one bytes array for one page. | |
System::ArrayPtr<System::ArrayPtr<uint8_t>> imagesBytes = document->SaveAsImage(options); | |
//Save images bytes arrays as image files. | |
int32_t i = 0; | |
for (System::ArrayPtr<uint8_t> imageBytes : imagesBytes) | |
{ | |
System::String imagePath = System::IO::Path::GetFullPath(dataDir + u"out_image" + System::Convert::ToString(i) + u"." + System::ObjectExt::ToString(options->get_ImageFormat()).ToLower()); | |
{ | |
System::SharedPtr<System::IO::FileStream> fs = System::MakeObject<System::IO::FileStream>(imagePath, System::IO::FileMode::Create, System::IO::FileAccess::Write); | |
// Clearing resources under 'using' statement | |
System::Details::DisposeGuard<1> __dispose_guard_0({ fs}); | |
// ------------------------------------------ | |
try | |
{ | |
fs->Write(imageBytes, 0, imageBytes->get_Length()); | |
} | |
catch(...) | |
{ | |
__dispose_guard_0.SetCurrentException(std::current_exception()); | |
} | |
} | |
i++; | |
} | |
//Review errors | |
if (suppressErrors) | |
{ | |
for (auto&& ex : System::IterateOver(options->get_Exceptions())) | |
{ | |
System::Console::WriteLine(ex->get_Message()); | |
} | |
} | |
PS إلى تطبيق ويب التحويل PNG
تحويل PS إلى PNG الآن من خلال زيارة موقع Live Demos الخاص بنا.
PS ما هو PS تنسيق الملف
تنسيق PS هو أحد تنسيقات لغة وصف الصفحة (PDL). إنه قادر على احتواء المعلومات الرسومية والنصية على الصفحة. هذا هو السبب في أن التنسيق كان مدعومًا من قبل معظم برامج تحرير الصور. ملف بوستسكريبت نفسه هو نوع من التعليمات للطابعات. يحتوي على معلومات حول ماذا وكيف تطبع من صفحتها.
PNG ما هو PNG تنسيق الملف
تعد Portable Network Graphics أو PNG أحد أكثر تنسيقات الصور شيوعًا. يمنحك ضغطًا جيدًا حقًا للحفاظ على المستوى العالي لجودة الصورة. يعد PNG أيضًا أحد أفضل التنسيقات لمشروعات الويب ، حيث تكون الملفات أخف وزناً ويسهل قياس الصور. أحد عيوب التنسيق عند استخدامه على الويب هو أنه لا يمكن إضافة كلمات رئيسية إلى الصورة مباشرةً.