iad 的资产:SVG。如何嵌入图像?
我现在尝试在我的 iAds 中导入 svg,其中代码
<image x="20" y="20" width="100" height="100" xlink:href="logo.jpg"/>
当我使用浏览器打开 svg 时,我能够看到 logo.jpg
,但是当我将 svg 导入 iAd 时作为资产,我无法查看 logo.jpg
。
它总是显示一个“?”对于图像...显然找不到我的 logo.jpg
,即使我的 svg 文件和 logo.jpg
位于同一文件夹“assets”中。
任何人都可以帮助我吗:(
I'm now trying to import a svg in my iAds where the code
<image x="20" y="20" width="100" height="100" xlink:href="logo.jpg"/>
When I open the svg with a browser, I'm able to see the logo.jpg
, but when I import the svg into iAd as asset I'm not able to view the logo.jpg
.
It always shows a "?" for the image... obviously couldn't find my logo.jpg
, even though my svg file and logo.jpg
are located in the same folder "assets".
Can anyone help me, please :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在将图像链接到 SVG 文件之前,将以下标签添加到主 SVG 标签中
Add below tag into your main SVG tag before linking image into your SVG file
首先,您可以通过导入 SVG 编辑器(例如 Inkscape)将图像转换为 SVG。您的图像将采用 64 位格式。 SVG 不包含对其的路径引用,这就是您收到问号的原因。
First you can get your image into an SVG by importing into an SVG editor like Inkscape. Your image will be in 64 bit format. The SVG does not hold a path reference to it, which is why you get the question mark.