Reputation: 13
Can we convert base64 to base128 - and if we can, then how we will do it?
I convert images into base64 using this:
$con=file_get_contents('untitled.png');
$en=base64_encode($con);
How can I convert this to base128 ?
Upvotes: 1
Views: 2725