Results 1 to 10 of 10

Export range as JPG

Threaded View

  1. #1
    Registered User
    Join Date
    10-17-2006
    Location
    Belgium
    Posts
    13

    Export range as JPG

    Hi all,
    Using and adapting some from http://www.mvps.org/dmcritchie/excel/xl2gif.htm and http://www.ozgrid.com/forum/showthread.php?t=88851 I succeeded in exporting name ranges as jpg's.
    However, I still have a 'problem' : I would like to set the dimensions of the jpg in code.
    Is there any help on the way ?
    Thanks
    Eddie

    An additional question on this subject.
    The ranges I am exported have a green background (for publishing on a website). When I do the export in Excel XP, everything looks fine (except for the automatic sizing), but when I use Excel 2007 there is a white border around the jpg.
    Any ideas about this.
    Thanks again.
    Eddie
    My code :
    Public Sub JPG_Snapshot(strEXP As String, FileSaveName As String)
    'Adapted from :
    'Harold Staff -- see http://www.mvps.org/dmcritchie/excel/xl2gif.htm
    'XL2GIF_module -- GIF_Snapshot
    'modified http://www.ozgrid.com/forum/showthread.php?t=88851
    'changed from GIF to JPG
    'procedures : ImageContainer_init, JPG_Snapshot
    'par :container, wbContainer,strGraph, wbSource
    'Eddie 06/10/2008
    
    'Inputs :
    ' - strEXP       : range to be exported as JPG
    ' - FileSaveName : path and filename
    
        Dim SaveName As Variant
        Dim Hi As Long
        Dim Wi As Long
    
        Set wbSource = ActiveWorkbook
        ImageContainer_init
        wbSource.Activate
    
        SaveName = FileSaveName
        If SaveName = False Then
            GoTo ForgetIt
        End If
        If InStr(SaveName, ".") Then SaveName = Left(SaveName, InStr(SaveName, ".") - 1)
        Range(strEXP).Select
        Selection.CopyPicture Appearance:=xlScreen, Format:=xlBitmap
    
        Hi = Selection.Height
        Wi = Selection.Width
            
        wbContainer.Activate
        ActiveSheet.ChartObjects(1).Activate
    
        strGraph = Mid(ActiveChart.Name, Len(ActiveSheet.Name) + 2)
    
        ActiveSheet.Shapes(strGraph).Height = (Hi - 0.75)
        ActiveSheet.Shapes(strGraph).Width = (Wi - 4.25)
    
        ActiveChart.Paste
    
        With Selection.ShapeRange
            .Top = -4.25
            .Left = -4.25
            .Fill.Visible = msoTrue
            .Fill.Solid
            .Fill.ForeColor.SchemeColor = 65
        End With
    
        ActiveChart.Export Filename:=LCase(SaveName) & ".jpg", FilterName:="JPEG"
        ActiveChart.Pictures(1).Delete
        intExp = 1
        wbSource.Activate
        ActiveSheet.Protect
    
    ForgetIt:
        On Error Resume Next
        Application.StatusBar = False
        wbContainer.Saved = True
        wbContainer.Close
    End Sub
    Private Sub ImageContainer_init()
        Workbooks.Add (1)
        ActiveSheet.Name = "JPGContainer"
        Charts.Add
        ActiveChart.ChartType = xlColumnClustered
        ActiveChart.SetSourceData Source:=Worksheets(1).Range("A1")
        ActiveChart.Location Where:=xlLocationAsObject, Name:="JPGContainer"
        ActiveChart.ChartArea.ClearContents
        Set wbContainer = ActiveWorkbook
        Set container = ActiveChart
    End Sub
    Last edited by strep21; 10-26-2008 at 08:42 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1