Недавно добавленные исходники

•  DeLiKaTeS Tetris (Тетрис)  4 308

•  TDictionary Custom Sort  6 354

•  Fast Watermark Sources  6 142

•  3D Designer  9 079

•  Sik Screen Capture  6 466

•  Patch Maker  6 882

•  Айболит (remote control)  6 863

•  ListBox Drag & Drop  5 739

•  Доска для игры Реверси  96 630

•  Графические эффекты  7 083

•  Рисование по маске  6 384

•  Перетаскивание изображений  5 255

•  Canvas Drawing  5 627

•  Рисование Луны  5 327

•  Поворот изображения  4 876

•  Рисование стержней  3 460

•  Paint on Shape  2 719

•  Генератор кроссвордов  3 596

•  Головоломка Paletto  2 889

•  Теорема Монжа об окружностях  3 696

•  Пазл Numbrix  2 429

•  Заборы и коммивояжеры  3 110

•  Игра HIP  2 071

•  Игра Go (Го)  1 996

•  Симулятор лифта  2 355

•  Программа укладки плитки  2 058

•  Генератор лабиринта  2 516

•  Проверка числового ввода  2 203

•  HEX View  2 531

•  Физический маятник  2 146

 
скрыть

  Форум  

Delphi FAQ - Часто задаваемые вопросы

| Базы данных | Графика и Игры | Интернет и Сети | Компоненты и Классы | Мультимедиа |
| ОС и Железо | Программа и Интерфейс | Рабочий стол | Синтаксис | Технологии | Файловая система |



Delphi Sources

Получить свойства всех картинок в TWebBrowser



Оформил: DeeCo

uses
   MSHTML_TLB;

 // First navigate to a page 
// Zuerst eine Seite laden 
procedure TForm1.Button1Click(Sender: TObject);
 begin
   Webbrowser1.Navigate('www.google.ch');
 end;

 // Then execute the following code: 
// Dann diese Routine ausfьhren: 
procedure TForm1.Button2Click(Sender: TObject);
 var
   i: Word;
   ImageWidth, ImageHeight: Integer;
   ImageHref, ImageFileSize, ImageTextAlternative: string;
   Document: IHtmlDocument2;
 begin
   // Loop through all images of a TWebbrowser 
  // Schleife ьber alle Bilder im Webbrowser 
  for i := 0 to WebBrowser1.OleObject.Document.Images.Length - 1 do
   begin
     Document := WebBrowser1.Document as IHtmlDocument2;
     // Retrieves the calculated width of the image. 
    ImageWidth := WebBrowser1.OleObject.Document.Images.Item(i).Width;
     // Retrieves the height of the image. 
    ImageHeight := WebBrowser1.OleObject.Document.Images.Item(i).Height;
     // Retrieves the file size of the image. 
    ImageFileSize := (Document.Images.Item(i, 0) as IHTMLImgElement).FileSize;
     // Retrieves the entire URL that the browser uses to locate the image 
    ImageHref := (Document.Images.Item(i, 0) as IHTMLImgElement).Href;
     // Retrieves a text alternative to the graphic. 
    ImageTextAlternative := (Document.Images.Item(i, 0) as IHTMLImgElement).alt;
     // Show image information in a TListbox 
    ListBox1.Items.Add(Format('%s : %d x %d Pixels; %s Bytes; %s',
       [ImageHref, ImageWidth, ImageHeight, ImageFileSize, ImageTextAlternative]));
   end;
 end;







Copyright © 2004-2025 "Delphi Sources" by BrokenByte Software. Delphi World FAQ

Группа ВКонтакте