Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Delphi ActiveX) Download Web Page to MHT and Extract Images (all in memory)Downloads a web page to an MHT archive (in memory) and then extracts each image to a byte array in memory.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB; ... procedure TForm1.Button1Click(Sender: TObject); var url: WideString; mht: TChilkatMht; mhtStr: WideString; email: TChilkatEmail; success: Integer; numRelatedItems: Integer; i: Integer; sbContentType: TChilkatStringBuilder; imageData: Array of Byte; begin // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // Note: This URL exists at the time of writing and testing this example (on 12-June-2020) // However, it will surely not continue to exist for very long. // You should choose a different URL. (Any web page with images will do.) url := 'https://www.fendi.com/it/abbigliamento-uomo/cravatta-fxc160a3nwf0qg2'; mht := TChilkatMht.Create(Self); // Downloads to an MHT string. // MHT is just MIME, which is the same format as an email but with different semantics. mhtStr := mht.GetMHT(url); if (mht.LastMethodSuccess = 0) then begin Memo1.Lines.Add(mht.LastErrorText); Exit; end; // We can still treat the MHT MIME as an email and iterate over the "related items". email := TChilkatEmail.Create(Self); success := email.SetFromMimeText(mhtStr); if (success = 0) then begin Memo1.Lines.Add(email.LastErrorText); Exit; end; numRelatedItems := email.NumRelatedItems; i := 0; sbContentType := TChilkatStringBuilder.Create(Self); while i < numRelatedItems do begin sbContentType.SetString(email.GetRelatedContentType(i)); Memo1.Lines.Add('Content-Type: ' + sbContentType.GetAsString()); if (sbContentType.StartsWith('image/',0) = 1) then begin // We have an image. // Get the image data. imageData := email.GetRelatedData(i); // Do what you need with the image data.. end; i := i + 1; end; end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.