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.
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.
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 *
I've found something in my drawer:
should works.![]()
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
Happy with my answer * Add Reputation.
If You are happy with solution, please use Thread tools and mark thread as SOLVED.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks