-
Notifications
You must be signed in to change notification settings - Fork 13
Responsive is not working correctly or perhaps not documented correctly #3
Comments
Thank you! Can you post here how you are implementing the responsive method? Maybe the documentation is not correct, or maybe there is a bug, both are possible!! |
I can't get this to work at all - I am getting 404 not found on the image returned with something like: http://localhost/_img?img=/public/images/image.jpg&transform=resizeCrop,400,200 My url config in app.php is: 'http://localhost/laravel' I am including the js like this: <script type="text/javascript" src="<?php echo Config::get('app.url'); ?>/public/js/Imagecow.js"></script> and the image like this: <img src="{{ Image::path('/public/images/image.jpg', 'resizeCrop', 400, 200) }}" /> and here is my image config: <?php
return array(
/**
* the image worker (GD / Immagick)
*/
'worker' => 'GD',
'route' => '/_img',
/**
* note this is the server path to the file
* from base_path()
*/
'js_path' => 'public\js\Imagecow.js',
/**
* various $_GET variables
*/
'vars' => array(
'image' => 'img',
'responsive_flag' => 'responsive',
'transform' => 'transform'
),
'cache' => array(
'lifetime' => 1,
'path' => 'images' // /app/storage/cache/{images}
)
); Could you please advise how to get it to work or what am I missing? |
The package assumes images are in the public directory so prepends the public path to them so you don't need to. You should call your image path as you would any image being rendered in your application as normal (ie without the /public prefix). So your example should be:
The same should be for the javascript lib. The package actually includes a method to write the correct script tag (although it's not documented:
Just add that in your |
Trying to use the ->responsive method and getting a 404 on the image returned. When the ->responsive method is removed, the image works great. Otherwise, the package is great. Keep up the good work! I am using Laravel v4.
The text was updated successfully, but these errors were encountered: