本文整理匯總了C#中iTextSharp.text.pdf.PdfName.ToPdf方法的典型用法代碼示例。如果您正苦於以下問題:C# PdfName.ToPdf方法的具體用法?C# PdfName.ToPdf怎麽用?C# PdfName.ToPdf使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類iTextSharp.text.pdf.PdfName
的用法示例。
在下文中一共展示了PdfName.ToPdf方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: WriteStroke
private void WriteStroke(PdfContentByte canvas, Path path, PdfName strokeColorSpace) {
canvas.InternalBuffer.Append(q);
if (strokeColorSpace != null) {
strokeColorSpace.ToPdf(canvas.PdfWriter, canvas.InternalBuffer);
canvas.InternalBuffer.Append(' ').Append(cs);
}
IList<PdfObject> strokeColorOperands = cleanUpStrategy.Context.PeekStrokeColor();
String strokeOperatorStr = strokeColorOperands[strokeColorOperands.Count - 1].ToString();
// Below expression converts stroke color operator to its fill analogue.
strokeColorOperands[strokeColorOperands.Count - 1] = new PdfLiteral(strokeOperatorStr.ToLower());
WriteOperands(canvas, strokeColorOperands);
WritePath(cleanUpStrategy.CurrentStrokePath, f, canvas);
canvas.InternalBuffer.Append(Q);
}