「VexFlow 小節の繰り返し」の版間の差分
(ページの作成:「<yjavascript></script> <script src="https://wiki.yo-net.jp/vexflow/build/cjs/vexflow@4.2.2.0001.js"></script> <!--<script src="https://cdn.jsdelivr.net/npm/vexflow@4.2.3/build/cjs/vexflow.js"></script>--> <!--<script src="https://cdn.jsdelivr.net/npm/vexflow@4.0.2/build/cjs/vexflow.js></script>--> </yjavascript> VexFlow 使い方に戻る。 == '''概要''' == 小節の繰り返し(Bar Repeat)はVexFlowでは描画する術は提供されていません。な…」) |
(→概要) |
||
(同じ利用者による、間の28版が非表示) | |||
16行目: | 16行目: | ||
いったんまた、これまでの累積の音符を消しましょう。 | いったんまた、これまでの累積の音符を消しましょう。 | ||
前の1,2,4小節の繰り返しはちょうどいいフォントが提供されていますが、それ以外の繰り返し小節数は重ねるためのパーツを合わせて使うみたいなんですけど、文字列を繋げただけでは以下の図のようになるので、メンドクサイことになります。すこしづつつめないといけないです。メンドクサイので綺麗に並べる作業はやらないことにしました。 | |||
とか言ってましたが、奥の手自体はプログラムで描画するタイプなので、関数化するとそれほどしんどくないことに気づきまして、ちょちょいっと関数化するだけで、手間自体は省けましたので8小節繰り返しのものすごい記号も簡単に作れてしまったわけです。記載している場所が不自然なので、楽譜っぽい性質は失われていますが、そこはご愛敬でしょう。 | |||
0ピクセル移動で始点と繰り返し記号を同じ位置に書くと上手く描ける感じでした。繰り返し記号自体は10ピクセルづつ移動して重ねないと駄目ですね。終点は15ピクセル移動すると良さそうでした。背景を方眼紙にしているので、計算しやすいですね。我ながらバックを方眼紙にしたのはナイスなアイデアだと思いました。 | |||
いや、あったなVexFlowにも小節の繰り返しも、複数小節休符も。古いバージョンのサンプルには載ってるぞ。いまさらだけどな。もういらねから解説したくないんだけど。そうはいかないか。 | |||
38行目: | 48行目: | ||
const Instrument2 = new Position(0, 0); | const Instrument2 = new Position(0, 0); | ||
const Stave2Pos = new Position(0, 0); | const Stave2Pos = new Position(0, 0); | ||
const Stave3Pos = new Position(0, 0); | |||
const Stave6Pos = new Position(0, 0); | |||
const Stave10Pos = new Position(0, 0); | |||
const Stave11Pos = new Position(0, 0); | |||
(function(){ | (function(){ | ||
const { | const { | ||
119行目: | 133行目: | ||
Instrument1.y = stave1.y + 90; | Instrument1.y = stave1.y + 90; | ||
const notes1 = [ | |||
new StaveNote({ keys: ["c/4"], duration: "4" }), | |||
new StaveNote({ keys: ["d/4"], duration: "4" }), | |||
new StaveNote({ keys: ["e/4"], duration: "4" }), | |||
new StaveNote({ keys: ["f/4"], duration: "4" }) | |||
]; | |||
var stave1Voice = new Vex.Flow.Voice({ num_beats: 4, beat_value: 4 }); | |||
stave1Voice.setStrict(false); | |||
stave1Voice.addTickables(notes1); | |||
var formatter1 = new Vex.Flow.Formatter().joinVoices([stave1Voice]); | |||
formatter1.formatToStave([stave1Voice], stave1); | |||
stave1Voice.draw(ctx, stave1); | |||
const stave2 = f.Stave({ x: stave1.width + stave1.x, y: stave1.y, width: nStaveWidth }); | const stave2 = f.Stave({ x: stave1.width + stave1.x, y: stave1.y, width: nStaveWidth }); | ||
131行目: | 159行目: | ||
stave3.setMeasure(3); | stave3.setMeasure(3); | ||
stave3.draw(); | stave3.draw(); | ||
Stave3Pos.x = stave3.x; | |||
Stave3Pos.y = stave3.y; | |||
const stave4 = new Stave(stave3.width + stave3.x, stave1.y, nStaveWidth).setContext(ctx); | const stave4 = new Stave(stave3.width + stave3.x, stave1.y, nStaveWidth).setContext(ctx); | ||
167行目: | 198行目: | ||
stave6.draw(); | stave6.draw(); | ||
Stave6Pos.x = stave6.x; | |||
Stave6Pos.y = stave6.y; | |||
const stave7 = new Stave(stave6.width + stave6.x, stave5.y, nStaveWidth).setContext(ctx); | const stave7 = new Stave(stave6.width + stave6.x, stave5.y, nStaveWidth).setContext(ctx); | ||
197行目: | 230行目: | ||
stave10.draw(); | stave10.draw(); | ||
Stave10Pos.x = stave10.x; | |||
Stave10Pos.y = stave10.y; | |||
const stave11 = new Stave(stave10.width + stave10.x, stave9.y, nStaveWidth).setContext(ctx); | const stave11 = new Stave(stave10.width + stave10.x, stave9.y, nStaveWidth).setContext(ctx); | ||
202行目: | 237行目: | ||
stave11.draw(); | stave11.draw(); | ||
Stave11Pos.x = stave11.x; | |||
Stave11Pos.y = stave11.y; | |||
const stave12 = new Stave(stave11.width + stave11.x, stave9.y, nStaveWidth).setContext(ctx); | const stave12 = new Stave(stave11.width + stave11.x, stave9.y, nStaveWidth).setContext(ctx); | ||
247行目: | 284行目: | ||
svgElement.appendChild(textGroup3); | svgElement.appendChild(textGroup3); | ||
// | //設定 | ||
var fontSize2 = 40; // フォントサイズ | var fontSize2 = 40; // フォントサイズ | ||
var fontFamily2 = "Bravura, Arial"; // Bravuraフォントファミリー | var fontFamily2 = "Bravura, Arial"; //Bravuraフォントファミリー | ||
var textContent2 = "\uE500"; | var textContent2 = "\uE500";//符頭E0A4 | ||
// テキスト要素の作成 | // テキスト要素の作成 | ||
var newText2 = document.createElementNS('http://www.w3.org/2000/svg', 'text'); | var newText2 = document.createElementNS('http://www.w3.org/2000/svg', 'text'); | ||
newText2.setAttribute('id', ' | newText2.setAttribute('id', 'rest2'); //テキスト要素にIDを付ける | ||
newText2.setAttribute('x', 0); | newText2.setAttribute('x', 0); | ||
newText2.setAttribute('y', 0); | newText2.setAttribute('y', 0); | ||
266行目: | 303行目: | ||
(function(){ | (function(){ | ||
var textWidth = document.getElementById(' | var textWidth = document.getElementById('rest2').getBBox().width; | ||
var textHeight = document.getElementById(' | var textHeight = document.getElementById('rest2').getBBox().height; | ||
// | //スケーリング | ||
var horizontalScale = 1 | var horizontalScale = 1; | ||
var verticalScale = 1; | var verticalScale = 1; | ||
var StavePos_x = Stave2Pos.x + | var StavePos_x = Stave2Pos.x + 170; | ||
var StavePos_y = Stave2Pos.y + 60; | var StavePos_y = Stave2Pos.y + 60; | ||
newText2.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')'); | newText2.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')'); | ||
// | //SVG要素に追加する | ||
svgElement.appendChild(newText2); | svgElement.appendChild(newText2); | ||
})(); | })(); | ||
// | //設定 | ||
var | var fontSize3 = 40; // フォントサイズ | ||
var | var fontFamily3 = "Bravura, Arial"; //Bravuraフォントファミリー | ||
var | var textContent3 = "\uE501";//符頭E0A4 | ||
// テキスト要素の作成 | // テキスト要素の作成 | ||
var | var newText3 = document.createElementNS('http://www.w3.org/2000/svg', 'text'); | ||
newText3.setAttribute('id', 'rest3'); // テキスト要素にIDを付ける | |||
newText3.setAttribute('x', 0); | |||
newText3.setAttribute('y', 0); | |||
newText3.setAttribute('font-family', fontFamily3); | |||
newText3.setAttribute('font-size', fontSize3); | |||
newText3.setAttribute('fill', 'black'); | |||
newText3.textContent = textContent3; | |||
// SVG要素にテキストを追加 | // SVG要素にテキストを追加 | ||
svgElement.appendChild( | svgElement.appendChild(newText3); | ||
(function(){ | (function(){ | ||
var textWidth = document.getElementById(' | var textWidth = document.getElementById('rest3').getBBox().width; | ||
var textHeight = document.getElementById(' | var textHeight = document.getElementById('rest3').getBBox().height; | ||
//スケーリング | |||
var horizontalScale = 1; | |||
var verticalScale = 1; | |||
var StavePos_x = Stave3Pos.x + 335; | |||
var StavePos_y = Stave3Pos.y + 60; | |||
newText3.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')'); | |||
//SVG要素に追加する | |||
svgElement.appendChild(newText3); | |||
})(); | |||
//設定 | |||
var fontSize6 = 40; // フォントサイズ | |||
var fontFamily6 = "Bravura, Arial"; //Bravuraフォントファミリー | |||
var textContent6 = "\uE502";//符頭E0A4 | |||
// テキスト要素の作成 | |||
var newText6 = document.createElementNS('http://www.w3.org/2000/svg', 'text'); | |||
newText6.setAttribute('id', 'rest6'); // テキスト要素にIDを付ける | |||
newText6.setAttribute('x', 0); | |||
newText6.setAttribute('y', 0); | |||
newText6.setAttribute('font-family', fontFamily6); | |||
newText6.setAttribute('font-size', fontSize6); | |||
newText6.setAttribute('fill', 'black'); | |||
newText6.textContent = textContent6; | |||
// SVG要素にテキストを追加 | |||
svgElement.appendChild(newText6); | |||
(function(){ | |||
var textWidth = document.getElementById('rest6').getBBox().width; | |||
var textHeight = document.getElementById('rest6').getBBox().height; | |||
//スケーリング | |||
var horizontalScale = 1; | |||
var verticalScale = 1; | |||
var StavePos_x = | var StavePos_x = Stave6Pos.x + 325; | ||
var StavePos_y = | var StavePos_y = Stave6Pos.y + 60; | ||
newText6.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')'); | |||
// クレシェンド記号をSVG要素に追加する | // クレシェンド記号をSVG要素に追加する | ||
svgElement.appendChild( | svgElement.appendChild(newText6); | ||
})(); | })(); | ||
//設定 | |||
var fontSize10 = 40; // フォントサイズ | |||
var fontFamily10 = "Bravura, Arial"; // Bravuraフォントファミリー | |||
var textContent10 = "\uE503\uE504\uE504\uE504\uE504\uE505";// 符頭E0A4 | |||
// テキスト要素の作成 | |||
var newText10 = document.createElementNS('http://www.w3.org/2000/svg', 'text'); | |||
newText10.setAttribute('id', 'rest10'); // テキスト要素にIDを付ける | |||
newText10.setAttribute('x', 0); | |||
newText10.setAttribute('y', 0); | |||
newText10.setAttribute('font-family', fontFamily10); | |||
newText10.setAttribute('font-size', fontSize10); | |||
newText10.setAttribute('fill', 'black'); | |||
newText10.textContent = textContent10; | |||
// SVG要素にテキストを追加 | |||
svgElement.appendChild(newText10); | |||
(function(){ | |||
var textWidth = document.getElementById('rest10').getBBox().width; | |||
var textHeight = document.getElementById('rest10').getBBox().height; | |||
//スケーリング | |||
var horizontalScale = 1; | |||
var verticalScale = 1; | |||
var StavePos_x = Stave10Pos.x + 325; | |||
var StavePos_y = Stave10Pos.y + 60; | |||
newText10.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')'); | |||
//SVG要素に追加する | |||
svgElement.appendChild(newText10); | |||
})(); | |||
function insertTextToSVG(options) { | |||
var textContent = options.textContent; | |||
var strID = options.strID; | |||
var Stave_x = options.Stave_x; | |||
var Stave_y = options.Stave_y; | |||
var Stave_x_Offset = options.Stave_x_Offset || 0; | |||
var Stave_y_Offset = options.Stave_y_Offset || 0; | |||
var StaveWidth = options.StaveWidth || 0; | |||
var StaveHeight = options.StaveHeight || 0; | |||
var StaveVerticalScale = options.StaveVerticalScale || 0; | |||
var fontSize = options.fontSize || 40; | |||
var fontFamily = options.fontFamily || "Bravura, Arial"; | |||
var shift_x = options.shift_x || [0]; | |||
var offset_sum = 0; | |||
shift_x.forEach(function(offset, index) { | |||
offset_sum = offset_sum + offset; | |||
var newText = document.createElementNS('http://www.w3.org/2000/svg', 'text'); | |||
newText.setAttribute('id', strID + '_' + index); // テキスト要素にIDを付ける | |||
newText.setAttribute('x', 0); | |||
newText.setAttribute('y', 0); | |||
newText.setAttribute('font-family', fontFamily); | |||
newText.setAttribute('font-size', fontSize); | |||
newText.setAttribute('fill', 'black'); | |||
if (Array.isArray(textContent)) { | |||
newText.textContent = textContent[index]; | |||
} | |||
else{ | |||
newText.textContent = textContent; | |||
} | |||
(function() { | |||
var textWidth = newText.getBBox().width; | |||
var textHeight = newText.getBBox().height; | |||
var horizontalScale; | |||
if (typeof StaveWidth === 'undefined' || StaveWidth == 0) { | |||
horizontalScale = 1; | |||
} else { | |||
horizontalScale = StaveWidth / textWidth; | |||
} | |||
var verticalScale; | |||
if (typeof StaveHeight === 'undefined' || StaveHeight == 0) { | |||
verticalScale = 1; | |||
} else if (StaveVerticalScale != 0) { | |||
verticalScale = StaveVerticalScale; | |||
} else { | |||
verticalScale = StaveHeight / textHeight; | |||
} | |||
var StavePos_x = Stave_x + Stave_x_Offset + offset_sum; | |||
var StavePos_y = Stave_y + Stave_y_Offset; | |||
newText.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')'); | |||
})(); | |||
svgElement.appendChild(newText); | |||
}); | |||
} | |||
var options = { | |||
textContent: ["\uE503", "\uE504", "\uE504", "\uE504", "\uE504", "\uE504", "\uE504", "\uE504", "\uE504", "\uE505"], // 必須文字列 | |||
strID: "rest11", // 必須 | |||
Stave_x: Stave11Pos.x, | |||
Stave_y: Stave11Pos.y, | |||
Stave_x_Offset: 305, // オプション、デフォルトは0 | |||
Stave_y_Offset: 60, // オプション、デフォルトは0 | |||
StaveWidth: 0, // オプション、デフォルトは0 | |||
StaveHeight: 0, // オプション、デフォルトは0 | |||
StaveVerticalScale: 0, // オプション、デフォルトは0 | |||
fontSize: 40, // オプション、デフォルトは40 | |||
fontFamily: "Bravura, Arial", // オプション、デフォルトは"Bravura, Arial" | |||
shift_x: [0, 0, 10, 10, 10, 10, 10, 10, 10, 15] // xのオフセット値配列 | |||
}; | |||
insertTextToSVG(options); | |||
})(); | })(); | ||
326行目: | 507行目: | ||
<syntaxhighlight lang="javascript" line start="1" highlight=" | <syntaxhighlight lang="javascript" line start="1" highlight=""> | ||
<div id="yonet202403Mid_Output01"></div> | <div id="yonet202403Mid_Output01"></div> | ||
<script> | <script> | ||
340行目: | 521行目: | ||
const Instrument1 = new Position(0, 0); | const Instrument1 = new Position(0, 0); | ||
const Instrument2 = new Position(0, 0); | const Instrument2 = new Position(0, 0); | ||
const | const Stave2Pos = new Position(0, 0); | ||
const Stave3Pos = new Position(0, 0); | |||
const Stave6Pos = new Position(0, 0); | |||
const Stave10Pos = new Position(0, 0); | |||
const Stave11Pos = new Position(0, 0); | |||
(function(){ | (function(){ | ||
const { | const { | ||
379行目: | 564行目: | ||
strokeStyle: ctx.strokeStyle, | strokeStyle: ctx.strokeStyle, | ||
}; | }; | ||
for (let i = 0; i <= nwidth * (1 / nscale); i += 10) { | for (let i = 0; i <= nwidth * (1 / nscale); i += 10) { | ||
423行目: | 606行目: | ||
Instrument1.x = stave1.x - 30; | Instrument1.x = stave1.x - 30; | ||
Instrument1.y = stave1.y + 90; | Instrument1.y = stave1.y + 90; | ||
const notes1 = [ | const notes1 = [ | ||
new StaveNote({ keys: ["c | new StaveNote({ keys: ["c/4"], duration: "4" }), | ||
new StaveNote({ keys: ["d | new StaveNote({ keys: ["d/4"], duration: "4" }), | ||
new StaveNote({ keys: ["e | new StaveNote({ keys: ["e/4"], duration: "4" }), | ||
new StaveNote({ keys: ["f/4 | new StaveNote({ keys: ["f/4"], duration: "4" }) | ||
]; | ]; | ||
var stave1Voice = new Vex.Flow.Voice({ num_beats: 4, beat_value: 4 }); | var stave1Voice = new Vex.Flow.Voice({ num_beats: 4, beat_value: 4 }); | ||
450行目: | 626行目: | ||
stave2.setContext(ctx).draw(); | stave2.setContext(ctx).draw(); | ||
Stave2Pos.x = stave2.x; | |||
Stave2Pos.y = stave2.y; | |||
//f.draw(); | |||
f.draw(); | |||
const stave3 = new Stave(stave2.width + stave2.x, stave1.y, nStaveWidth).setContext(ctx); | const stave3 = new Stave(stave2.width + stave2.x, stave1.y, nStaveWidth).setContext(ctx); | ||
469行目: | 634行目: | ||
stave3.draw(); | stave3.draw(); | ||
Stave3Pos.x = stave3.x; | |||
Stave3Pos.y = stave3.y; | |||
const stave4 = new Stave(stave3.width + stave3.x, stave1.y, nStaveWidth).setContext(ctx); | const stave4 = new Stave(stave3.width + stave3.x, stave1.y, nStaveWidth).setContext(ctx); | ||
stave4.setMeasure(4); | stave4.setMeasure(4); | ||
stave4.draw(); | stave4.draw(); | ||
const stave5 = new Stave(stave1.x, stave1.y + 200, nHeadMargin + nStaveWidth).setContext(ctx); | const stave5 = new Stave(stave1.x, stave1.y + 200, nHeadMargin + nStaveWidth).setContext(ctx); | ||
stave5.addClef("treble").setContext(ctx); | stave5.addClef("treble").setContext(ctx); | ||
stave5.addTimeSignature('4/4').setContext(ctx); | stave5.addTimeSignature('4/4').setContext(ctx); | ||
stave5.setMeasure(5); | stave5.setMeasure(5); | ||
stave5.draw(); | stave5.draw(); | ||
500行目: | 651行目: | ||
connector.setContext(ctx); | connector.setContext(ctx); | ||
connector.draw(); | connector.draw(); | ||
function dotted(staveNote, noteIndex = -1) { | function dotted(staveNote, noteIndex = -1) { | ||
544行目: | 672行目: | ||
stave6.draw(); | stave6.draw(); | ||
Stave6Pos.x = stave6.x; | |||
Stave6Pos.y = stave6.y; | |||
const stave7 = new Stave(stave6.width + stave6.x, stave5.y, nStaveWidth).setContext(ctx); | const stave7 = new Stave(stave6.width + stave6.x, stave5.y, nStaveWidth).setContext(ctx); | ||
stave7.setMeasure(7); | stave7.setMeasure(7); | ||
stave7.draw(); | stave7.draw(); | ||
const stave8 = new Stave(stave7.width + stave7.x, stave5.y, nStaveWidth).setContext(ctx); | const stave8 = new Stave(stave7.width + stave7.x, stave5.y, nStaveWidth).setContext(ctx); | ||
stave8.setMeasure(8); | stave8.setMeasure(8); | ||
stave8.draw(); | stave8.draw(); | ||
const stave9 = new Stave(stave5.x, stave5.y + 200, nHeadMargin + nStaveWidth).setContext(ctx); | const stave9 = new Stave(stave5.x, stave5.y + 200, nHeadMargin + nStaveWidth).setContext(ctx); | ||
630行目: | 699行目: | ||
Instrument2.x = stave1.x - 30; | Instrument2.x = stave1.x - 30; | ||
Instrument2.y = stave5.y + ((stave9.y - stave5.y) / 2) + 90; | Instrument2.y = stave5.y + ((stave9.y - stave5.y) / 2) + 90; | ||
const stave10 = new Stave(stave9.width + stave9.x, stave9.y, nStaveWidth).setContext(ctx); | const stave10 = new Stave(stave9.width + stave9.x, stave9.y, nStaveWidth).setContext(ctx); | ||
638行目: | 704行目: | ||
stave10.draw(); | stave10.draw(); | ||
Stave10Pos.x = stave10.x; | |||
Stave10Pos.y = stave10.y; | |||
const stave11 = new Stave(stave10.width + stave10.x, stave9.y, nStaveWidth).setContext(ctx); | const stave11 = new Stave(stave10.width + stave10.x, stave9.y, nStaveWidth).setContext(ctx); | ||
643行目: | 711行目: | ||
stave11.draw(); | stave11.draw(); | ||
Stave11Pos.x = stave11.x; | |||
Stave11Pos.y = stave11.y; | |||
const stave12 = new Stave(stave11.width + stave11.x, stave9.y, nStaveWidth).setContext(ctx); | const stave12 = new Stave(stave11.width + stave11.x, stave9.y, nStaveWidth).setContext(ctx); | ||
688行目: | 758行目: | ||
svgElement.appendChild(textGroup3); | svgElement.appendChild(textGroup3); | ||
// | //設定 | ||
var | var fontSize2 = 40; // フォントサイズ | ||
var | var fontFamily2 = "Bravura, Arial"; // Bravuraフォントファミリー | ||
var | var textContent2 = "\uE500";// 符頭E0A4 | ||
// テキスト要素の作成 | // テキスト要素の作成 | ||
var | var newText2 = document.createElementNS('http://www.w3.org/2000/svg', 'text'); | ||
newText2.setAttribute('id', 'rest2'); // テキスト要素にIDを付ける | |||
newText2.setAttribute('x', 0); | |||
newText2.setAttribute('y', 0); | |||
newText2.setAttribute('font-family', fontFamily2); | |||
newText2.setAttribute('font-size', fontSize2); | |||
newText2.setAttribute('fill', 'black'); | |||
newText2.textContent = textContent2; | |||
// SVG要素にテキストを追加 | //SVG要素にテキストを追加 | ||
svgElement.appendChild( | svgElement.appendChild(newText2); | ||
(function(){ | (function(){ | ||
var textWidth = document.getElementById(' | var textWidth = document.getElementById('rest2').getBBox().width; | ||
var textHeight = document.getElementById(' | var textHeight = document.getElementById('rest2').getBBox().height; | ||
// | // クレシェンドの幅に応じて縦方向のスケーリング | ||
var horizontalScale = 1; | var horizontalScale = 1; | ||
var verticalScale = 1; | var verticalScale = 1; | ||
var StavePos_x = | var StavePos_x = Stave2Pos.x + 170; | ||
var StavePos_y = | var StavePos_y = Stave2Pos.y + 60; | ||
newText2.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')'); | |||
//SVG要素に追加する | //SVG要素に追加する | ||
svgElement.appendChild( | svgElement.appendChild(newText2); | ||
})(); | })(); | ||
// | //フォント設定 | ||
var | var fontSize3 = 40; // フォントサイズ | ||
var | var fontFamily3 = "Bravura, Arial"; // Bravuraフォントファミリー | ||
var | var textContent3 = "\uE501";// 符頭E0A4 | ||
// テキスト要素の作成 | // テキスト要素の作成 | ||
var | var newText3 = document.createElementNS('http://www.w3.org/2000/svg', 'text'); | ||
newText3.setAttribute('id', 'rest3'); // テキスト要素にIDを付ける | |||
newText3.setAttribute('x', 0); | |||
newText3.setAttribute('y', 0); | |||
newText3.setAttribute('font-family', fontFamily3); | |||
newText3.setAttribute('font-size', fontSize3); | |||
newText3.setAttribute('fill', 'black'); | |||
newText3.textContent = textContent3; | |||
// SVG要素にテキストを追加 | //SVG要素にテキストを追加 | ||
svgElement.appendChild( | svgElement.appendChild(newText3); | ||
(function(){ | (function(){ | ||
var textWidth = document.getElementById(' | var textWidth = document.getElementById('rest3').getBBox().width; | ||
var textHeight = document.getElementById(' | var textHeight = document.getElementById('rest3').getBBox().height; | ||
// スケーリング | //スケーリング | ||
var horizontalScale = 1; | var horizontalScale = 1; | ||
var verticalScale = 1; | var verticalScale = 1; | ||
var StavePos_x = | var StavePos_x = Stave3Pos.x + 335; | ||
var StavePos_y = | var StavePos_y = Stave3Pos.y + 60; | ||
newText3.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')'); | |||
// SVG要素に追加する | //SVG要素に追加する | ||
svgElement.appendChild( | svgElement.appendChild(newText3); | ||
})(); | })(); | ||
//設定 | |||
var fontSize6 = 40; // フォントサイズ | |||
var fontFamily6 = "Bravura, Arial";// Bravuraフォントファミリー | |||
var textContent6 = "\uE502";// 符頭E0A4 | |||
// テキスト要素の作成 | |||
var newText6 = document.createElementNS('http://www.w3.org/2000/svg', 'text'); | |||
newText6.setAttribute('id', 'rest6'); //テキスト要素にIDを付ける | |||
newText6.setAttribute('x', 0); | |||
newText6.setAttribute('y', 0); | |||
newText6.setAttribute('font-family', fontFamily6); | |||
newText6.setAttribute('font-size', fontSize6); | |||
newText6.setAttribute('fill', 'black'); | |||
newText6.textContent = textContent6; | |||
// SVG要素にテキストを追加 | |||
svgElement.appendChild(newText6); | |||
(function(){ | |||
var textWidth = document.getElementById('rest6').getBBox().width; | |||
var textHeight = document.getElementById('rest6').getBBox().height; | |||
//スケーリング | |||
var horizontalScale = 1; | |||
var verticalScale = 1; | |||
var StavePos_x = Stave6Pos.x + 325; | |||
var StavePos_y = Stave6Pos.y + 60; | |||
newText6.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')'); | |||
//SVG要素に追加する | |||
svgElement.appendChild(newText6); | |||
})(); | |||
//設定 | |||
var fontSize10 = 40; // フォントサイズ | |||
var fontFamily10 = "Bravura, Arial"; // Bravuraフォントファミリー | |||
var textContent10 = "\uE503\uE504\uE504\uE504\uE504\uE505";//複数小節休符 // 符頭E0A4 | |||
// テキスト要素の作成 | |||
var newText10 = document.createElementNS('http://www.w3.org/2000/svg', 'text'); | |||
newText10.setAttribute('id', 'rest10'); // テキスト要素にIDを付ける | |||
newText10.setAttribute('x', 0); | |||
newText10.setAttribute('y', 0); | |||
newText10.setAttribute('font-family', fontFamily10); | |||
newText10.setAttribute('font-size', fontSize10); | |||
newText10.setAttribute('fill', 'black'); | |||
newText10.textContent = textContent10; | |||
// SVG要素にテキストを追加 | |||
svgElement.appendChild(newText10); | |||
(function(){ | |||
var textWidth = document.getElementById('rest10').getBBox().width; | |||
var textHeight = document.getElementById('rest10').getBBox().height; | |||
//スケーリング | |||
var horizontalScale = 1; | |||
var verticalScale = 1; | |||
var StavePos_x = Stave10Pos.x + 325; | |||
var StavePos_y = Stave10Pos.y + 60; | |||
newText10.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')'); | |||
//SVG要素に追加する | |||
svgElement.appendChild(newText10); | |||
})(); | |||
function insertTextToSVG(options) { | |||
var textContent = options.textContent; | |||
var strID = options.strID; | |||
var Stave_x = options.Stave_x; | |||
var Stave_y = options.Stave_y; | |||
var Stave_x_Offset = options.Stave_x_Offset || 0; | |||
var Stave_y_Offset = options.Stave_y_Offset || 0; | |||
var StaveWidth = options.StaveWidth || 0; | |||
var StaveHeight = options.StaveHeight || 0; | |||
var StaveVerticalScale = options.StaveVerticalScale || 0; | |||
var fontSize = options.fontSize || 40; | |||
var fontFamily = options.fontFamily || "Bravura, Arial"; | |||
var shift_x = options.shift_x || [0]; | |||
var offset_sum = 0; | |||
shift_x.forEach(function(offset, index) { | |||
offset_sum = offset_sum + offset; | |||
var newText = document.createElementNS('http://www.w3.org/2000/svg', 'text'); | |||
newText.setAttribute('id', strID + '_' + index); // テキスト要素にIDを付ける | |||
newText.setAttribute('x', 0); | |||
newText.setAttribute('y', 0); | |||
newText.setAttribute('font-family', fontFamily); | |||
newText.setAttribute('font-size', fontSize); | |||
newText.setAttribute('fill', 'black'); | |||
if (Array.isArray(textContent)) { | |||
newText.textContent = textContent[index]; | |||
} | |||
else{ | |||
newText.textContent = textContent; | |||
} | |||
(function() { | |||
var textWidth = newText.getBBox().width; | |||
var textHeight = newText.getBBox().height; | |||
var horizontalScale; | |||
if (typeof StaveWidth === 'undefined' || StaveWidth == 0) { | |||
horizontalScale = 1; | |||
} else { | |||
horizontalScale = StaveWidth / textWidth; | |||
} | |||
var verticalScale; | |||
if (typeof StaveHeight === 'undefined' || StaveHeight == 0) { | |||
verticalScale = 1; | |||
} else if (StaveVerticalScale != 0) { | |||
verticalScale = StaveVerticalScale; | |||
} else { | |||
verticalScale = StaveHeight / textHeight; | |||
} | |||
var StavePos_x = Stave_x + Stave_x_Offset + offset_sum; | |||
var StavePos_y = Stave_y + Stave_y_Offset; | |||
newText.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')'); | |||
})(); | |||
svgElement.appendChild(newText); | |||
}); | |||
} | |||
var options = { | |||
textContent: ["\uE503", "\uE504", "\uE504", "\uE504", "\uE504", "\uE504", "\uE504", "\uE504", "\uE504", "\uE505"], // 必須文字列 | |||
strID: "rest11", // 必須 | |||
Stave_x: Stave11Pos.x, | |||
Stave_y: Stave11Pos.y, | |||
Stave_x_Offset: 305, // オプション、デフォルトは0 | |||
Stave_y_Offset: 60, // オプション、デフォルトは0 | |||
StaveWidth: 0, // オプション、デフォルトは0 | |||
StaveHeight: 0, // オプション、デフォルトは0 | |||
StaveVerticalScale: 0, // オプション、デフォルトは0 | |||
fontSize: 40, // オプション、デフォルトは40 | |||
fontFamily: "Bravura, Arial", // オプション、デフォルトは"Bravura, Arial" | |||
shift_x: [0, 0, 10, 10, 10, 10, 10, 10, 10, 15] // xのオフセット値配列 | |||
}; | |||
insertTextToSVG(options); | |||
})(); | |||
</script> | |||
< | |||
</syntaxhighlight> | </syntaxhighlight> | ||
VexFlowの技術とは関係のない記事になってしまいましたが、またひとつ奥の手の使い方を示せましたね。 | |||
やってること自体は前の記事の複数小節休符と同じですので、説明はあまりしません。最後のところで、奥の手の手法を関数化したところが違うくらいです。 | |||
[[VexFlow 使い方]]に戻る。 | [[VexFlow 使い方]]に戻る。 |
2024年3月28日 (木) 04:31時点における最新版
VexFlow 使い方に戻る。
概要
小節の繰り返し(Bar Repeat)はVexFlowでは描画する術は提供されていません。なので、この記事を作る必要はないのですが、じゃあどうやって実現するの?っていうのもあるとおもうので、最低限のアンサーを示そうとする管理人の粋なはからいにより存在する記事です。
そうです。このVexFlowの記事をずっと読んでくれている人にはわかると思います。例の奥の手を発動する感じです。うまくできるかは見守っていただければと思います。時間かかるだろうな。この記事がいろいろ変化している間は格闘中だと思って下さい。
え?なんか同じ文章を前の項目でも見た?そうなんす。そうなんす。また大変な表記ナンス。なんす?ってなんす?
いったんまた、これまでの累積の音符を消しましょう。
前の1,2,4小節の繰り返しはちょうどいいフォントが提供されていますが、それ以外の繰り返し小節数は重ねるためのパーツを合わせて使うみたいなんですけど、文字列を繋げただけでは以下の図のようになるので、メンドクサイことになります。すこしづつつめないといけないです。メンドクサイので綺麗に並べる作業はやらないことにしました。
とか言ってましたが、奥の手自体はプログラムで描画するタイプなので、関数化するとそれほどしんどくないことに気づきまして、ちょちょいっと関数化するだけで、手間自体は省けましたので8小節繰り返しのものすごい記号も簡単に作れてしまったわけです。記載している場所が不自然なので、楽譜っぽい性質は失われていますが、そこはご愛敬でしょう。
0ピクセル移動で始点と繰り返し記号を同じ位置に書くと上手く描ける感じでした。繰り返し記号自体は10ピクセルづつ移動して重ねないと駄目ですね。終点は15ピクセル移動すると良さそうでした。背景を方眼紙にしているので、計算しやすいですね。我ながらバックを方眼紙にしたのはナイスなアイデアだと思いました。
いや、あったなVexFlowにも小節の繰り返しも、複数小節休符も。古いバージョンのサンプルには載ってるぞ。いまさらだけどな。もういらねから解説したくないんだけど。そうはいかないか。
小節の繰り返し
コードは以下のとおりです。
<div id="yonet202403Mid_Output01"></div>
<script>
///////////////////////
(function(){
class Position {
constructor(x, y) {
this.x = x;
this.y = y;
}
}
var VF = Vex.Flow;
const Instrument1 = new Position(0, 0);
const Instrument2 = new Position(0, 0);
const Stave2Pos = new Position(0, 0);
const Stave3Pos = new Position(0, 0);
const Stave6Pos = new Position(0, 0);
const Stave10Pos = new Position(0, 0);
const Stave11Pos = new Position(0, 0);
(function(){
const {
Factory,
Stave,
StaveNote,
Formatter,
Voice,
StaveTie,
BarLine,
Beam,
Dot,
StaveConnector,
Modifier,
RenderContext,
TextDynamics,
Articulation,
TextNote,
Crescendo,
Renderer
} = Vex.Flow;
let nscale = 0.64;
let nwidth = 1040;
let nheight = 720;
let nHeadMargin = 70;
let nStaveWidth = 350;
const f = new Factory({
renderer: { elementId: 'yonet202403Mid_Output01', width: nwidth, height: nheight * nscale }
});
const ctx = f.getContext();
ctx.scale(nscale, nscale);
const defaultStyle = {
lineWidth: ctx.lineWidth,
strokeStyle: ctx.strokeStyle,
};
for (let i = 0; i <= nwidth * (1 / nscale); i += 10) {
ctx.beginPath();
ctx.moveTo(0 + i, 0);
ctx.lineTo(0 + i, nheight);
if (i % 100 === 0){
ctx.setLineWidth(1);
ctx.setStrokeStyle('rgba(200, 200, 200, 0.8)');
}
else{
ctx.setLineWidth(0.5);
ctx.setStrokeStyle('rgba(230, 230, 230, 0.8)');
}
ctx.stroke();
}
for (let i = 0; i <= nheight; i += 10) {
ctx.beginPath();
ctx.moveTo(0, i);
ctx.lineTo(nwidth * (1 / nscale), i);
if (i % 100 === 0){
ctx.setLineWidth(1);
ctx.setStrokeStyle('rgba(200, 200, 200, 0.8)');
}
else{
ctx.setLineWidth(0.5);
ctx.setStrokeStyle('rgba(230, 230, 230, 0.8)');
}
ctx.stroke();
}
ctx.lineWidth = defaultStyle.lineWidth;
ctx.strokeStyle = defaultStyle.strokeStyle;
const stave1 = new Stave(80, 150, nHeadMargin + nStaveWidth).setContext(ctx);
stave1.setClef("treble").setContext(ctx);
stave1.setTimeSignature('4/4').setContext(ctx);
stave1.setMeasure(1);
stave1.draw();
Instrument1.x = stave1.x - 30;
Instrument1.y = stave1.y + 90;
const notes1 = [
new StaveNote({ keys: ["c/4"], duration: "4" }),
new StaveNote({ keys: ["d/4"], duration: "4" }),
new StaveNote({ keys: ["e/4"], duration: "4" }),
new StaveNote({ keys: ["f/4"], duration: "4" })
];
var stave1Voice = new Vex.Flow.Voice({ num_beats: 4, beat_value: 4 });
stave1Voice.setStrict(false);
stave1Voice.addTickables(notes1);
var formatter1 = new Vex.Flow.Formatter().joinVoices([stave1Voice]);
formatter1.formatToStave([stave1Voice], stave1);
stave1Voice.draw(ctx, stave1);
const stave2 = f.Stave({ x: stave1.width + stave1.x, y: stave1.y, width: nStaveWidth });
stave2.setMeasure(2);
stave2.setContext(ctx).draw();
Stave2Pos.x = stave2.x;
Stave2Pos.y = stave2.y;
//f.draw();
const stave3 = new Stave(stave2.width + stave2.x, stave1.y, nStaveWidth).setContext(ctx);
stave3.setMeasure(3);
stave3.draw();
Stave3Pos.x = stave3.x;
Stave3Pos.y = stave3.y;
const stave4 = new Stave(stave3.width + stave3.x, stave1.y, nStaveWidth).setContext(ctx);
stave4.setMeasure(4);
stave4.draw();
const stave5 = new Stave(stave1.x, stave1.y + 200, nHeadMargin + nStaveWidth).setContext(ctx);
stave5.addClef("treble").setContext(ctx);
stave5.addTimeSignature('4/4').setContext(ctx);
stave5.setMeasure(5);
stave5.draw();
var connector = new VF.StaveConnector(stave1, stave5);
connector.setType(VF.StaveConnector.type.SINGLE);
connector.setContext(ctx);
connector.draw();
function dotted(staveNote, noteIndex = -1) {
if (noteIndex < 0) {
Dot.buildAndAttach([staveNote], {
all: true
});
}
else {
for(noteIndexValue of noteIndex){
Dot.buildAndAttach([staveNote], {
index: noteIndexValue
});
}
}
return staveNote;
}
const stave6 = new Stave(stave5.width + stave5.x, stave5.y, nStaveWidth).setContext(ctx);
stave6.setMeasure(6);
stave6.draw();
Stave6Pos.x = stave6.x;
Stave6Pos.y = stave6.y;
const stave7 = new Stave(stave6.width + stave6.x, stave5.y, nStaveWidth).setContext(ctx);
stave7.setMeasure(7);
stave7.draw();
const stave8 = new Stave(stave7.width + stave7.x, stave5.y, nStaveWidth).setContext(ctx);
stave8.setMeasure(8);
stave8.draw();
const stave9 = new Stave(stave5.x, stave5.y + 200, nHeadMargin + nStaveWidth).setContext(ctx);
stave9.setMeasure(9);
stave9.draw();
var connector9 = new VF.StaveConnector(stave5, stave9);
connector9.setType(VF.StaveConnector.type.SINGLE);
connector9.setContext(ctx);
connector9.draw();
var connector9_2 = new VF.StaveConnector(stave5, stave9);
connector9_2.setType(VF.StaveConnector.type.BRACKET);
connector9_2.setContext(ctx);
connector9_2.draw();
Instrument2.x = stave1.x - 30;
Instrument2.y = stave5.y + ((stave9.y - stave5.y) / 2) + 90;
const stave10 = new Stave(stave9.width + stave9.x, stave9.y, nStaveWidth).setContext(ctx);
stave10.setMeasure(10);
stave10.draw();
Stave10Pos.x = stave10.x;
Stave10Pos.y = stave10.y;
const stave11 = new Stave(stave10.width + stave10.x, stave9.y, nStaveWidth).setContext(ctx);
stave11.setMeasure(11);
stave11.draw();
Stave11Pos.x = stave11.x;
Stave11Pos.y = stave11.y;
const stave12 = new Stave(stave11.width + stave11.x, stave9.y, nStaveWidth).setContext(ctx);
stave12.setMeasure(12);
stave12.draw();
})();
const svgElement2 = document.querySelector('#yonet202403Mid_Output01 svg');
svgElement2.style.backgroundColor = '#F5F5F5';
var svgContainer = document.getElementById('yonet202403Mid_Output01');
var svgElement = svgContainer.querySelector('svg');
var newText = document.createElementNS('http://www.w3.org/2000/svg', 'text');
newText.setAttribute('x', '100');
newText.setAttribute('y', '100');
newText.setAttribute('font-family', 'Hiragino Kaku Gothic Pro, メイリオ, MS Gothic, sans-serif');
newText.setAttribute('font-size', '50');
newText.setAttribute('fill', 'black');
newText.textContent = 'TestTitle - subTitle - lyrics: yo-net, music: yo-net';
svgElement.appendChild(newText);
var newText2 = document.createElementNS('http://www.w3.org/2000/svg', 'text');
newText2.setAttribute('x', Instrument1.x);
newText2.setAttribute('y', Instrument1.y);
newText2.setAttribute('font-family', 'Bravura, VexFlow, Arial, sans-serif');
newText2.setAttribute('font-size', '20pt');
newText2.setAttribute('fill', 'black');
newText2.textContent = 'Vocal';
var textGroup2 = document.createElementNS('http://www.w3.org/2000/svg', 'g');
textGroup2.setAttribute('transform', 'rotate(-90 ' + Instrument1.x + ' ' + Instrument1.y + ')');
textGroup2.appendChild(newText2);
svgElement.appendChild(textGroup2);
var newText3 = document.createElementNS('http://www.w3.org/2000/svg', 'text');
newText3.setAttribute('x', Instrument2.x);
newText3.setAttribute('y', Instrument2.y);
newText3.setAttribute('font-family', 'Bravura, VexFlow, Arial, sans-serif');
newText3.setAttribute('font-size', '20pt');
newText3.setAttribute('fill', 'black');
newText3.textContent = 'E.Guitar';
var textGroup3 = document.createElementNS('http://www.w3.org/2000/svg', 'g');
textGroup3.setAttribute('transform', 'rotate(-90 ' + Instrument2.x + ' ' + Instrument2.y + ')');
textGroup3.appendChild(newText3);
svgElement.appendChild(textGroup3);
//設定
var fontSize2 = 40; // フォントサイズ
var fontFamily2 = "Bravura, Arial"; // Bravuraフォントファミリー
var textContent2 = "\uE500";// 符頭E0A4
// テキスト要素の作成
var newText2 = document.createElementNS('http://www.w3.org/2000/svg', 'text');
newText2.setAttribute('id', 'rest2'); // テキスト要素にIDを付ける
newText2.setAttribute('x', 0);
newText2.setAttribute('y', 0);
newText2.setAttribute('font-family', fontFamily2);
newText2.setAttribute('font-size', fontSize2);
newText2.setAttribute('fill', 'black');
newText2.textContent = textContent2;
//SVG要素にテキストを追加
svgElement.appendChild(newText2);
(function(){
var textWidth = document.getElementById('rest2').getBBox().width;
var textHeight = document.getElementById('rest2').getBBox().height;
// クレシェンドの幅に応じて縦方向のスケーリング
var horizontalScale = 1;
var verticalScale = 1;
var StavePos_x = Stave2Pos.x + 170;
var StavePos_y = Stave2Pos.y + 60;
newText2.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')');
//SVG要素に追加する
svgElement.appendChild(newText2);
})();
//フォント設定
var fontSize3 = 40; // フォントサイズ
var fontFamily3 = "Bravura, Arial"; // Bravuraフォントファミリー
var textContent3 = "\uE501";// 符頭E0A4
// テキスト要素の作成
var newText3 = document.createElementNS('http://www.w3.org/2000/svg', 'text');
newText3.setAttribute('id', 'rest3'); // テキスト要素にIDを付ける
newText3.setAttribute('x', 0);
newText3.setAttribute('y', 0);
newText3.setAttribute('font-family', fontFamily3);
newText3.setAttribute('font-size', fontSize3);
newText3.setAttribute('fill', 'black');
newText3.textContent = textContent3;
//SVG要素にテキストを追加
svgElement.appendChild(newText3);
(function(){
var textWidth = document.getElementById('rest3').getBBox().width;
var textHeight = document.getElementById('rest3').getBBox().height;
//スケーリング
var horizontalScale = 1;
var verticalScale = 1;
var StavePos_x = Stave3Pos.x + 335;
var StavePos_y = Stave3Pos.y + 60;
newText3.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')');
//SVG要素に追加する
svgElement.appendChild(newText3);
})();
//設定
var fontSize6 = 40; // フォントサイズ
var fontFamily6 = "Bravura, Arial";// Bravuraフォントファミリー
var textContent6 = "\uE502";// 符頭E0A4
// テキスト要素の作成
var newText6 = document.createElementNS('http://www.w3.org/2000/svg', 'text');
newText6.setAttribute('id', 'rest6'); //テキスト要素にIDを付ける
newText6.setAttribute('x', 0);
newText6.setAttribute('y', 0);
newText6.setAttribute('font-family', fontFamily6);
newText6.setAttribute('font-size', fontSize6);
newText6.setAttribute('fill', 'black');
newText6.textContent = textContent6;
// SVG要素にテキストを追加
svgElement.appendChild(newText6);
(function(){
var textWidth = document.getElementById('rest6').getBBox().width;
var textHeight = document.getElementById('rest6').getBBox().height;
//スケーリング
var horizontalScale = 1;
var verticalScale = 1;
var StavePos_x = Stave6Pos.x + 325;
var StavePos_y = Stave6Pos.y + 60;
newText6.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')');
//SVG要素に追加する
svgElement.appendChild(newText6);
})();
//設定
var fontSize10 = 40; // フォントサイズ
var fontFamily10 = "Bravura, Arial"; // Bravuraフォントファミリー
var textContent10 = "\uE503\uE504\uE504\uE504\uE504\uE505";//複数小節休符 // 符頭E0A4
// テキスト要素の作成
var newText10 = document.createElementNS('http://www.w3.org/2000/svg', 'text');
newText10.setAttribute('id', 'rest10'); // テキスト要素にIDを付ける
newText10.setAttribute('x', 0);
newText10.setAttribute('y', 0);
newText10.setAttribute('font-family', fontFamily10);
newText10.setAttribute('font-size', fontSize10);
newText10.setAttribute('fill', 'black');
newText10.textContent = textContent10;
// SVG要素にテキストを追加
svgElement.appendChild(newText10);
(function(){
var textWidth = document.getElementById('rest10').getBBox().width;
var textHeight = document.getElementById('rest10').getBBox().height;
//スケーリング
var horizontalScale = 1;
var verticalScale = 1;
var StavePos_x = Stave10Pos.x + 325;
var StavePos_y = Stave10Pos.y + 60;
newText10.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')');
//SVG要素に追加する
svgElement.appendChild(newText10);
})();
function insertTextToSVG(options) {
var textContent = options.textContent;
var strID = options.strID;
var Stave_x = options.Stave_x;
var Stave_y = options.Stave_y;
var Stave_x_Offset = options.Stave_x_Offset || 0;
var Stave_y_Offset = options.Stave_y_Offset || 0;
var StaveWidth = options.StaveWidth || 0;
var StaveHeight = options.StaveHeight || 0;
var StaveVerticalScale = options.StaveVerticalScale || 0;
var fontSize = options.fontSize || 40;
var fontFamily = options.fontFamily || "Bravura, Arial";
var shift_x = options.shift_x || [0];
var offset_sum = 0;
shift_x.forEach(function(offset, index) {
offset_sum = offset_sum + offset;
var newText = document.createElementNS('http://www.w3.org/2000/svg', 'text');
newText.setAttribute('id', strID + '_' + index); // テキスト要素にIDを付ける
newText.setAttribute('x', 0);
newText.setAttribute('y', 0);
newText.setAttribute('font-family', fontFamily);
newText.setAttribute('font-size', fontSize);
newText.setAttribute('fill', 'black');
if (Array.isArray(textContent)) {
newText.textContent = textContent[index];
}
else{
newText.textContent = textContent;
}
(function() {
var textWidth = newText.getBBox().width;
var textHeight = newText.getBBox().height;
var horizontalScale;
if (typeof StaveWidth === 'undefined' || StaveWidth == 0) {
horizontalScale = 1;
} else {
horizontalScale = StaveWidth / textWidth;
}
var verticalScale;
if (typeof StaveHeight === 'undefined' || StaveHeight == 0) {
verticalScale = 1;
} else if (StaveVerticalScale != 0) {
verticalScale = StaveVerticalScale;
} else {
verticalScale = StaveHeight / textHeight;
}
var StavePos_x = Stave_x + Stave_x_Offset + offset_sum;
var StavePos_y = Stave_y + Stave_y_Offset;
newText.setAttribute('transform', 'translate(' + StavePos_x + ',' + StavePos_y + ') scale(' + horizontalScale + ',' + verticalScale + ')');
})();
svgElement.appendChild(newText);
});
}
var options = {
textContent: ["\uE503", "\uE504", "\uE504", "\uE504", "\uE504", "\uE504", "\uE504", "\uE504", "\uE504", "\uE505"], // 必須文字列
strID: "rest11", // 必須
Stave_x: Stave11Pos.x,
Stave_y: Stave11Pos.y,
Stave_x_Offset: 305, // オプション、デフォルトは0
Stave_y_Offset: 60, // オプション、デフォルトは0
StaveWidth: 0, // オプション、デフォルトは0
StaveHeight: 0, // オプション、デフォルトは0
StaveVerticalScale: 0, // オプション、デフォルトは0
fontSize: 40, // オプション、デフォルトは40
fontFamily: "Bravura, Arial", // オプション、デフォルトは"Bravura, Arial"
shift_x: [0, 0, 10, 10, 10, 10, 10, 10, 10, 15] // xのオフセット値配列
};
insertTextToSVG(options);
})();
</script>
VexFlowの技術とは関係のない記事になってしまいましたが、またひとつ奥の手の使い方を示せましたね。
やってること自体は前の記事の複数小節休符と同じですので、説明はあまりしません。最後のところで、奥の手の手法を関数化したところが違うくらいです。
VexFlow 使い方に戻る。