Txt2Resource.AddTextRecord
Txt2Resource.AddTextRecord method
텍스트 레코드를 리소스에 추가하고 텍스트 레코드의 ID를 반환합니다.
public int AddTextRecord(string text, RectangleF bounds)
모수 | 유형 | 설명 |
---|---|---|
text | String | 레코드 텍스트입니다. |
bounds | RectangleF | 경계. |
반환 값
resource 에 대한 텍스트 레코드의 ID를 반환합니다.
예외
예외 | 상태 |
---|---|
PsdImageException | 알 수 없는 Txt2 리소스 버전입니다. |
예
다음 코드는 새로운 ITextStyle 속성 지원을 보여줍니다.
[C#]
void AssertAreEqual(object expected, object actual)
{
if (!object.Equals(expected, actual))
{
throw new FormatException(
string.Format("Actual value {0} are not equal to expected {1}.", actual, expected));
}
}
string srcFile = "A.psd";
string outputFile = "output.psd";
using (var psdImage = (PsdImage)Image.Load(srcFile))
{
var textLayer = (TextLayer)psdImage.Layers[1];
textLayer.UpdateText("abc");
psdImage.Save(outputFile);
}
// 값 확인
using (var srcImage = (PsdImage)Image.Load(srcFile))
{
var srcTextLayer = (TextLayer)srcImage.Layers[1];
var etalonStyle = srcTextLayer.TextData.Items[0].Style;
using (var outImage = (PsdImage)Image.Load(outputFile))
{
var outTextLayer = (TextLayer)outImage.Layers[1];
var resultStyle = outTextLayer.TextData.Items[0].Style;
AssertAreEqual(etalonStyle.AutoLeading, resultStyle.AutoLeading);
AssertAreEqual(etalonStyle.FontIndex, resultStyle.FontIndex);
AssertAreEqual(etalonStyle.Underline, resultStyle.Underline);
AssertAreEqual(etalonStyle.Strikethrough, resultStyle.Strikethrough);
AssertAreEqual(etalonStyle.AutoKerning, resultStyle.AutoKerning);
AssertAreEqual(etalonStyle.StandardLigatures, resultStyle.StandardLigatures);
AssertAreEqual(etalonStyle.DiscretionaryLigatures, resultStyle.DiscretionaryLigatures);
AssertAreEqual(etalonStyle.ContextualAlternates, resultStyle.ContextualAlternates);
AssertAreEqual(etalonStyle.LanguageIndex, resultStyle.LanguageIndex);
AssertAreEqual(etalonStyle.VerticalScale, resultStyle.VerticalScale);
AssertAreEqual(etalonStyle.HorizontalScale, resultStyle.HorizontalScale);
AssertAreEqual(etalonStyle.Fractions, resultStyle.Fractions);
}
}
또한보십시오
- struct RectangleF
- class Txt2Resource
- 네임스페이스 Aspose.PSD.FileFormats.Psd.Layers.LayerResources
- 집회 Aspose.PSD