Jump to content

Resize image from blob.


ram4nd

Recommended Posts

This is my code:

<?php
$id = $_GET["ID"];
include("config.php");
$query = mysql_query("SELECT img, type FROM Images WHERE id='".$id."'");
$row = mysql_fetch_array($query, MYSQL_NUM);
$content = $row[0];
header("Content-type: image/".$row[1]);
echo $content;
?>

 

I just need to add a resizing feature.

Link to comment
https://forums.phpfreaks.com/topic/131239-resize-image-from-blob/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.