更改写字板中的字体颜色
是否可以在将文本重定向到写字板时更改文本的字体颜色?
示例:
C:\echo greencolor>> C:\colors.rtf
----->该文本在写字板中应显示为绿色
C:\echo redcolor >> C:\colors.rtf
----->此文本在写字板中应显示为红色
C:\echo Browncolor >> C:\colors.rtf
----->该文本在写字板中应显示为棕色
Is it possible to change the font color of text while redirecting it to WordPad?
Examples:
C:\echo greencolor >> C:\colors.rtf
-----> This text should appear green in WordPad
C:\echo redcolor >> C:\colors.rtf
-----> This text should appear red in WordPad
C:\echo browncolor >> C:\colors.rtf
-----> This text should appear brown in WordPad
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
RTF 使用自己的标记。例如,单词
blue
和red
在各自的颜色中表示为:因此,您需要输出其他颜色的此类标记并基本上创建一个RTF文档。
RTF uses its own markup. E.g. the words
blue
andred
in respective colors are represented as:So, you need to output such markup for other colors and basically create a RTF document.
dirkgently 是完全正确的。举个例子,以下命令行将在 C:\colors.rtf 中生成一个 RTF 文档,其中包含绿色的“green”一词。
然后您可以在写字板中打开 c:\colors.rtf。
dirkgently is entirely correct. To take your examples, the following command line will produce a RTF document at C:\colors.rtf, containing the word 'green' in green.
You can then open c:\colors.rtf in Wordpad.