FontUnit
FontUnit class
글꼴, 크기 및 스타일을 포함하여 텍스트의 특정 형식을 정의합니다. 속성 여기서 크기는 단위 값 속성입니다.
public sealed class FontUnit
속성
이름 | 설명 |
---|---|
FamilyName { get; set; } | 이 글꼴의 얼굴 이름을 가져오거나 설정합니다. |
Size { get; } | 단위 값에서 이 FontUnit의 크기를 가져오거나 설정합니다. |
Style { get; set; } | 이 FontUnit에 대한 스타일 정보를 가져오거나 설정합니다. |
예
이 샘플은 바코드 이미지를 만들고 저장하는 방법을 보여줍니다.
[C#]
using (BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Code128))
{
generator.CodeTextStyle.Font.Style = FontStyle.Italic;
generator.CodeTextStyle.Font.Size.Point = 18;
generator.Save("test.png");
}
또한보십시오
- 네임스페이스 Aspose.BarCode.Generation
- 집회 Aspose.BarCode