尝试将 URL 中的图像与 Kohana Image 类一起使用
我正在尝试将 URL 中的图像与 Kohana 图像类一起使用。 http://kohanaframework.org/3.0/guide/api/Image
这可能吗?图像是否必须始终位于项目本地?
我正在像这样访问图像:
http://www.mysite.com/temp/myimage.jpg
从同一站点。
然而,上述 URL 中的临时文件夹实际上是 Apache 中的别名,因此位于文档根目录之外。
任何人都可以阐明解决方案吗?
kohana 图像库说它不是图像,因为它要么失败
realpath($file);
,要么
getimagesize($file);
干杯。
I'm trying to use an image from a URL with Kohana image class. http://kohanaframework.org/3.0/guide/api/Image
Is this possible or does the image always have to be local to the project?
I'm accessing the image like this:
http://www.mysite.com/temp/myimage.jpg
from the same site.
However the temp folder in the above URL is actually an Alias in Apache so is outside of the document root.
Can anyone shed any light on a solution?
The kohana image library says its not an image because it either fails
realpath($file);
or
getimagesize($file);
Cheers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该图像必须是项目的本地图像。
您可以做的就是从遥控器上获取一份副本并将其保存到您的项目中并为其提供服务。
有一个允许使用图像模块进行远程图像访问的功能请求。
The image does have to be local to the project.
What you can do is grab a copy off the remote and save it to your project and serve that.
There is a feature request to allow for remote image access using the Image module.