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

•  Animation Loaders  882

•  DeLiKaTeS Tetris (Тетрис)  5 827

•  TDictionary Custom Sort  7 783

•  Fast Watermark Sources  7 457

•  3D Designer  10 685

•  Sik Screen Capture  8 006

•  Patch Maker  8 211

•  Айболит (remote control)  8 261

•  ListBox Drag & Drop  7 073

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

•  Графические эффекты  8 336

•  Рисование по маске  7 712

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

•  Canvas Drawing  6 686

•  Рисование Луны  6 617

•  Поворот изображения  5 757

•  Рисование стержней  4 697

•  Paint on Shape  3 404

•  Генератор кроссвордов  4 379

•  Головоломка Paletto  3 524

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

•  Пазл Numbrix  2 807

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

•  Игра HIP  2 524

•  Игра Go (Го)  2 523

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

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

•  Генератор лабиринта  3 090

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

•  HEX View  2 984

 
скрыть

  Форум  

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-2026 "Delphi Sources" by «SiteAnalyzer». Delphi World FAQ

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