1,837 questions
0
votes
2
answers
64
views
How to properly place Hyperlinks in generated document using a custom script?
I'm trying to put an hyperlink in a generated document using a custom script, because the link needs to be fetched by the script.
I'm generating the XML in the custom script like follows:
(...)
var ...
0
votes
1
answer
74
views
Create new rtf file as a service on MacOS
I regularly use this service to create a new text file in the currently opened folder:
tell application "Finder"
set txt to make new file at (the target of the front window) as alias
...
0
votes
1
answer
685
views
How to fetch vCore information from the Mule API Deployed in Runtime Fabric
I am trying to fetch the count of vCore assigned to the existing apps deployed in Mule Runtime Fabric either directly from Mulesoft or from Elastic monitoring by building the Mule Api and fetching the ...
0
votes
1
answer
96
views
Unable to convert RTF bitmap to HTML image using PHP
From a REST API call I get a description text in RTF format. Just as a test, I have added just a small bitmap image (2x3 pixels in red) to that description. This returns the following RTF format ...
0
votes
1
answer
36
views
The very same simple logic doesn't work when written in a different way in rtf OBIP template
So, I had two boolean variables (let's say x and y) and a very simple code in an rtf OBIP template like that:
<?if x="false"?>
<?if y="false"?>
Some text1
&...
-1
votes
1
answer
251
views
Write non-latin characters and special symbols (Ø) to RTF file (javascript)
Update:
Yes, thank You very much satesrah for the idea!
You are right, there is mashup of encodings and I can't convert the whole text in Win-1251 or Win-1252..
I didn't want to insert unicode and ...
0
votes
1
answer
916
views
Extract RTF String from RichTextBox in C# .Net6.0 WPF [closed]
I am struggeling to get the RTF Text out of my RichTextBox. I am using C# .Net6.0, WPF.
I need to get the RTF String from the RichTextBox and store it in a variable. This Variable is in a class that ...
0
votes
1
answer
361
views
How do I edit RTF values in a data frame on Python?
unfortunately I can't get any further with my "project" and I can't find a solution that satisfies me, so I'm turning to you now and hope that I will get a good solution to my problem from ...
1
vote
0
answers
406
views
General input/output error when trying to open .rtf files with LibreOffice
I am getting "General input/output error" when trying to open some of the RTF files with LibreOffice Writer. I've tried both versions LibreOffice 7.5.5 and 7.6.0
If I open them with Wordpad ...
1
vote
0
answers
95
views
Load a RTFD file on a WebView in SwiftUI
I want to load a RTFD file (rtf with images) in a WebView.
So I created a file in TextEdit with a text and one image, and saved as doc.rtfd
[1
In order load the file on SwiftUI I tried the following ...
1
vote
1
answer
210
views
Applescript - How to paste Notes compatible RTF
I have an AppleScript app that would like to create a note (in Apple Notes) that uses the checklist feature. Apple Notes apparently uses a special version of Rich Text Format (RTF) (com.apple.notes....
1
vote
1
answer
43
views
XML with <code>-elements must be filled with values from extern file using xslt and xsl:import
i have this example XML-File with code-elements which every code-Value stands for a country.
The name of the countries are listed in an external XML-File. Later i want to use this external-file in ...
1
vote
0
answers
354
views
Tool for txt log file analysis
I do a lot of reverse engineering from logs and am looking for a simple tool that'll do the following:
Take the plain text log file as input
Change the font color to the one I specify for texts I ...
1
vote
1
answer
130
views
Search RTF for Bold font
In my app I sort through thousands of lines of questions to create a property list file. As part of this, I need it to detect which texts are in bold, as those are the ones marked as the correct ...
1
vote
0
answers
1k
views
Convert rtf to html, keep colors
I need to convert a bunch of RTF files to HTML keeping the same formatting as possible
So I tried that python script that converts all rtf files from a folder to its html variants:
from glob import ...
0
votes
1
answer
610
views
RTF Template to get rows to columns
<EMPLOYEE_INFORMATION_REC>
<PERSON_NUMBER>31</PERSON_NUMBER>
<Payroll_Relationship_Number>531</Payroll_Relationship_Number>
<Payroll_ID>322623279</Payroll_ID>
...
1
vote
1
answer
110
views
Convert RTF to XAML in UWP
I have a RichEditBox that I want to convert to a RichTextBlock. To do that, I need to convert the RTF string to an XAML string. Is it possible to do that? Are there any NuGet packages for that?
0
votes
1
answer
374
views
Delphi 64 bits Insert rtf stream into richedit
I try to insert a rtf inside a richedit (specifically a rtf saved in database, and then inserted in the current richedit control at the selection point).
The code below works in 32 bits. But was not ...
0
votes
1
answer
817
views
Python script to combine RTF files in a folder to CSV with filename as a separate column
I've tried a plethora of solutions which don't work. I've figured out how to get the converted data into a csv column, but all text is in 1 cell and I haven't figured out how to get the FileNames ...
1
vote
1
answer
668
views
<Flutter> Show rtf string in a widget
I want to show the contents of an rtf file in a Flutter widget.
Flutter does have a RichText class, but It cannot show rtf texts. I have tried looking for a third-party package in pub.dev, but I ...
0
votes
1
answer
745
views
Why are Unicode character in RTF followed by \'3f?
If you look at the way RTF encodes Unicode, it always follows a Unicode character by a 0x3f character, which is a question mark:
\u20181\'3f\u20182\'3f\u20183\'3f\u30340\'3f
Does anyone here know why ...
1
vote
1
answer
7k
views
How to render rich text in React? [duplicate]
Rich text stored in MySQL Database:
<p>Something something</p><p>Something something</p>
I fetch the Database content and store inside description state .
React code :
<div ...
0
votes
0
answers
182
views
django rich text field data in email
I want to send Post data of a RTF Field (Rich text field) or a HTML Field data in a email, below are my code and it seems to be not happening, please guide me.
models.py
class Servicereport(models....
0
votes
1
answer
335
views
Remove rtf formatting from string
I need to subtract text from string with rtf format.
I have a string in rtf format
std::wstring sString= L"{\\rtf1\\ansi\\ansicpg1252\\deff0\\nouicompat\\deflang2057{\\fonttbl{\\f0\\fnil\\fprq12\\...
1
vote
1
answer
972
views
Extracting images from a .RTF file with Python
does anyone know how to extract or copy images from a .rtf file ?
I have tryed to look for a solution but from what I found, all of the libraries and articles people cite no longer exist or have non-...