jsPDF のドキュメントでは、テキスト行間のスペースを増やす方法や関数が見つかりません。私は、知識のある誰かが彼/彼女の知識を少し共有することにうなずくかどうか疑問に思っていました:)。どうもありがとう。
質問する
13427 次
2 に答える
7
jsPDF コンストラクターにパラメーターを追加することもできます。
file = new jsPDF({orientation: "p", lineHeight: 1.5)})
jsPDF コードから (関数 jsPDF(orientation, unit, format, compressPdf)):
var options = {};
if (typeof orientation === 'object') {
options = orientation;
orientation = options.orientation;
unit = options.unit || unit;
format = options.format || format;
compressPdf = options.compress || options.compressPdf || compressPdf;
}
// Default options
unit = unit || 'mm';
format = format || 'a4';
orientation = ('' + (orientation || 'P')).toLowerCase();
var format_as_string = ('' + format).toLowerCase(),
compress = !!compressPdf && typeof Uint8Array === 'function',
textColor = options.textColor || '0 g',
drawColor = options.drawColor || '0 G',
activeFontSize = options.fontSize || 16,
lineHeightProportion = options.lineHeight || 1.15,
lineWidth = options.lineWidth || 0.200025; // 2mm
于 2016-05-24T10:59:39.983 に答える