Questions tagged [rtf]

The Rich Text Format (often abbreviated RTF) is a proprietary document file format with published specification developed by Microsoft Corporation since 1987 for Microsoft products and for cross-platform document interchange.

Most word processors are able to read and write some versions of RTF. There are several different revisions of RTF specification and portability of files will depend on what version of RTF is being used. RTF specifications are changed and published with major Microsoft Word/Microsoft Office versions.

It should not be confused with enriched text (mimetype "text/enriched" of RFC 1896) or its predecessor Rich Text (mimetype "text/richtext" of RFC 1341 and 1521); nor with IBM's RFT-DCA (Revisable Format Text-Document Content Architecture) which are completely different specifications.

http://en.wikipedia.org/wiki/Rich_Text_Format

1809 questions
4
votes
2 answers

Using MarkDown on dynamic websites?

Do any WYSIWYG editors exist that work natively in Markdown? (any Platform/Language) ...So consumers don't have to see the code behind, just work in an MS-Word like interface. An assisted MarkDown editor where you're viewing and editing the…
Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607
4
votes
0 answers

PDFBox RichText formatted field

I am currently trying to open, edit & save a PDF file using PDFBox. with plain-text fields it already works but I'm having a hard time setting RichTextFormat-Text as value, since everytime I use "setRichTextValue", save and open the document, the…
ThexBasic
  • 715
  • 1
  • 6
  • 24
4
votes
3 answers

Convert RTF (Rich Text Format) code into plain text in Excel

I'm exporting a database query as Excel and I am getting rows with RTF formatting. How can I convert these fields into plain text? I've found answers that are pretty old, so I was wondering if anyone knows a way.
Ivan
  • 1,967
  • 4
  • 34
  • 60
4
votes
0 answers

RTF <-> RTFD anyone? How to display RTF with embedded images (Windows) in NSTextView on a Mac and vice versa?

I have some RTF data shared between Windows and Mac. I use RichEdit control to edit this data for Windows and so if user inserts some images, I get the RTF with embedded images. Now I need to display (and edit) this data on a Mac, but NSTextView…
macnewbie
  • 41
  • 3
4
votes
1 answer

Is there a way to convert markdown to interpreted RTF?

I am trying to convert a text from markdown to rendered RTF in a shell script and wrap the command in an Apple Automator Service. I realized that the only way to achieve the task is by doing: python -m markdown | textutil -convert rtf -format html…
morels
  • 2,095
  • 17
  • 24
4
votes
1 answer

Creating rtf template with multi spreadsheets(excel)

I have created a data template report(xdodtexe) and the output will be in excel with multiple spread sheets. My E-Business Suite version is r12.1.3 and I am using Office 2013. I have created an rtf and in two separate pages layouts are there. For…
user3493180
  • 43
  • 1
  • 2
  • 5
4
votes
1 answer

Simple way to reading/writing NSAttributedString in iOS?

In Mac OS X, there is AppKit addition which supports reading and writing of NSAttributedString as RTF format. Equivalent in iOS? Should I make my own?
eonil
  • 83,476
  • 81
  • 317
  • 516
4
votes
2 answers

Document support (rtf, doc, docx) for UWP/Windows 10 Mobile

How can I display documents (doc, docx, rtf) in an UWP app? The WebView isn't able to do this. Other options would be calling an external application with Windows.System.Launcher.LaunchUriAsync (e.g. Word) or using a 3rd party library. The…
testing
  • 19,681
  • 50
  • 236
  • 417
4
votes
2 answers

Is there XSLT available for transforming WordprocessingML into RTF

I currently generate docx files programmaticaly in C#. I would like to transform my doc file into RTF. This be done with an XSLT transform. Is there a transform that is publicly available? I am also interested in trasnforming docx into PDF and HTML.
Geoff
  • 41
  • 2
4
votes
2 answers

RTF to PDF in Java

We are building an application which partially interacts with other system. We are pulling some data from the other system which is returned as RTF document. But we have to prevent users from editing this file, so we thought about converting it with…
jjczopek
  • 3,319
  • 2
  • 32
  • 72
4
votes
5 answers

UIDatePicker Flips on iOS9 RTL

I have a weird issue when displaying a DatePicker - Time mode on RTL. Im displaying the date picker programmatically. Minutes should be on the right side, and hours on the left, and on the following image you can see it's flipped: It happens on iOS…
user3660992
  • 113
  • 1
  • 7
4
votes
3 answers

Loading .rtf file from resources into RichTextBox

I've seen some topics on this subject but none of them wants to work in my case. In my Windows Forms app I have a ordinary Resourcescatalog containing some images and .rtf files. It looks like this: There's no problem for me to load pictures from…
Paweł Poręba
  • 1,084
  • 1
  • 14
  • 37
4
votes
1 answer

Creating RTF headings compatible with Microsoft Word

I am producing a script which creates RTF documents and want to add a table of contents. I've opted for this: {\field\flddirty\fldedit{\*\fldinst TOC}{\fldrslt \i Use this page to add the table of contents, right click to update field \i0}} and the…
gimmian
  • 203
  • 2
  • 12
4
votes
3 answers

Image not displaying in ms word after converting it from Bitmap to RTF (but displaying in wordpad)

I am trying to convert a bitmap file to rtf using Delphi 2007. I used below code for conversion. function BitmapToRTF(pict: TBitmap): string; var bi, bb, rtf: string; bis, bbs: Cardinal; achar: ShortString; hexpict: string; I:…
Bharat
  • 6,828
  • 5
  • 35
  • 56