take a look at this http://webcodertools.com/imagetobase64converter/Create
your missing
<img alt="" src="data:image/jpeg;base64,<your image data>
Using HTML: image I can show the image, but it comes out with some strange characters. The image below shows this.
HTML::image(Captcha::show(), 'Captcha image');
http://i.imgur.com/J8MQgba.png
My route only has this:
Route::get('/', function()
{
return HTML::image(Captcha::show(), 'Captcha image');
});
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community