Windows with Delphi Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38)
Exchange Links About this site Links to us 
|
General :: Windows :: Programming :: Windows with Delphi :: Windows Graphics
Graphics programming under Windows with Delphi.
Articles:
This list is sorted by recent document popularity (not total page views).
New documents will first appear at the bottom.
Featured Article
Save a web page from TWebBrowser as a JPEG fileQuestion:
I need to make screenshots of web pages. Can I do that elegantly with TWebBrowser?
Answer:
Have TWebBrowser load the page, then have a view object paint the page onto a TCanvas (of a TBitmap) which you then subsequently resize to your desired thumbnail dimension and save in JPEG format.
The example below does not reduce the picture, thus the JPEGs are about full screen size.
You can download a project which was compiled with Delphi 5 here: HTTPtoJPEG.zip (3 kB).  | |  | | procedure GenerateJPEGfromBrowser(browser: iWebBrowser2;
jpegFQFilename: string; srcHeight:
integer; srcWidth: integer;
tarHeight: integer; tarWidth: integer);
var
sourceDrawRect: TRect;
targetDrawRect: TRect;
sourceBitmap : TBitmap;
targetBitmap : TBitmap;
aJPG : TJPEGImage;
aViewObject : IViewObject;
begin
sourceBitmap := TBitmap.Create;
targetBitmap := TBitmap.Create;
aJPG := TJPEGImage.Create;
try
try
sourceDrawRect := Rect(0, 0, srcWidth, srcHeight);
sourceBitmap.Width := srcWidth;
sourceBitmap.Height := srcHeight;
aViewObject := browser as IViewObject;
if aViewObject=nil then
Exit;
OleCheck(aViewObject.Draw(DVASPECT_CONTENT, 1, nil, nil,
Form1.Handle,
sourceBitmap.Canvas.Handle,
@sourceDrawRect, nil, nil, 0));
targetDrawRect := Rect(0, 0, tarWidth, tarHeight);
targetBitmap.Height := tarHeight;
targetBitmap.Width := tarWidth;
targetBitmap.Canvas.StretchDraw(targetDrawRect, sourceBitmap);
aJPG.Assign(targetBitmap);
aJPG.SaveToFile(jpegFQFilename)
finally
aJPG.Free;
sourceBitmap.Free;
targetBitmap.Free
end;
except
end;
end;
procedure TForm1.Button2Click(Sender: TObject);
var
IDoc1: IHTMLDocument2;
Web : iWebBrowser2;
tmpX,
tmpY : integer;
begin
with WebBrowser1 do
begin
Document.QueryInterface(IHTMLDocument2, IDoc1);
Web := ControlInterface;
tmpX := Height;
tmpY := Width;
Height := OleObject.Document.ParentWindow.Screen.Height;
Width := OleObject.Document.ParentWindow.Screen.Width;
GenerateJPEGfromBrowser(Web, '.\test.jpg',
Height, Width,
Height, Width);
Height := tmpX;
Width := tmpY;
Image1.Picture.LoadFromFile('.\test.jpg')
end;
end;
| |  | |  | You don't like the formatting? Check out SourceCoder then!
|
| Most recent comments
2008-08-08 11:46:02:
by anonymous
in Male Dating Scammers
on Dating scammer Robert Piperno, Robbie Piperno:
Hello,
I know dear Robbie too. He used basically the same m.o. with me. I found Jonathon's pic in a different pose but same clothing on a site of kid models that have been frequently used by sc ... read more
|
|
2008-08-08 11:39:18:
by anonymous
in Dating Scams
on Dating scammer Liliya:
hallo lilyia
I think understad
I hope your words is true
|
2008-08-08 11:39:14:
by anonymous
in Dating Scams
on Dating scammer Rhoda Naa from Accra, Ghana:
The below photo was take at Karaoke world in Tokyo, Japan. This young lady has traveled the world. Someone probably stile her photos from a photo hosting site such as Flicker, etc...
Her phot ... read more
|
2008-08-08 11:29:09:
by INVESTIGADOR
in Dating Scams
on Dating scammer Ksenia Lihacheva from Diwnogorsk, Russia:
SIEMPRE QUE LE MANDO CARTA ME CONTESTA, LO MAS QUE HE RECIBIDO SON 3 POR SEMANA.
LA VEZ PASADA QUE DEJO DE MANDARME YO LE ESCRIBI, LO QUE PASO FUE QUE LE DEJE DE ESCRIBIR, POR QUE PARA DECI ... read more
|
2008-08-08 11:13:46:
by anonymous
in Dating Scams
on Dating scammer pretty:
Ah look guys a new one from the friendly scammer, today's hot topic fear of flying.?.?.?.?
Hello <<Scammie name here>> !! How are you? I'm ok!!! I just returned from my work.
... read more
|
2008-08-08 10:52:28:
by INVESTIGADOR
in Dating Scams
on Dating scammer ANGELINA IVANOVA:
SALIO IGUAL QUE LA KSADILLA. LASTIMA AMIGO
PUES A VER QUE MAS TE ESCR.
SALUDOS
|
2008-08-08 10:20:50:
by [hidden]
in Male Dating Scammers
on Dating scammer Charles Wright, Richard Cirsalli, Mark Cruise, Green Cowser, Mar:
omg i cant belived this recently i got to know 1 guy name Mcdonald Peril
he got 1 son 4 yrs old and wife died of cancer. he is contrustion engineer, UK
we been contacting n he told me he love ... read more
|
2008-08-08 10:00:48:
by [hidden]
in Network
on Sending an email from Delphi using MAPI:
Excellent, thanks!
|
2008-08-08 09:43:01:
by anonymous
in Dating Scams
on Dating scammer williams rogers:
I want to add, because i've two daughters the last mail i'had send to him :
ah you are so shocked poor man...
In is saying Willy... Played well : that the sky falls you on the head, because yo ... read more
|
2008-08-08 08:12:02:
by Peter
in Dating Scams
on Dating scammer Ekaterina Rozhentsova:
Nachtrag,
Friedel, manchmal bin ich blöd! Wenn jemand Trojaner an alle Adressen sendet, die er hier im delphi findet, wer bekommt sie dann? 'Western Union' - Anhänge wohlgemerkt!! Wieviel Scamme ... read more
|
|