Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xslt で画像をトリミングするためにティム サムを使用する方法を理解するのに問題があります。たとえば、以下のコードは php にあります。
<img src="include/timthumb.php?src=http://localhost/testdata/1830censusfiscalchart.jpg&w=400&h=200 " />
私の質問は、上記のコードを xsl で記述する方法です。さまざまな方法を試しましたが、エラーが発生し続けます。
&XSLT によって出力される属性でアンパサンド ( ) を使用する場合&は、XML が整形式になるように「エスケープ」する必要があります。このようなもの:
&
&
<img src="include/timthumb.php? src=http://localhost/testdata/1830censusfiscalchart.jpg&w=400&h=200 " />