在PHP中创建一个图像以显示吉他和弦

时间:2011-11-06 17:32:13

标签: php image guitar music-notation

我有一个以文本格式显示吉他和弦/标签的网站。这是我目前正在展示的内容:

EM:

| | | | | |
| | | | | |
| 2 2 | | |
| | | | | |
| | | | | |

我了解到GD可以为此创建动态图像。但我是PHP的新手,我不知道该怎么做。

在PHP中创建这样的东西以显示图像是否很简单?

由于

2 个答案:

答案 0 :(得分:73)

首先下载arial字体并获取此图片(另存为guitar.jpg):

guitar.jpg

并将它们放在与此脚本相同的文件夹中(例如chords.php):

<?php

  function showChord($chord) {
    $imgfile = "./guitar.jpg";
    $text = ".";
    $font = './arial.ttf';

    $im = imagecreatefromjpeg($imgfile);
    $x = imagesx($im);
    $y = imagesy($im);
    $fontsize = 100;
    $white = imagecolorallocate($im, 0, 0, 0);

    $chords = explode('-', $chord);
    // chords[0] = e1 and chords[5] = e6

    $minimum = min($chords);
    imagettftext($im, 15, 0, 1, 32, $white, $font, $minimum);
    $add = 0;
    if($minimum > 0) {
      $add = 30;  
    }
    // chords positions
    $interval1 = ($chords[0] != 0 ? (25 + $add + (intval($chords[0]) - $minimum) * 30) : 0);
    $interval2 = ($chords[1] != 0 ? (25 + $add + (intval($chords[1]) - $minimum) * 30) : 0);
    $interval3 = ($chords[2] != 0 ? (25 + $add + (intval($chords[2]) - $minimum) * 30) : 0);
    $interval4 = ($chords[3] != 0 ? (25 + $add + (intval($chords[3]) - $minimum) * 30) : 0);
    $interval5 = ($chords[4] != 0 ? (25 + $add + (intval($chords[4]) - $minimum) * 30) : 0);
    $interval6 = ($chords[5] != 0 ? (25 + $add + (intval($chords[5]) - $minimum) * 30) : 0);
    // write to the image
    imagettftext($im, $fontsize, 0, 01, $interval1, $white, $font, $text);
    imagettftext($im, $fontsize, 0, 18, $interval2, $white, $font, $text);
    imagettftext($im, $fontsize, 0, 36, $interval3, $white, $font, $text);
    imagettftext($im, $fontsize, 0, 53, $interval4, $white, $font, $text);
    imagettftext($im, $fontsize, 0, 70, $interval5, $white, $font, $text);
    imagettftext($im, $fontsize, 0, 86, $interval6, $white, $font, $text);
    header("Content-type: image/jpeg");
    imagejpeg($im);
    ImageDestroy($im);
  }

#  $chord = '0-2-2-0-0-0'; //Em
  $chord = '2-4-4-3-2-2'; //F#
  showChord($chord);

这将输出类似于F#的东西。左上角的 2 表示第二个品格

enter image description here

**注意:我还会将图像保存到磁盘中,这样您就不必一遍又一遍地重新生成相同的标签。*

答案 1 :(得分:5)

为了做到这一点,Tony Pottier写了一堂精彩的课。 http://www.tonypottier.info/

编辑:解决下面提到的问题:

$c = new chord(array('x',13,12,11,12,'x'));
$c->setMarginRight(20);
$c->setStartingFret(10);
$c->draw();

没有边距权限,双重数字的线条将无法正确显示。