2

現在、私の画像リンクは次のようになっています。

リンクはテキストとして表示されます

次のようにする必要があります。

リンクは画像として表示されます

マイ画像は次の場所に保存されますAPP/uploads/userid/images/filename.jpg

現時点での私の見解は次のとおりです。

  <?php foreach($file as $files){?>

      <?php  echo $this->Html->link($files['Image']['filename'], array('controller' => 'images', 'action' => 'downloadImages', $files['Image']['filename']), array('class' => 'frame'));}?>

それは機能し、リンクをクリックすると、関連する画像が正しく表示されます。

参照用のコントローラー スニペット:

    public function downloadImages($filename) {


    $download = !empty($_GET['download']);
    $idUser = $this->Auth->user('idUser');
    $folder_url = APP.'uploads/'.$idUser.'/'.'images'.'/'.$filename;

    $this->response->file($folder_url, array('download' => $download, 'name' =>   $filename));

    return $this->response;
}

画像をファイル名ではなくリンクとして表示するにはどうすればよいですか?

4

2 に答える 2

1

画像リンクの生成方法

質問には次の行があります(わかりやすくするために言い換えています):

$downloadUrl = array('controller' => 'images', 'action' => 'downloadImages', $files['Image']['filename'], '?' => array('download' => true));
$imageUrl = array('controller' => 'images', 'action' => 'downloadImages', $files['Image']['filename']);

echo $this->Html->link(
    $files['Image']['filename'], 
    $downloadUrl,
    array('class' => 'frame')
);

ファイル名にリンクする代わりに、画像にリンクします。

echo $this->Html->link(
    $this->Html->image($imageUrl),
    $downloadUrl,
    array('class' => 'frame', 'escape' => false)
);

または、画像関数が次のことをサポートしているため、画像関数を直接使用します。

echo $this->Html->image(
    $imageUrl,
    array(
        'url' => $downloadUrl
    )
);
于 2013-07-27T16:51:46.967 に答える
0

GemsImageComponentこれは、ディスクからブラウザーに画像をプッシュするために使用するy のコピーです。キャッシュを処理し、ファイルのタイムスタンプを使用して、画像を再度送信する必要があるかどうか、またはブラウザーの現在のキャッシュ バージョンが最新かどうかを確認します。

これが役立つと思われる場合は、賛成票を投じてください。

<?php

/**
 * $settings['cache'] string (optional) How long the browser should cache
 * images.
 * $settings['expires'] string (optional) If all images should expire after a
 * given period from the browsers cache.
 */
class GemsImageComponent extends Component
{

    /**
     *
     * @var array The default settings for the component.
     */
    protected $defaults = array(
            'cache' => '+7 days',
            'expires' => false
    );

    /**
     *
     * @var Controller The controller using this component.
     */
    protected $controller;

    /**
     *
     * @see Component::__construct()
     */
    public function __construct(ComponentCollection $collection,
            $settings = array())
    {
        parent::__construct($collection,
                Hash::merge($this->defaults, $settings));
    }

    /**
     *
     * @see Component::startup()
     */
    public function startup(Controller $controller)
    {
        $this->controller = $controller;
    }

    /**
     * Sends an image from disk to the browser.
     *
     * @param string $file The full path to the image file.
     * @return mixed The value that the View should return.
     */
    public function send($file)
    {
        $response = $this->controller->response;
        $settings = $this->settings;

        // the file has to exist
        if(! file_exists($file))
        {
            throw new NotFoundException();
        }

        // set browser cache options
        if($settings['cache'] !== false)
        {
            $response->cache('-1 minute', $settings['cache']);
        }
        if($settings['expires'] !== false)
        {
            $response->expires($settings['expires']);
        }

        // mark this image with a timestamp of when it last changed.
        $timestamp = filemtime($file);
        $response->modified($timestamp);

        // generate a unique ID that browser cache engines can use to track this
        // resource.
        // TODO: Add GEMS version number to the hash tag.
        $unique = sha1(sprintf('%s-%d', $file, $timestamp));
        $response->etag($unique);

        // check if we can abort sending this resource
        if(! $response->checkNotModified($this->controller->request))
        {
            $response->file($file, array(
                    'download' => false
            ));
        }

        return $response;
    }
}

?>
于 2013-07-27T16:24:50.263 に答える