在PHP中从SVG(Vector)获取图像资源

时间:2016-07-02 11:10:24

标签: php

我一直在高低搜索网页,寻找一种为矢量(svg)图像生成图像资源的方法,这样我就可以进行一些图像处理(合并两个向量)。我还没有找到与imagecreatefrompngimagecreatefromjpeg等效的函数或某种函数。任何帮助,将不胜感激。我可能只是走错了道路

1 个答案:

答案 0 :(得分:0)

我使用CSS和javascript / jQuery实现了我需要的结果

HTML

<div class="image-container">
    <img src="http://something.com/img1.png" class="img image1"/>
</div>

CSS

.img{
    /*Set all images with this class to be on the top left of the screen*/
    display:block;
    width:100px;
    height:100px;
    position:absolute;
    left:10px;
    top:10px
}

.image1{
    z-index:1;
}

.image2{
    /*Make image 2 overlay image 1*/
    z-index:2;
}

的Javascript

$("#button").click(function(e){
    e.preventDefault();
    var img2 = $('<img src="http://something.com/img2.png"/>')
    img2.addClass("img").addClass("image2")
    $(".image1").after(img2)
})