PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html.
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://php.net/.
or search from google with Libraries Name you get jar file related it and also http://php.net/ is a official site
Using imagesettile()
<?php
define("WIDTH", 200);
define("HEIGHT", 200);
define("T_WIDTH", 20);
define("T_HEIGHT",20);
$img = imagecreate(WIDTH, HEIGHT);
$background = $white = imagecolorallocate($img, 0xFF, 0xFF, 0xFF);
$black = imagecolorallocate($img, 0, 0, 0);
$tile = imagecreate(T_WIDTH, T_HEIGHT);
$t_bkgr = $t_white = imagecolorallocate($tile, 0xFF, 0xFF, 0xFF);
$t_black = imagecolorallocate($tile, 0,0,0);
imagefilledrectangle($tile, 0, 0, T_WIDTH/2, T_HEIGHT/2, $t_black);
imagefilledrectangle($tile, T_WIDTH/2, T_HEIGHT/2,
T_WIDTH-1, T_HEIGHT-1, $t_black);
imagerectangle($img, 0, 0, WIDTH-1, HEIGHT-1, $black);
imagesettile($img, $tile);
imagefilledrectangle($img, 1, 1, WIDTH-2, HEIGHT-2, IMG_COLOR_TILED);
header("Content-Type: image/png");
imagepng($img);
?>