无法通过nusoap webservice发送验证码图像

时间:2015-06-22 04:53:03

标签: php web-services nusoap simplecaptcha

我通过我编写的createCaptcha函数创建了一个Captcha会话。 我在Web服务中调用此函数来创建Captcha会话和图像然后我想发送Captcha图像或通过webservice显示创建的Captcha图像,用户可以通过webservice发送它的值,但我面临错误。 实际上,当我通过firefox附加组件soap_client对其进行测试时,我获得了编码结果,而不是指向该图像的链接。

任何我错在哪里的想法?

验证码功能代码:

<?php
session_start();

function createcaptcha($imgname)
{
    /* Attempt to open */
    $im = @imagecreatefromjpeg($imgname);

    /* See if it failed */
    if(!$im)
    {
        /* Create a black image */
        $code=rand(1000,9999);
        $_SESSION["code"]=$code;
        $im = imagecreatetruecolor(50, 24);
        $bg = imagecolorallocate($im, 22, 86, 165);
        $fg = imagecolorallocate($im, 255, 255, 255);
        imagefill($im, 0, 0, $bg);
        /* Output an captcha code */
        imagestring($im, 5, 5, 5,  $code, $fg);
    }

    return $im;
}  

GetCaptcha soap Class:

session_start();
include_once('captcha.php');

class getCaptcha extends DBM
{
    public function getcaptcha()
    {
        //creating and generating captcha image and code
        $img = createcaptcha('captcha.png');


        //encoding to base64
        //$base64 = base64_encode($img);

        $path = $img;
        $type = pathinfo($path, PATHINFO_EXTENSION);
        $data = file_get_contents($path);
        $base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);

        $save = "/captchafile/captcha.png";
        imagepng($base64, $save);


        $captcha=$save;

        $this->strResult = "";


            $this->strResult.="<captcha>";
            $this->strResult.="<captcha>$captcha</captcha>";
            $this->strResult.="</captcha>";


    }


    function __toString()
    {
        if($this->strResult!=""){
            return $this->strResult;
        }
        return "";
    }


}

1 个答案:

答案 0 :(得分:0)

您需要为imagepng()函数提供另一个参数来保存图片,然后使用Get_file_content()函数获取图片文件的内容,然后将其编码为base64以通过webservice发送到{ {1}}格式。

xml