وضع الخصائص على الصور

تحديث ذاكرة التخزين المؤقت للخطوط

باستخدام Aspose.PSD لـ .NET ، يمكن للمطورين إضافة إمكانية تحديث ذاكرة التخزين المؤقت للخطوط. فيما يلي توضيح لرمز الوظيفة المذكورة.

// For complete examples and data files, please go to https://github.com/aspose-psd/Aspose.PSD-for-.NET
using (PsdImage image = (PsdImage)Image.Load(dataDir + "sample.psd"))
{
image.Save("NoFont.psd");
}
Console.WriteLine("You have 2 minutes to install the font");
Thread.Sleep(TimeSpan.FromMinutes(2));
OpenTypeFontsCache.UpdateCache();
using (PsdImage image = (PsdImage)Image.Load(dataDir + @"sample.psd"))
{
image.Save(dataDir + "HasFont.psd");
}

تحديد الاستبدال للخطوط المفقودة

باستخدام Aspose.PSD لـ .NET ، يمكن للمطورين استبدال الخطوط المفقودة. باستخدام رمز العينة أدناه ، سيتمكن المطورون من تحديد اسم الخط الافتراضي عند حفظ مستندات PSD كصورة نقطية (إلى تنسيقات PNG ، JPG و BMP). يجب استخدام هذا الخط الافتراضي كبديل لجميع الخطوط المفقودة أي الخطوط التي لم يتم العثور عليها في نظام التشغيل الحالي. فيما يلي توضيح لرمز الوظيفة المذكورة.

// For complete examples and data files, please go to https://github.com/aspose-psd/Aspose.PSD-for-.NET
string sourceFileName = "sample_konstanting.psd";
string[] outputs = new string[]
{
"replacedfont0.tiff",
"replacedfont1.png",
"replacedfont2.jpg"
};
using (PsdImage image = (PsdImage)Image.Load(sourceFileName, new PsdLoadOptions()))
{
// This way you can use different fonts for different outputs
image.Save(outputs[0], new TiffOptions(TiffExpectedFormat.TiffJpegRgb) { DefaultReplacementFont = "Arial" });
image.Save(outputs[1], new PngOptions { DefaultReplacementFont = "Verdana" });
image.Save(outputs[2], new JpegOptions { DefaultReplacementFont = "Times New Roman" });
}