如何在 Google Docs API 上将文本环绕在图像周围?

发布于 2024-10-19 05:08:01 字数 360 浏览 0 评论 0原文

我正在通过 API 将 html 文档上传到 Google Docs。所有图像都设置为内联,但我更喜欢固定(文本环绕)。有没有办法在 html 上标记它,以便导入的文档将每个图像正确对齐,或者有没有办法在上传之前在 API 上设置图像换行?

作为参考,这就是我想要的,但会自动执行:

https://drive.googleblog.com/2010/07/tips-tricks-using-images-in-google.html

I am uploading html document to Google Docs thru API. All images are set inline, but I prefer fixed (text wraps around). Is there a way to mark it on html, so that imported document has each image correct way aligned or is there a way to set image wrapping on API before uploading?

For a reference this is what I want, but doing it automatically:

https://drive.googleblog.com/2010/07/tips-tricks-using-images-in-google.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦与时光遇 2024-10-26 05:08:01

我认为类似的事情

<body style="background-image: url('test3.jpg'); background-repeat: no-repeat; background-position: center; background-attachment: scroll;"> color name <br><br><br></body>

<body style="background-image: url('test3.jpg'); background-repeat: no-repeat; background-position: center; background-attachment: fixed;"> color name <br><br><br></body>

请参见background-attachment:fixed

I think something like this

<body style="background-image: url('test3.jpg'); background-repeat: no-repeat; background-position: center; background-attachment: scroll;"> color name <br><br><br></body>

<body style="background-image: url('test3.jpg'); background-repeat: no-repeat; background-position: center; background-attachment: fixed;"> color name <br><br><br></body>

see background-attachment: fixed

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文