یادداشتهای نسخه Aspose.PSD برای .NET 21.5
Contents
[
Hide
]
این صفحه شامل یادداشتهای انتشار برای Aspose.PSD برای .NET 21.5
کلید | خلاصه | دسته |
---|---|---|
PSDNET-758 | پشتیبانی از تغییر اندازه لایههای شکل با مسیرهای برداری | ویژگی |
PSDNET-862 | پشتیبانی از تغییر اندازه لایههای شکل با مسیرهای برداری هنگام فقط تغییر اندازه لایه | ویژگی |
PSDNET-578 | رشته متن قطع شده | اشکال |
تغییرات API عمومی
APIهای اضافه شده:
- هیچکدام
APIهای حذف شده:
- هیچکدام
مثالهای استفاده:
PSDNET-578. رشته متن قطع شده
string srcFile = "grinched-regular-font.psd";
string output = "output_grinched-regular-font.psd.png";
// مسیر فونتها را تنظیم کنید
System.Collections.Generic.List<string> fonts = new System.Collections.Generic.List<string>();
fonts.AddRange(FontSettings.GetDefaultFontsFolders());
fonts.Add(@"Fonts\");
FontSettings.SetFontsFolders(fonts.ToArray(), true);
using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
image.Save(output, new PngOptions());
}
PSDNET-758. پشتیبانی از تغییر اندازه لایههای شکل با مسیرهای برداری
string sourceFileName = "vectorShapes.psd";
string outputFileName = "out_vectorShapes.psd";
string dataDir = "PSDNET758_1";
string sourcePath = Path.Combine(dataDir, sourceFileName);
string outputPath = Path.Combine(dataDir, outputFileName);
using (var psdImage = (PsdImage)Image.Load(sourcePath))
{
foreach (var layer in psdImage.Layers)
{
layer.Resize(layer.Width * 5 / 4, layer.Height / 2);
}
psdImage.Save(outputPath);
psdImage.Save(Path.ChangeExtension(outputPath, ".png"), new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
}
PSDNET-862. پشتیبانی از تغییر اندازه لایههای شکل با مسیرهای برداری هنگام فقط تغییر اندازه لایه
// این مثال نشان میدهد چگونه لایهها با Vogk و منبع مسیر برداری را در تصویر PSD تغییر اندازه دهید
float scaleX = 0.45f;
float scaleY = 1.60f;
string dataDir = "PSDNET862_1";
string sourceFileName = Path.Combine(dataDir, "vectorShapes.psd");
using (PsdImage image = (PsdImage)Image.Load(sourceFileName))
{
for (int layerIndex = 1; layerIndex < image.Layers.Length; layerIndex++, scaleX += 0.25f, scaleY -= 0.25f)
{
var layer = image.Layers[layerIndex];
var newWidth = (int)Math.Round(layer.Width * scaleX);
var newHeight = (int)Math.Round(layer.Height * scaleY);
layer.Resize(newWidth, newHeight);
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("en-GB");
string outputName = string.Format("resized_{0}_{1}_{2}", layerIndex, scaleX, scaleY);
string outputPath = Path.Combine(dataDir, outputName + ".psd");
string outputPngPath = Path.Combine(dataDir, outputName + ".png");
image.Save(outputPath, new PsdOptions(image));
image.Save(outputPngPath, new PngOptions() { ColorType = PngColorType.TruecolorWithAlpha });
}
}