Results 1 to 21 of 21

Thread: [VB] stdPicture Render (How To)

Threaded View

  1. #1

    Thread Starter
    VB-aholic & Lovin' It LaVolpe's Avatar
    Join Date
    Oct 2007
    Location
    Beside Waldo
    Posts
    19,541

    [VB] stdPicture Render (How To)

    What is the .Render method of the stdPicture object and how does one use it.

    FYI: a stdPicture object is either an object declared as stdPicture or any VB .Picture/.Image property, including those of forms, image controls, pictureboxes, etc. Some other properties may be stdPicture objects too, like a command button's .DisabledPicture property or a form's .Icon property.

    The .Render method has all the benefits of VB's PaintPicture method, except one, and has a few additional benefits that VB's PaintPicture does not. In short, you have some more flexibility with .Render, but its usage is not widely known or understood.

    What does PaintPicture do that .Render cannot? It can render a stdPicture object with different raster operations, i.e., vbSrcPaint, vbSrcErase, etc. The .Render method cannot by itself. SetROP2 API can do the job though.

    What does .Render do that PaintPicture cannot? A few things
    1. It can render to any DC, memory DC, DC returned by API, or VB .hDC property (major advantage)
    2. It can render transparent GIFs, maintaining transparency (minor advantage)
    3. It is faster because less VB overhead is involved

    What APIs do PaintPicture & .Render replicate? BitBlt, StretchBlt, DrawIcon, DrawIconEx and metafile rendering. So you see, you have some powerful API replication in some common VB methods.

    Why is .Render not understood well? Because it is harder to use and PaintPicture can suffice a vast majority of the time and is easier to use. To understand .Render, you need to understand a bit about bitmaps and .Render's parameter requirements
    a. Destination parameters for .Render are in pixels
    b. Source parameters for .Render are in himetrics
    c. stdPicture objects are DIBs, stored upside down. So source parameters must be flipped vertically when rendering.

    Knowing the above, one can build a custom Render function using a stdPicture object. The following includes options for: stretching, scaling, offsetting, centering, partial rendering, and user-defined scalemodes.

    Simply copy & paste to your project. Commented well in the code.
    Tip: To make copying easier, hit the "Quote" button below & copy from that window.
    vb Code:
    1. Private Function RenderStdPicture(theTarget As Variant, thePic As StdPicture, _
    2.                              Optional ByVal destX As Single, Optional ByVal destY As Single, _
    3.                              Optional ByVal destWidth As Single, Optional ByVal destHeight As Single, _
    4.                              Optional ByVal srcX As Single, Optional ByVal srcY As Single, _
    5.                              Optional ByVal srcWidth As Single, Optional ByVal srcHeight As Single, _
    6.                              Optional ByVal ParamScaleMode As ScaleModeConstants = vbUser, _
    7.                              Optional ByVal Centered As Boolean = False, Optional ByVal ZoomFactor As Single = 1&) As Boolean
    8.                                    
    9.     ' Return Value [out]
    10.     '   If no errors occur, return value is True. If error or invalid parameters passed, value is False
    11.     ' Parameters [in]
    12.     '   theTarget: a VB form, picturebox, usercontrol or a valid hDC (no error checking for valid DC)
    13.     '       ... If Object, then it must expose a ScaleMode and hDC property
    14.     '       ... and if centering and an object, must also expose ScaleWidth & ScaleHeight properties
    15.     '   thePic: a VB ImageControl, stdPicture object, or VB .Picture property
    16.     '   destX: horizontal offset on theTarget where drawing begins, default is zero
    17.     '   destY: vertical offset on theTarget where drawing begins, default is zero
    18.     '   destWidth: rendered image width & will be multiplied against ZoomFactor; default is thePic.Width
    19.     '   destHeight: rendered image height & will be multiplied against ZoomFactor; default is thePic.Height
    20.     '   srcX: horizontal offset of thePic to begin rendering from; default is zero
    21.     '   srcY: vertical offset of thePic to begin rendering from; default is zero
    22.     '   srcWidth: thePic width that will be rendered; default is thePic.Width
    23.     '   srcHeight: thePic height that will be rendered; default is thePic.Height
    24.     '   ParamScaleMode: Scalemode for passed parameters.
    25.     '       If vbUser, then theTarget scalemode is used if theTarget is an Object else vbPixels if theTarget is an hDC
    26.     '   Centered: If True, rendered image is centered in theTarget, offset by destX and/or destY
    27.     '       If theTarget is a DC, then Centered is ignored. You must pass the correct destX,destY values
    28.     '   ZoomFactor: Scaling option. Values>1 zoom out and Values<1||>0 zoom in
    29.    
    30.     ' Tip: To stretch image to a picturebox dimensions, pass destWidth & destHeight
    31.     '   as the picturebox's scalewidth & scaleheight respectively and ZoomFactor of 1
    32.                                    
    33.     If thePic Is Nothing Then Exit Function                 ' sanity checks first
    34.     If thePic.Handle = 0& Then Exit Function
    35.     If ZoomFactor <= 0! Then Exit Function
    36.    
    37.     Dim Width As Single, Height As Single, destDC As Long
    38.    
    39.     ' the stdPicture.Render method requires vbPixels for destination and vbHimetrics for source
    40.     Width = ScaleX(thePic.Width, vbHimetric, vbPixels)      ' image size in pixels
    41.     Height = ScaleY(thePic.Height, vbHimetric, vbPixels)
    42.    
    43.     On Error Resume Next
    44.     If IsObject(theTarget) Then         ' passed object? If so, set scalemode if needed
    45.         If theTarget Is Nothing Then Exit Function
    46.         If ParamScaleMode = vbUser Then ParamScaleMode = theTarget.ScaleMode
    47.         destDC = theTarget.hDC
    48.     ElseIf IsNumeric(theTarget) Then    ' passed hDC? If so, set scalemode if needed
    49.         If ParamScaleMode = vbUser Then ParamScaleMode = vbPixels
    50.         destDC = Val(theTarget)
    51.         Centered = False                ' only applicable if theTarget is a VB object
    52.     Else
    53.         Exit Function                   ' unhandled; abort
    54.     End If
    55.     If Err Then                         ' checks above generated an error; probably passing object without scalemode property?
    56.         Err.Clear
    57.         Exit Function
    58.     End If        
    59.  
    60.     If destWidth Then                   ' calculate destination width in pixels from ParamScaleMode
    61.         destWidth = ScaleX(destWidth, ParamScaleMode, vbPixels) * ZoomFactor
    62.     Else
    63.         destWidth = Width * ZoomFactor
    64.     End If
    65.     If destHeight Then                  'calculate destination height in pixels from ParamScaleMode
    66.         destHeight = ScaleY(destHeight, ParamScaleMode, vbPixels) * ZoomFactor
    67.     Else
    68.         destHeight = Height * ZoomFactor
    69.     End If
    70.                                         ' get destX,destY in pixels from ParamScaleMode
    71.     If destX Then destX = ScaleX(destX, ParamScaleMode, vbPixels)
    72.     If destY Then destY = ScaleY(destY, ParamScaleMode, vbPixels)
    73.     If Centered Then                    ' Offset destX,destY if centering
    74.         destX = (ScaleX(theTarget.ScaleWidth, theTarget.ScaleMode, vbPixels) - destWidth) / 2 + destX
    75.         destY = (ScaleY(theTarget.ScaleHeight, theTarget.ScaleMode, vbPixels) - destHeight) / 2 + destY
    76.     End If
    77.                                         ' setup source coords/bounds and convert to vbHimetrics
    78.     If srcX Then srcX = ScaleX(srcX, ParamScaleMode, vbHimetric)
    79.     If srcY Then srcY = ScaleY(srcY, ParamScaleMode, vbHimetric)
    80.     If srcWidth Then srcWidth = ScaleX(srcWidth, ParamScaleMode, vbHimetric) Else srcWidth = thePic.Width
    81.     If srcHeight Then srcHeight = ScaleY(srcHeight, ParamScaleMode, vbHimetric) Else srcHeight = thePic.Height
    82.    
    83.     If Err Then                         ' passed bad parameters or
    84.         Err.Clear                       ' passed object that has no ScaleMode property (i.e., VB Frame)
    85.     Else
    86.         With thePic                     ' render, the (destDC) below and variables declared as Single needed, else type mismatch errors occur
    87.             .Render (destDC), destX, destY, destWidth, destHeight, _
    88.                 srcX, .Height - srcY, srcWidth, -srcHeight, ByVal 0&
    89.         End With                        ' return success/failure
    90.         If Err Then Err.Clear Else RenderStdPicture = True
    91.     End If
    92.     On Error GoTo 0
    93.    
    94. End Function

    Edited: Short version, no resizing, scaling, positioning, or any other options. Just draw picture at 0,0 coordinates on any DC
    Code:
       ' destDC can be any DC
        Dim thePic As stdPicture
        Set thePic = LoadPicture("C:\Images\Screenshots\image1002.jpg")
        With thePic
            .Render (destDC), 0&, 0&, ScaleX(.Width, vbHimetric, vbPixels), ScaleY(.Height, vbHimetric, vbPixels), _
                0&, .Height, .Width, -.Height, ByVal 0&
        End With
    Edited: Pointed out in post #8 below, we should use Single vartypes for our variables we plan on passing to .Render
    Last edited by LaVolpe; Dec 28th, 2014 at 11:56 PM. Reason: updated comments/sample code
    Insomnia is just a byproduct of, "It can't be done"

    Classics Enthusiast? Here's my 1969 Mustang Mach I Fastback. Her sister '67 Coupe has been adopted

    Newbie? Novice? Bored? Spend a few minutes browsing the FAQ section of the forum.
    Read the HitchHiker's Guide to Getting Help on the Forums.
    Here is the list of TAGs you can use to format your posts
    Here are VB6 Help Files online


    {Alpha Image Control} {Memory Leak FAQ} {Unicode Open/Save Dialog} {Resource Image Viewer/Extractor}
    {VB and DPI Tutorial} {Manifest Creator} {UserControl Button Template} {stdPicture Render Usage}

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width