+ Reply to Thread
Results 1 to 3 of 3

Extract Images To File From Excel

Hybrid View

  1. #1
    Registered User
    Join Date
    03-19-2019
    Location
    Cumbria
    MS-Off Ver
    Office 365
    Posts
    10

    Extract Images To File From Excel

    19-03-2021 11-58-24.jpg

    I am creating QR Codes in excel and wondered if there is a way to extract the images from the worksheet to folder to store.

  2. #2
    Valued Forum Contributor
    Join Date
    09-30-2018
    Location
    Vlaams Brabant Belgium
    MS-Off Ver
    365
    Posts
    456

    Re: Extract Images To File From Excel

    Could you provide a sample workbook with random QR codes so we can build a Macro on that?
    Make sure its a copy layout of your original layout else you will need to change the code
    Please be as complete as possible in your asking so it may save use all the time to rework the solution because you didn't give all the requirements. If you have a layout in mind please work it out first so we can adapt our solution to it. Thanks.
    If you have been helped, maybe you could click the *

  3. #3
    Forum Expert KOKOSEK's Avatar
    Join Date
    08-03-2018
    Location
    Pole in Yorkshire, UK
    MS-Off Ver
    365/2013
    Posts
    2,765

    Re: Extract Images To File From Excel

    I've found something in my drawer:


    Sub ExportAllPictures()
        Dim MyChart As Chart
        Dim n As Long, shCount As Long
        Dim Sht As Worksheet
        Dim pictureNumber As Integer
    
        Application.ScreenUpdating = False
        pictureNumber = 1
        For Each Sht In ActiveWorkbook.Sheets
            shCount = Sht.Shapes.Count
            If Not shCount > 0 Then Exit Sub
    
            For n = 1 To shCount
                'If InStr(Sht.Shapes(n).Name, "Picture") > 0 Then
                    'create chart as a canvas for saving this picture
                    Set MyChart = Charts.Add
                    MyChart.Name = "TemporaryPictureChart"
                    'move chart to the sheet where the picture is
                    Set MyChart = MyChart.Location(Where:=xlLocationAsObject, Name:=Sht.Name)
    
                    'resize chart to picture size
                    MyChart.ChartArea.Width = Sht.Shapes(n).Width
                    MyChart.ChartArea.Height = Sht.Shapes(n).Height
                    MyChart.Parent.Border.LineStyle = 0 'remove shape container border
    
                    'copy picture
                    Sht.Shapes(n).Copy
    
                    'paste picture into chart
                    MyChart.ChartArea.Select
                    MyChart.Paste
    
                    'save chart as jpg
                    MyChart.Export Filename:="z:\" & pictureNumber & ".jpg", FilterName:="jpg"   ' that's the place where all picture will be saved
                    pictureNumber = pictureNumber + 1
    
                    'delete chart
                    Sht.Cells(1, 1).Activate
                    Sht.ChartObjects(Sht.ChartObjects.Count).Delete
                'End If
            Next
        Next Sht
        Application.ScreenUpdating = True
    End Sub
    should works.
    Happy with my answer * Add Reputation.
    If You are happy with solution, please use Thread tools and mark thread as SOLVED.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. images as links to images saved in file
    By scottiex in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-16-2020, 04:07 PM
  2. [SOLVED] upload images in excel file
    By anilpatni1234 in forum Excel Programming / VBA / Macros
    Replies: 50
    Last Post: 05-01-2019, 04:27 AM
  3. Replies: 2
    Last Post: 07-25-2016, 03:39 AM
  4. Extract text from images in excel
    By Latha Mani in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-24-2014, 12:36 AM
  5. Replies: 9
    Last Post: 10-08-2013, 02:46 PM
  6. Can't extract images from Excel 2007 Document
    By jsteve01 in forum Excel General
    Replies: 10
    Last Post: 05-23-2013, 12:27 AM
  7. Excel File & Hyperlinking images
    By jacksonmathews in forum Excel General
    Replies: 2
    Last Post: 12-13-2008, 08:14 AM

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