本文整理匯總了PHP中SimpleImage::load_data方法的典型用法代碼示例。如果您正苦於以下問題:PHP SimpleImage::load_data方法的具體用法?PHP SimpleImage::load_data怎麽用?PHP SimpleImage::load_data使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SimpleImage
的用法示例。
在下文中一共展示了SimpleImage::load_data方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: die
$file = PRODUCT_IMAGE_PATH . 'img' . PRODUCT_IMAGE_SIZE . '-' . $image_id . '.png';
if (!file_exists(FILE_PATH . $file)) {
// If the image does not exist, then get it from the database
$query = '
SELECT
*
FROM
' . TABLE_PRODUCT_IMAGES . '
WHERE
image_id = "' . $image_id . '"';
$result = @mysql_query($query, $connection) or die(debug_print("ERROR: 785922 ", array($query, mysql_error()), basename(__FILE__) . ' LINE ' . __LINE__));
$row = mysql_fetch_array($result);
// Use SimpleImage (from image_functions.php) to resize the image
// and save it to the expected file
$image = new SimpleImage();
$image->load_data($row['image_content']);
// If we don't have a width or height for this image in the
// database, then save it now.
if ($row['width'] == 0 || $row['height'] == 0) {
$image_info = getimagesizefromstring($row['image_content']);
$original_width = $image_info[0];
$original_height = $image_info[1];
$query = '
UPDATE
' . TABLE_PRODUCT_IMAGES . '
SET
width = "' . $original_width . '",
height = "' . $original_height . '"
WHERE
image_id = "' . mysql_real_escape_string($_GET['image_id']) . '"';
$result = @mysql_query($query, $connection) or die(debug_print("ERROR: 902742 ", array($query, mysql_error()), basename(__FILE__) . ' LINE ' . __LINE__));