Saving a picture

pcc

Well-known Member
Joined
Jan 21, 2003
Messages
1,382
Office Version
  1. 2021
Platform
  1. Windows
I have a workbook with various pictures in it, that I would like to save as .jpg files. If I set the macro recorder going, select the picture, then choose "Save as picture", enter the picture name, then "Save", it all seems to be fine. However, when I stop the macro recorder, and inspect the macro, all I get is

VBA Code:
Sub Macro5()
    Range("O10").Select
    ActiveSheet.Shapes.Range(Array("Picture 2")).Select
End Sub

Can anyone advise the best way to export the pictures as individual .jpg files? I can export them to Powerpoint via VB and then save the .ppt files as .jpgs, but I need to be able to assign specific names to the .jpgs. (Powerpoint just does Slide1, Slide2 etc). Hope someone can advise. Regards
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
With the following macro you save all the shapes of your sheet, just adjust the name of your sheet where you have the shapes and the name of the folder where you want to save the files.

VBA Code:
Sub savePics()
  Dim cht As ChartObject
  Dim shp As Shape
  Dim shA As Worksheet, shT As Worksheet
  Dim sPath As String
  
  Application.ScreenUpdating = False
  Application.DisplayAlerts = False
  
  Set shA = Sheets("Sheet1")        'Fit to the name of your sheet
  sPath = "C:\trabajo\examples\"    'Fit your folder, where you are going to save the files
  
  
  Sheets.Add(, Sheets(Sheets.Count)).Name = "Temp_jpg"
  Set shT = Sheets("Temp_jpg")
  shT.Select
  For Each shp In shA.Shapes
    shp.Copy
    With shT.ChartObjects.Add(Left:=shT.Range("B2").Left, Top:=shT.Range("B2").Top, _
                              Width:=shp.Width, Height:=shp.Height)
      .Activate
      .Chart.Paste
      .Chart.Export sPath & shp.Name & ".jpg", "jpg"
      .Delete
    End With
  Next
  shT.Delete
  
  Application.ScreenUpdating = True
End Sub

🧙‍♂️
 
Upvote 0
Solution
That's perfect. I just made a small change so that the .jpg file's name is based on the name of the sheet where the picture existed. Thank you so much. Muchas gracias.
Regards
 
Upvote 1

Forum statistics

Threads
1,222,532
Messages
6,166,602
Members
452,054
Latest member
ibale

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top