我必须在新的浏览器窗口中打开图像,但尺寸更大。
我正在使用以下代码:
<a href="<?php echo $prodata['Product']['imgurl1'];?>" target="_blank">
<img src="<?php echo $data['Product']['imgurl'];?>" alt="Img 1" width="374" height="279" id="bigimage" title="<?php echo $prodata['Product']['img1desc'];?>" style="border:1px solid #CCCCCC"/>
</a>
问题是我需要在新的浏览器窗口中打开的图片应该有更大的尺寸。
请有人帮助我吗?
有谁能告诉我如何使用timphumb和cakephp
答案 0 :(得分:0)
参见this answer :(使用标准PHP)
$source_image = imagecreatefromjpeg('/image/path.jpg'); // Open the image
$source_imagex = imagesx($source_image);
$source_imagey = imagesy($source_image);
$dest_imagex = 300; // New size
$dest_imagey = 200;
$image2 = imagecreatetruecolor($dest_imagex, $dest_imagey);
imagecopyresampled($image2, $source_image, 0, 0, 0, 0,
$dest_imagex, $dest_imagey, $source_imagex, $source_imagey);
imagejpeg($image2, '/new/image.jpg', 100); // Save the new Image
您可以使用png或php支持的任何内容替换jpeg。
如果您直接链接到图片,浏览器将以原始尺寸显示。
答案 1 :(得分:0)
您可以格式化CakePHP代码以显示链接的图像,如下所示:
echo $this->Html->link(
$this->Html->Image(
$data['Product']['imgurl'],
array(
'alt' => 'Img 1',
'width' => '374',
'height' => '279',
'id' => 'bigimage',
'title' => $prodata['Product']['img1desc'],
'style' => 'border:1px solid #CCCCCC',
)
),
$proddata['Product']['imgurl1'],
array('target' => '_blank')
);