Skip to content

Instantly share code, notes, and snippets.

@avalanche123
Created February 12, 2011 16:19
Show Gist options
  • Save avalanche123/823853 to your computer and use it in GitHub Desktop.
Save avalanche123/823853 to your computer and use it in GitHub Desktop.
<?php
$width = 400;
$height = 300;
$canvas = imagecreatetruecolor($width, $height);
imagefilledrectangle($canvas, 0, 0, $width, $height, imagecolorallocatealpha($canvas, 0, 0, 0, 0));
imagefilledarc($canvas, 200, 150, $width / 2, $height / 2, 45, 135, imagecolorallocatealpha($canvas, 255, 255, 255, 0), IMG_ARC_CHORD /* | IMG_ARC_NOFILL */);
imagejpeg($canvas, '/path/to/chord.jpg');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment