DARK KINGS
Thanks For Visit The Forum:) Download Tools And Enjoy:) Join Mig33 Chat Room >dhaka onuvab<

Join the forum, it's quick and easy

DARK KINGS
Thanks For Visit The Forum:) Download Tools And Enjoy:) Join Mig33 Chat Room >dhaka onuvab<
DARK KINGS
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Dhaka

May 2024
SunMonTueWedThuFriSat
   1234
567891011
12131415161718
19202122232425
262728293031 

Calendar Calendar

Search
 
 

Display results as :
 


Rechercher Advanced Search

Latest topics
» join dark king room
Download and load online image in picture box EmptyThu Apr 09, 2020 3:53 am by love62

» Dark B00mb3r by fajiil-(free)
Download and load online image in picture box EmptyMon Apr 11, 2016 3:22 pm by me.punk.7

» ID creator with proxy changer and gmail dot generator
Download and load online image in picture box EmptySat Apr 09, 2016 7:47 pm by me.punk.7

» Unlimited Ids Login , Balance And Level Checker
Download and load online image in picture box EmptySat Apr 09, 2016 7:45 pm by me.punk.7

» Multy credit transfer project
Download and load online image in picture box EmptySun Feb 21, 2016 6:53 am by rezkiye

» Sockmix v2.6 Fresh Project
Download and load online image in picture box EmptyFri Nov 20, 2015 12:08 pm by papeshh

» Offline Registration SYstem And Key Generator By DevelopMig33.Tk
Download and load online image in picture box EmptyFri Nov 20, 2015 12:08 pm by papeshh

» All Ocx Box
Download and load online image in picture box EmptyThu Oct 22, 2015 7:26 am by papeshh

» multy maker + auto activator ( updated )
Download and load online image in picture box EmptyThu Oct 22, 2015 7:15 am by papeshh

free counters

Download and load online image in picture box

Go down

Download and load online image in picture box Empty Download and load online image in picture box

Post  sahriya-omu Thu Dec 20, 2012 1:26 am

Hi All, Mostly ppl.. few are of them I have seen..are using webbrowser control to display any online webimage in their apps... So here I am sharing a Module.. which is a lovely piece of code... It can download any Online web image (PNG also) and can save and load in any Picturebox control of your Vb6 app.

add this modeul first


Option Explicit

Private Type GUID
Data1 As Long
Data2 As Integer
Data3 As Integer
Data4(7) As Byte
End Type

Private Type PICTDESC
size As Long
Type As Long
hBmp As Long
hPal As Long
Reserved As Long
End Type

Private Type GdiplusStartupInput
GdiplusVersion As Long
DebugEventCallback As Long
SuppressBackgroundThread As Long
SuppressExternalCodecs As Long
End Type

Private Type PWMFRect16
Left As Integer
Top As Integer
Right As Integer
Bottom As Integer
End Type

Private Type wmfPlaceableFileHeader
Key As Long
hMf As Integer
BoundingBox As PWMFRect16
Inch As Integer
Reserved As Long
CheckSum As Integer
End Type

' GDI Functions
Private Declare Function CreateCompatibleDC Lib "gdi32" (ByVal hDC As Long) As Long
Private Declare Function OleCreatePictureIndirect Lib "olepro32.dll" (PicDesc As PICTDESC, RefIID As GUID, ByVal fPictureOwnsHandle As Long, IPic As IPicture) As Long
Private Declare Function CreateCompatibleBitmap Lib "gdi32" (ByVal hDC As Long, ByVal nWidth As Long, ByVal nHeight As Long) As Long
Private Declare Function GetDeviceCaps Lib "gdi32" (ByVal hDC As Long, ByVal nIndex As Long) As Long
Private Declare Function PatBlt Lib "gdi32" (ByVal hDC As Long, ByVal X As Long, ByVal Y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal dwRop As Long) As Long
Private Declare Function CreateBitmap Lib "gdi32" (ByVal nWidth As Long, ByVal nHeight As Long, ByVal nPlanes As Long, ByVal nBitCount As Long, lpBits As Any) As Long
Private Declare Function SelectObject Lib "gdi32" (ByVal hDC As Long, ByVal hObject As Long) As Long
Private Declare Function CreateSolidBrush Lib "gdi32" (ByVal crColor As Long) As Long
Private Declare Function DeleteObject Lib "gdi32" (ByVal hObject As Long) As Long
Private Declare Function DeleteDC Lib "gdi32" (ByVal hDC As Long) As Long

' GDI+ functions
Private Declare Function GdipLoadImageFromFile Lib "gdiplus.dll" (ByVal FileName As Long, GpImage As Long) As Long
Private Declare Function GdiplusStartup Lib "gdiplus.dll" (Token As Long, gdipInput As GdiplusStartupInput, GdiplusStartupOutput As Long) As Long
Private Declare Function GdipCreateFromHDC Lib "gdiplus.dll" (ByVal hDC As Long, GpGraphics As Long) As Long
Private Declare Function GdipSetInterpolationMode Lib "gdiplus.dll" (ByVal Graphics As Long, ByVal InterMode As Long) As Long
Private Declare Function GdipDrawImageRectI Lib "gdiplus.dll" (ByVal Graphics As Long, ByVal Img As Long, ByVal X As Long, ByVal Y As Long, ByVal Width As Long, ByVal Height As Long) As Long
Private Declare Function GdipDeleteGraphics Lib "gdiplus.dll" (ByVal Graphics As Long) As Long
Private Declare Function GdipDisposeImage Lib "gdiplus.dll" (ByVal Image As Long) As Long
Private Declare Function GdipCreateBitmapFromHBITMAP Lib "gdiplus.dll" (ByVal hBmp As Long, ByVal hPal As Long, GpBitmap As Long) As Long
Private Declare Function GdipGetImageWidth Lib "gdiplus.dll" (ByVal Image As Long, Width As Long) As Long
Private Declare Function GdipGetImageHeight Lib "gdiplus.dll" (ByVal Image As Long, Height As Long) As Long
Private Declare Function GdipCreateMetafileFromWmf Lib "gdiplus.dll" (ByVal hWmf As Long, ByVal deleteWmf As Long, WmfHeader As wmfPlaceableFileHeader, Metafile As Long) As Long
Private Declare Function GdipCreateMetafileFromEmf Lib "gdiplus.dll" (ByVal hEmf As Long, ByVal deleteEmf As Long, Metafile As Long) As Long
Private Declare Function GdipCreateBitmapFromHICON Lib "gdiplus.dll" (ByVal hIcon As Long, GpBitmap As Long) As Long
Private Declare Function GdipDrawImageRectRectI Lib "gdiplus.dll" (ByVal Graphics As Long, ByVal GpImage As Long, ByVal dstx As Long, ByVal dsty As Long, ByVal dstwidth As Long, ByVal dstheight As Long, ByVal srcx As Long, ByVal srcy As Long, ByVal srcwidth As Long, ByVal srcheight As Long, ByVal srcUnit As Long, ByVal imageAttributes As Long, ByVal callback As Long, ByVal callbackData As Long) As Long
Private Declare Sub GdiplusShutdown Lib "gdiplus.dll" (ByVal Token As Long)

' GDI and GDI+ constants
Private Const PLANES = 14 ' Number of planes
Private Const BITSPIXEL = 12 ' Number of bits per pixel
Private Const PATCOPY = &HF00021 ' (DWORD) dest = pattern
Private Const PICTYPE_BITMAP = 1 ' Bitmap type
Private Const InterpolationModeHighQualityBicubic = 7
Private Const GDIP_WMF_PLACEABLEKEY = &H9AC6CDD7
Private Const UnitPixel = 2

' Initialises GDI Plus
Public Function InitGDIPlus() As Long
Dim Token As Long
Dim gdipInit As GdiplusStartupInput

gdipInit.GdiplusVersion = 1
GdiplusStartup Token, gdipInit, ByVal 0&
InitGDIPlus = Token
End Function

' Frees GDI Plus
Public Sub FreeGDIPlus(Token As Long)
GdiplusShutdown Token
End Sub

' Loads the picture (optionally resized)
Public Function LoadPictureGDIPlus(PicFile As String, Optional Width As Long = -1, Optional Height As Long = -1, Optional ByVal BackColor As Long = vbBlack, Optional RetainRatio As Boolean = False) As IPicture
Dim hDC As Long
Dim hBitmap As Long
Dim Img As Long

' Load the image
If GdipLoadImageFromFile(StrPtr(PicFile), Img) <> 0 Then
Err.Raise 999, "GDI+ Module", "Error loading picture " & PicFile
Exit Function
End If

' Calculate picture's width and height if not specified
If Width = -1 Or Height = -1 Then
GdipGetImageWidth Img, Width
GdipGetImageHeight Img, Height
End If

' Initialise the hDC
InitDC hDC, hBitmap, BackColor, Width, Height

' Resize the picture
gdipResize Img, hDC, Width, Height, RetainRatio
GdipDisposeImage Img

' Get the bitmap back
GetBitmap hDC, hBitmap

' Create the picture
Set LoadPictureGDIPlus = CreatePicture(hBitmap)
End Function

' Initialises the hDC to draw
Private Sub InitDC(hDC As Long, hBitmap As Long, BackColor As Long, Width As Long, Height As Long)
Dim hBrush As Long

' Create a memory DC and select a bitmap into it, fill it in with the backcolor
hDC = CreateCompatibleDC(ByVal 0&)
hBitmap = CreateBitmap(Width, Height, GetDeviceCaps(hDC, PLANES), GetDeviceCaps(hDC, BITSPIXEL), ByVal 0&)
hBitmap = SelectObject(hDC, hBitmap)
hBrush = CreateSolidBrush(BackColor)
hBrush = SelectObject(hDC, hBrush)
PatBlt hDC, 0, 0, Width, Height, PATCOPY
DeleteObject SelectObject(hDC, hBrush)
End Sub

' Resize the picture using GDI plus
Private Sub gdipResize(Img As Long, hDC As Long, Width As Long, Height As Long, Optional RetainRatio As Boolean = False)
Dim Graphics As Long ' Graphics Object Pointer
Dim OrWidth As Long ' Original Image Width
Dim OrHeight As Long ' Original Image Height
Dim OrRatio As Double ' Original Image Ratio
Dim DesRatio As Double ' Destination rect Ratio
Dim DestX As Long ' Destination image X
Dim DestY As Long ' Destination image Y
Dim DestWidth As Long ' Destination image Width
Dim DestHeight As Long ' Destination image Height

GdipCreateFromHDC hDC, Graphics
GdipSetInterpolationMode Graphics, InterpolationModeHighQualityBicubic

If RetainRatio Then
GdipGetImageWidth Img, OrWidth
GdipGetImageHeight Img, OrHeight

OrRatio = OrWidth / OrHeight
DesRatio = Width / Height

' Calculate destination coordinates
DestWidth = IIf(DesRatio < OrRatio, Width, Height * OrRatio)
DestHeight = IIf(DesRatio < OrRatio, Width / OrRatio, Height)
DestX = (Width - DestWidth) / 2
DestY = (Height - DestHeight) / 2

GdipDrawImageRectRectI Graphics, Img, DestX, DestY, DestWidth, DestHeight, 0, 0, OrWidth, OrHeight, UnitPixel, 0, 0, 0
Else
GdipDrawImageRectI Graphics, Img, 0, 0, Width, Height
End If
GdipDeleteGraphics Graphics
End Sub

' Replaces the old bitmap of the hDC, Returns the bitmap and Deletes the hDC
Private Sub GetBitmap(hDC As Long, hBitmap As Long)
hBitmap = SelectObject(hDC, hBitmap)
DeleteDC hDC
End Sub

' Creates a Picture Object from a handle to a bitmap
Private Function CreatePicture(hBitmap As Long) As IPicture
Dim IID_IDispatch As GUID
Dim pic As PICTDESC
Dim IPic As IPicture

' Fill in OLE IDispatch Interface ID
IID_IDispatch.Data1 = &H20400
IID_IDispatch.Data4(0) = &HC0
IID_IDispatch.Data4(7) = &H46

' Fill Pic with necessary parts
pic.size = Len(pic) ' Length of structure
pic.Type = PICTYPE_BITMAP ' Type of Picture (bitmap)
pic.hBmp = hBitmap ' Handle to bitmap

' Create the picture
OleCreatePictureIndirect pic, IID_IDispatch, True, IPic
Set CreatePicture = IPic
End Function

' Returns a resized version of the picture
Public Function Resize(Handle As Long, PicType As PictureTypeConstants, Width As Long, Height As Long, Optional BackColor As Long = vbWhite, Optional RetainRatio As Boolean = False) As IPicture
Dim Img As Long
Dim hDC As Long
Dim hBitmap As Long
Dim WmfHeader As wmfPlaceableFileHeader

' Determine pictyre type
Select Case PicType
Case vbPicTypeBitmap
GdipCreateBitmapFromHBITMAP Handle, ByVal 0&, Img
Case vbPicTypeMetafile
FillInWmfHeader WmfHeader, Width, Height
GdipCreateMetafileFromWmf Handle, False, WmfHeader, Img
Case vbPicTypeEMetafile
GdipCreateMetafileFromEmf Handle, False, Img
Case vbPicTypeIcon
' Does not return a valid Image object
GdipCreateBitmapFromHICON Handle, Img
End Select

' Continue with resizing only if we have a valid image object
If Img Then
InitDC hDC, hBitmap, BackColor, Width, Height
gdipResize Img, hDC, Width, Height, RetainRatio
GdipDisposeImage Img
GetBitmap hDC, hBitmap
Set Resize = CreatePicture(hBitmap)
End If
End Function

' Fills in the wmfPlacable header
Private Sub FillInWmfHeader(WmfHeader As wmfPlaceableFileHeader, Width As Long, Height As Long)
WmfHeader.BoundingBox.Right = Width
WmfHeader.BoundingBox.Bottom = Height
WmfHeader.Inch = 1440
WmfHeader.Key = GDIP_WMF_PLACEABLEKEY
End Sub

'Load Png (Bubbelbilden) to Image Control
Sub PngImageLoad(PathFilename As String, ImageControl As Image)
Dim Token As Long
Token = InitGDIPlus
ImageControl = LoadPictureGDIPlus(PathFilename, ImageControl.Width / Screen.TwipsPerPixelX, ImageControl.Height / Screen.TwipsPerPixelY)
FreeGDIPlus Token
End Sub

'Load Png (Bubbelbilden) to Picture Control
Sub PngPictureLoad(PathFilename As String, PictureControl As PictureBox, AutoResize As Boolean)
Dim Token As Long
Token = InitGDIPlus
If AutoResize = False Then
PictureControl = LoadPictureGDIPlus(PathFilename)
Else
PictureControl = LoadPictureGDIPlus(PathFilename, PictureControl.ScaleWidth / Screen.TwipsPerPixelX, PictureControl.ScaleHeight / Screen.TwipsPerPixelY)
End If
FreeGDIPlus Token
End Sub

Public Sub drops(ByRef URL As String, ByRef file As String, pics As PictureBox)
On Error Resume Next
Dim fileBytes() As Byte
Dim fileNum As Integer

DoEvents

fileBytes() = Form1.Inet1.OpenURL(URL, icByteArray)

fileNum = FreeFile
Open file For Binary Access Write As #fileNum
Put #fileNum, , fileBytes()
Close #fileNum

If FileLen(file) > 700 Then
Call PngPictureLoad(file, pics, True)
End If

End Sub



Call it in your form Like:
Private Sub Command1_Click()
drops "http://www.mig33.com/assets/images/mig33_logo.png", App.Path & "\aaa.png", Picture1
End Sub
sahriya-omu
sahriya-omu
Admin
Admin

Posts : 209
Points : 555
Reputation : 31
Join date : 2011-08-11
Age : 31
Location : Barisal

https://dark-kings.forumotion.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum