Search found 8 matches

by josef-b
Tue Feb 11, 2025 11:18 am
Forum: Support
Topic: Scale in TRichView (Pictures in Tables)
Replies: 4
Views: 83546

Re: Scale in TRichView (The Right Way to Reduce)

Thank you,

I'm trying to implement this and search the document recursively through the many tables. It's not clear to me how exactly I reduce the size of the images (percentage-wise in height and width).

"GetExtraIntProperty(rvepImageWidth,Extra_Width);"GetExtra..." always returns the value 0 for ...
by josef-b
Sun Feb 09, 2025 10:07 am
Forum: Support
Topic: Scale in TRichView (Pictures in Tables)
Replies: 4
Views: 83546

Re: Scale in TRichView (Pictures in Tables)

The point is, I want to automatically edit the content of the TRichView so that the width of the TRichView is no larger than, for example, 700 px. For example, if I reduce the images to 300 px - and there is still text next to them, TrichView does not use the width any further, but instead reduces ...
by josef-b
Sat Feb 08, 2025 8:17 am
Forum: Support
Topic: Scale in TRichView (Pictures in Tables)
Replies: 4
Views: 83546

Scale in TRichView (Pictures in Tables)

I read HTML emails into TRiChView. That works so far. Now I want to archive the emails as an extension and have thought about saving them in PDF format and printing them out. The problem is that sometimes there are very large images in the emails that we want to reduce in size. This is a problem for ...
by josef-b
Sat Jul 28, 2018 8:32 am
Forum: Support
Topic: Error in Reading RVF Subdocument
Replies: 5
Views: 22574

Re: Error in Reading RVF Subdocument

Here I'm sending sample project, without RVF. Do you still have my RichView_Test.rvf including the problem?

It is too long for sending it here.

I sent it completey by email (gmail).
by josef-b
Mon Jul 23, 2018 7:48 pm
Forum: Support
Topic: Error in Reading RVF Subdocument
Replies: 5
Views: 22574

Re: Error in Reading RVF Subdocument

My Version is 17.4.2 Is there a newer one?

I bought it from you this month.

Now I tried:

Code: Select all


procedure TFemail_Client.FormCreate(Sender: TObject);
begin
RegisterClasses([TdxSmartImage, TdxPNGImage]);
......
I tried to load the same rvf, but I have the same error. :(
by josef-b
Mon Jul 23, 2018 7:49 am
Forum: Support
Topic: Error in Reading RVF Subdocument
Replies: 5
Views: 22574

Error in Reading RVF Subdocument

I want do load Data from Database.


procedure TFemail_client.Ein_loadRichViewFromBlob;
var
BlobStream : TStream;
BlobFeld : TField;
begin
richview1.clear;

with dsein do //TIBDataset
begin
BlobFeld := Fieldbyname('Body_Richview');
BlobStream := CreateBlobstream(Blobfeld,bmread);
BlobStream ...
by josef-b
Mon Jul 23, 2018 7:35 am
Forum: Support
Topic: RichViewImportPicture - load Pictures from Web (emails)
Replies: 2
Views: 12594

Re: RichViewImportPicture - load Pictures from Web (emails)

Thank you that works great now.

I inserted the following because of http error 403:
.....


IDHttp1.Request.Useragent :=
'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; MAAU)';
IdHTTP1.Get(Location, Stream);

------
by josef-b
Thu Jul 19, 2018 8:33 am
Forum: Support
Topic: RichViewImportPicture - load Pictures from Web (emails)
Replies: 2
Views: 12594

RichViewImportPicture - load Pictures from Web (emails)

I want to integrate a own small email-client in our private business application.

So I want to load Pictures from web included in emails I am using THtmViewer and TRVHTMLViewImporter.

procedure TF1.RichViewImportPicture(Sender: TCustomRichView;
const Location: TRVUnicodeString; Width, Height ...