私が取り組んでいるWebアプリの機能を使用すると、DIV内の画像をSVGとしての正確なレプリカに置き換えることができます。これは、Raphael.jsライブラリを使用して行われます。
以下は、画像を含むそのようなHTML要素の例です。
<div id="ow-0" reference="0" class="object-wrapper" style="z-index: 3; width: 231px; left: 116px; top: 217px; outline: rgb(0, 0, 0) solid 1px; ">
<img id="o-0" reference="0" class="object image" src="image-gallery/intermediate/3295094303_2b50e5fe03_z.jpg" />
</div>
、という名前のメソッドを呼び出すと、元の画像が非表示になった後、addSVG()
画像の親div
がRaphaelオブジェクトとして設定されpaper
、画像が追加されたSVGが設定されます。
// Create the SVG and add it to the Viewport
this.addSVG = function(){
// Hide the HTML element before replacing it with the SVG
$("#o-"+this.ref).hide();
// Create the "paper" (svg canvas) before embedding the actual SVG
this.canvas = new Raphael(document.getElementById("ow-"+this.ref), this.width, this.height);
if (this.type=="image" || this.type=="QR"){
this.svg = this.canvas.image(this.src,0,0,this.width,this.height);
}
else {
}
}
左に-0.5pxであるsvgの位置を除いて、ほとんどすべてが完璧です(そして、これはもちろん、迷惑に見えます)。以下は、操作後に生成されるHTMLコードです。
<div id="ow-0" reference="0" class="object-wrapper" style="z-index: 3; width: 231px; left: 116px; top: 217px; outline: rgb(0, 0, 0) solid 1px; ">
<svg style="overflow: hidden; position: relative; left: -0.5px; " height="170" version="1.1" width="231" xmlns="http://www.w3.org/2000/svg">
<desc style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0); ">Created with Raphaël 2.1.0</desc>
<defs style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0); "></defs>
<image style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0); " x="0" y="0" width="231" height="170" preserveAspectRatio="none" xlink:href="image-gallery/intermediate/3295094303_2b50e5fe03_z.jpg"></image>
</svg>
<img id="o-0" reference="0" class="object image" src="image-gallery/intermediate/3295094303_2b50e5fe03_z.jpg" style="display: none; ">
</div>
-0.5pxが追加されたのはなぜですか?また、それを防ぐにはどうすればよいですか?ちなみに、実験としてブラウザウィンドウのサイズを変更したところ、-0.5pxは追加されなくなりました...