mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-16 16:25:57 +01:00
141e177483
Added TCEFBrowserBitmap Use TCEFBrowserBitmap in the ConsoleBrowser2 and WebpageSnapshot demos. Fixed issue #445
165 lines
5.6 KiB
ObjectPascal
165 lines
5.6 KiB
ObjectPascal
// ************************************************************************
|
|
// ***************************** CEF4Delphi *******************************
|
|
// ************************************************************************
|
|
//
|
|
// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based
|
|
// browser in Delphi applications.
|
|
//
|
|
// The original license of DCEF3 still applies to CEF4Delphi.
|
|
//
|
|
// For more information about CEF4Delphi visit :
|
|
// https://www.briskbard.com/index.php?lang=en&pageid=cef
|
|
//
|
|
// Copyright © 2018 Salvador Díaz Fau. All rights reserved.
|
|
//
|
|
// ************************************************************************
|
|
// ************ vvvv Original license and comments below vvvv *************
|
|
// ************************************************************************
|
|
(*
|
|
* Delphi Chromium Embedded 3
|
|
*
|
|
* Usage allowed under the restrictions of the Lesser GNU General Public License
|
|
* or alternatively the restrictions of the Mozilla Public License 1.1
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
|
|
* the specific language governing rights and limitations under the License.
|
|
*
|
|
* Unit owner : Henri Gourvest <hgourvest@gmail.com>
|
|
* Web site : http://www.progdigy.com
|
|
* Repository : http://code.google.com/p/delphichromiumembedded/
|
|
* Group : http://groups.google.com/group/delphichromiumembedded
|
|
*
|
|
* Embarcadero Technologies, Inc is not permitted to use or redistribute
|
|
* this source code without explicit permission.
|
|
*
|
|
*)
|
|
|
|
unit uWindowsServiceBrowser;
|
|
|
|
interface
|
|
|
|
uses
|
|
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Classes,
|
|
Vcl.Graphics, Vcl.Controls, Vcl.SvcMgr, Vcl.Dialogs,
|
|
uEncapsulatedBrowser;
|
|
|
|
type
|
|
TService1 = class(TService)
|
|
procedure ServiceStart(Sender: TService; var Started: Boolean);
|
|
procedure ServiceStop(Sender: TService; var Stopped: Boolean);
|
|
procedure ServiceCreate(Sender: TObject);
|
|
private
|
|
FEncapsulatedBrowser : TEncapsulatedBrowser;
|
|
public
|
|
function GetServiceController: TServiceController; override;
|
|
procedure CreateBrowser;
|
|
procedure DestroyBrowser;
|
|
end;
|
|
|
|
var
|
|
Service1: TService1;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
// This demo creates a browser in a Windows Service to take a snapshot of
|
|
// google.com and save it as c:\windows\temp\snapshot.bmp
|
|
|
|
// The browser uses the off-screen rendering mode (OSR) to avoid using any
|
|
// Windows control.
|
|
|
|
// CEF is configured to use a different EXE for the subprocesses and the
|
|
// browser is handled in a thread (TCEFBrowserThread)
|
|
|
|
// This demo uses some OutputDebugString calls for debugging purposses.
|
|
// Download DebugView++ from https://github.com/CobaltFusion/DebugViewPP
|
|
// Run DebugView++ as administrator and select the
|
|
// "Log -> Capture Global Win32" menu option to see the OutputDebugString
|
|
// messages.
|
|
|
|
// To install WindowsServiceBrowser execute the following command as administrator :
|
|
// WindowsServiceBrowser.exe /install
|
|
|
|
// To uninstall WindowsServiceBrowser execute the following command as administrator :
|
|
// WindowsServiceBrowser.exe /uninstall
|
|
|
|
// Use the "Windows Services Manager" to start, stop, pause and continue WindowsServiceBrowser
|
|
// Execute "services.msc" from the Run command option in the Start menu.
|
|
|
|
// Read this for more information about Windows Service Applications :
|
|
// https://docwiki.embarcadero.com/RADStudio/Alexandria/en/Service_Applications
|
|
// https://learn.microsoft.com/en-us/dotnet/framework/windows-services/introduction-to-windows-service-applications
|
|
|
|
uses
|
|
uCEFApplication;
|
|
|
|
procedure GlobalCEFApp_OnContextInitialized;
|
|
begin
|
|
Service1.CreateBrowser;
|
|
end;
|
|
|
|
procedure CreateGlobalCEFApp;
|
|
begin
|
|
if (GlobalCEFApp = nil) then
|
|
begin
|
|
GlobalCEFApp := TCefApplication.Create;
|
|
GlobalCEFApp.WindowlessRenderingEnabled := True;
|
|
GlobalCEFApp.EnableHighDPISupport := True;
|
|
GlobalCEFApp.ShowMessageDlg := False; // This demo shouldn't show any window.
|
|
GlobalCEFApp.BrowserSubprocessPath := 'WindowsServiceBrowser_sp.exe'; // This is the other EXE for the CEF subprocesses.
|
|
GlobalCEFApp.BlinkSettings := 'hideScrollbars'; // This setting removes all scrollbars to capture a cleaner snapshot
|
|
GlobalCEFApp.EnableGPU := False;
|
|
GlobalCEFApp.DisableComponentUpdate := True;
|
|
GlobalCEFApp.SetCurrentDir := True;
|
|
GlobalCEFApp.OnContextInitialized := GlobalCEFApp_OnContextInitialized;
|
|
GlobalCEFApp.StartMainProcess;
|
|
end;
|
|
end;
|
|
|
|
procedure ServiceController(CtrlCode: DWord); stdcall;
|
|
begin
|
|
Service1.Controller(CtrlCode);
|
|
end;
|
|
|
|
function TService1.GetServiceController: TServiceController;
|
|
begin
|
|
Result := ServiceController;
|
|
end;
|
|
|
|
procedure TService1.CreateBrowser;
|
|
begin
|
|
if (FEncapsulatedBrowser = nil) then
|
|
begin
|
|
FEncapsulatedBrowser := TEncapsulatedBrowser.Create;
|
|
FEncapsulatedBrowser.CreateBrowser;
|
|
end;
|
|
end;
|
|
|
|
procedure TService1.DestroyBrowser;
|
|
begin
|
|
if (FEncapsulatedBrowser <> nil) then
|
|
FreeAndNil(FEncapsulatedBrowser);
|
|
end;
|
|
|
|
procedure TService1.ServiceCreate(Sender: TObject);
|
|
begin
|
|
FEncapsulatedBrowser := nil;
|
|
end;
|
|
|
|
procedure TService1.ServiceStart(Sender: TService; var Started: Boolean);
|
|
begin
|
|
OutputDebugString('WindowsServiceBrowser starting...');
|
|
CreateGlobalCEFApp;
|
|
end;
|
|
|
|
procedure TService1.ServiceStop(Sender: TService; var Stopped: Boolean);
|
|
begin
|
|
OutputDebugString('WindowsServiceBrowser stopping...');
|
|
DestroyBrowser;
|
|
DestroyGlobalCEFApp;
|
|
end;
|
|
|
|
end.
|