up vote 1 down vote favorite
1
share [g+] share [fb]

Regarding TJvRichEdit and Delphi... How?

  1. Load/Save rtf (including text and images - not only .bmp) to/from a file?
  2. Read/Write rtf (including text and images - not only .bmp) to/from Firebird blob field?
  3. Automatically convert screendump pasted from clipboard (Ctrl-V) into .jpg format before it is inserted into the TJvRichEdit rtf?

Guidance/advice, examples/code and useful URLs are all helpful. Thanks.

link|improve this question

The JEDI Online Help at help.delphi-jedi.org is not useful. Reading the source code in JvRichEdit.pas was helpful but I was still left with a lot of questions. – Sam Mar 11 '10 at 5:29
feedback

3 Answers

up vote 2 down vote accepted

Regarding 3 i would advice to create bitmap load from clipboard (see LoadFromClipboardFormat, SaveToClipboardFormat), convert to jpeg save to clipboard, richedit paste from clipboard,

Converting from bitmap to jpeg:

Jpg := TJPEGImage.Create;
jpg.Assign(Bitmap);
jpg.CompressionQuality := 50;
link|improve this answer
feedback

As far as the blob field goes, use a tBlobStream and the components SaveToStream / LoadFromStream methods. For a file, use a tFileStream with the same methods.

link|improve this answer
feedback

Found a demo (..\jvcl\examples\JvRichEdit\EditorDemo.dpr) that comes with the JVCL download. It compiles and runs and looks like it may contain the code that answers part 1 of the question.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.