0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

TCPDFで、実線・点線・破線・二重線を引く方法

Posted at

はじめに

TCPDFで、罫線を表示する機会があったので、備忘録として残します。

環境

TCPDFのバージョンは4.8.013です。

表示例

上から実線・点線・破線・二重線です。

スクリーンショット 2024-07-29 18.48.42.png

コード

dashの設定で、線の表示を変えています。
二重線は1行で表示する方法が無いため、実線を2回表示しています。

	// 実線
	$solidLineStyle = ['dash' => '0'];
 	// Lineの引数(開始点のX座標、開始点のY座標、終了点のX座標、終了点のY座標、線種)
	$tcpdf->Line(10, 10, 100, 10, $solidLineStyle);

	// 点線
	$dottedLineStyle = ['dash' => '1, 4'];
	$tcpdf->Line(10, 20, 100, 20, $dottedLineStyle);

	// 破線
	$dashedLineStyle = ['dash' => '2'];
	$tcpdf->Line(10, 30, 100, 30, $dashedLineStyle);

	// 二重線
	$doubleLineStyle = ['dash' => '0'];
	$tcpdf->Line(10, 40, 100, 40, $doubleLineStyle);
	$tcpdf->Line(10, 41, 100, 41, $doubleLineStyle);

参考

最後に

GoQSystemでは一緒に働いてくれる仲間を募集中です!

ご興味がある方は以下リンクよりご確認ください。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?