Sorry,
When i export to html document, i am trying to retrive each image filename to upload them with ftp.
I tried usiing onsaveimage2 but i cannot retrive the filename.
I insert pictures with the insertpicture method and richview automatticaly names the pictures (Ex: image3, image4, etc...)
How can i get the name of those automatic picture names when saving to html.
I manage to retrive the path and prefix but not the image name...
Thanks for your attention,
Regards,
Carlos Castro
Uploading images
-
- Site Admin
- Posts: 17528
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
-
- Posts: 13
- Joined: Fri Feb 24, 2006 5:48 pm
Sergey,
The question is...
I start a new document with trichview, insert some pictures in the document and then export it to html.
When i look at the exported html code, image names are like image1, image2, imageX.
what i want is to get these (image1, image2, etc..) during html export to be able to ftp images to a server...
Thanks,
Carlos Castro
The question is...
I start a new document with trichview, insert some pictures in the document and then export it to html.
When i look at the exported html code, image names are like image1, image2, imageX.
what i want is to get these (image1, image2, etc..) during html export to be able to ftp images to a server...
Thanks,
Carlos Castro
-
- Site Admin
- Posts: 17528
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
You can use OnSaveImage2 event:
Code: Select all
procedure TForm1.RichViewEdit1SaveImage2(Sender: TCustomRichView;
Graphic: TGraphic; SaveFormat: TRVSaveFormat; const Path,
ImagePrefix: String; var ImageSaveNo: Integer; var Location: String;
var DoDefault: Boolean);
begin
Location := Sender.RVData.SavePicture( rvsfHTML, ImagePrefix, Path,
ImageSaveNo, False, clWindow, Graphic);
DoDefault := False;
{
THE IMAGE WAS SAVED TO Path+Location
}
end;
-
- Posts: 13
- Joined: Fri Feb 24, 2006 5:48 pm