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
0
votes
1 answer

JOD Converter connection refused on the first time

I'm using JODConverter to connect to OpenOffice 4 and convert rtf documents to pdf. It works all fine except for one strange issue, the first time when I try a conversion I get a Connection refused exception; it start to work from the second time. I…
Luca89
  • 99
  • 1
  • 4
  • 14
0
votes
1 answer

not enough memory transforming base64 rtf doc to xml?

Ok i am trying to decode a base64 encoded rtf doc in MarkLogic. xquery version "1.0-ml"; declare namespace cdm = "http://example.nl/cdm/1.2"; let $inh := Large base64 encoded RTF doc here let $pv :=…
Hugo Koopmans
  • 1,349
  • 1
  • 15
  • 27
0
votes
0 answers

java how to replace strings in rtf file without knowing RTF format in detail

im puzzeling this for a while and yet did not found any solution that might work for me on the net. Im having a given RTF File (from outlook 2010) that contains (as seen from windows Apps like Outlook or Word) several special keyWords all over the…
Axel Werner
  • 186
  • 1
  • 17
0
votes
2 answers

Can ffmpeg drawtext filter read RTF file as video overlay?

i'm using ffmpeg with ffserver to read a video stream, add a text overlay and re-stream the video in mpjpeg format. The text overlay is stored in a file, reloaded every frame with the drawtext ffmpeg filter and all is working properly. Now I want to…
Rimon Soliman
  • 21
  • 1
  • 5
0
votes
1 answer

Generating tiered bullet lists in SPARX Enterprise Architect

I'm trying to create a RTF report which shows a heirarchy of user stories. In my model I have the following package structure: Requirements Package - Package A - - Requirement 1 - - Requirement 2 - - Requirement 3 - Package B - - Sub-Package I - - -…
John
  • 1,451
  • 3
  • 11
  • 11
0
votes
1 answer

Split up strings into RTF table cells and max total width

VB2010. May be a bit hard to understand but I have a list of classes and one field is a string message. I'm outputting these messages to an RTF document but want to maximize use of horizontal space so am trying to dynamically create a table and fit…
sinDizzy
  • 1,300
  • 7
  • 28
  • 60
0
votes
2 answers

Rendering multiple document formats with Cocoa's CoreGraphics

CoreGraphics gives the possibility to render PDF documents, this is great. But it seems like it could support other types too like Word documents, HTML, RTF and others. A quick look in the doc2pdf.py example on the Mac OS X Developer DVD makes me…
Béatrice Cassistat
  • 1,048
  • 12
  • 37
0
votes
1 answer

Python - removing last line of target when appending

I use an RTF template for data I'm gathering: {\rtf1\ansi\deff0 {\fonttbl {\f0 Monotype Corsiva;}} \f0\fs28 Here be %(data)s } I have a seperate template for append operation that is just like above without the first line. The challenge is that…
strongbad
  • 133
  • 1
  • 4
  • 12
0
votes
1 answer

How can I start a RTF editor from scratch(using Java)

I know this may sound silly to some of you experienced guys out there but it’s really important for me and my group at school, we need to create a software that allows the user to create a new RTF document from scratch (like an editor where you can…
Gorkuf
  • 1
  • 1
0
votes
1 answer

Sublime & Highlight: pasting as RTF fontsize issue

I downloaded a package named SublimeHighlight for the Sublime text editor. It serves as my solution to paste syntax highlighted code into Evernote. I have both Evernote and Sublime using the Menlo mono-spaced font. I select text in Sublime, right…
The Qodesmith
  • 3,205
  • 4
  • 32
  • 45
0
votes
2 answers

When dropping a text snippet how can i keep the links to remain functional?

I am dropping a text snippet (from IE) from a web page, that might contain links too. string _rtf = (string) data.GetData("Rich Text Format"); RichTextBox box = new RichTextBox(); box.DetectUrls = true; box.SelectedRtf =_rtf; box.SelectAll(); _rtf =…
mtulipm
  • 13
  • 4
0
votes
1 answer

How to write programmatically some unicode text in RTF format?

In order to generate RTF programmatically I have decided to use rtflib v1.0 from codeproject.com. But I can't understand how to generate text in russian unicode. So I need to generate a unicode text. Could someone help me? P.S. Honeslty, I could…
Narek
  • 38,779
  • 79
  • 233
  • 389
0
votes
1 answer

How to use RTF export feature of KDE?

In stackoverflow.com I have found a question where a user was suggesting to use this libraries of KDE in order to export-inport RTF files. But, when I downloaded I saw that there are lot of files that are included in the .cc and .h files that are…
Narek
  • 38,779
  • 79
  • 233
  • 389
0
votes
2 answers

Importing .rtf data into MatLab

I am working with huge rich text data files (.rtf). The data within the files consists of two columns of numbers formatted with table-like properties. Also, these numbers are either very large or very small so there needs to be a very high level of…
Sterling Butters
  • 1,024
  • 3
  • 20
  • 41
0
votes
1 answer

hex value not writing to image

I am trying to build a larger tool that will take hex strings from .RTF format and dump them to files. This attempt at writing to file from a memory stream is throwing an exception of type 'System.InvalidOperationException' on ReadTimeout and…
ozfive
  • 350
  • 2
  • 5
  • 14