How do I save a chart as a jpeg?

How do I save a chart as a jpeg. In excel I right click, "save as picture." Not seeing anything like that in Numbers.

Here is a script dedicated to Numbers.
You will find explanations in French and English at the beginning.
CAUTION :
it requires the installation of a Unix command file which gives us the ability to check if a modifier key is depressed.
During my tests, only shift or fn keys were correctly detected.
Maybe it was because I did my tests in the AppleScript Editor.
I choose the fn key which, as far as I know, is not used to define the area to save.
--{code}
--[SCRIPT subset_of_numbers_doc_to_jpeg]
Télécharger getModKey.zip depuis
http://allancraig.net/index.php?option=com_docman&Itemid=100
Décompacter puis déplacer le fichier getModKey dans le dossier
<VolumeDeDémarrage>:Users:<votreCompte>:UnixBins:
Il vous faudra peut-être créer le dossier UnixBins.
Détails complémentaires dans :
http://macscripter.net/viewtopic.php?id=33652
Enregistrer le script en tant que Script : subset_of_numbers_doc_to_jpeg.scpt
déplacer le fichier ainsi créé dans le dossier
<VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
Ouvrir un document Numbers et afficher la feuille dont une portion doit être enregistrée dans un fichier jpeg.
Aller au menu Scripts , choisir Numbers puis choisir “subset_of_numbers_doc_to_jpeg”
Le script affiche la feuille au format PDF dans Aperçu.
Sélectionnez la zone à enregistrer puis pressez la touche fn.
Le script copie la sélection dans le Presse-papiers, ferme le PDF complet,
crée un nouveau PDF à partir du Presse-papiers
puis ouvre le dialogue Enregistrer au format jpeg.
Il restera à définir le nom et la destination du fichier.
--=====
L’aide du Finder explique:
L’Utilitaire AppleScript permet d’activer le Menu des scripts :
Ouvrez l’Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
Cochez la case “Afficher le menu des scripts dans la barre de menus”.
Sous 10.6.x,
aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
--=====
Download getModKey.zip from
http://allancraig.net/index.php?option=com_docman&Itemid=100
Expand it then move the getModKey file into the folder
<startupVolume>:Users:<yourAccount>:UnixBins:
Maybe you would have to create the folder UnixBins.
Details available in :
http://macscripter.net/viewtopic.php?id=33652
Save the script as a Script: subset_of_numbers_doc_to_jpeg.scpt
Move the newly created file into the folder:
<startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
Open a Numbers document and display the sheet whose a subset must be saved in a jpeg file.
Go to the Scripts Menu, choose Numbers, then choose “subset_of_numbers_doc_to_jpeg”
The script display the sheet in a Preview's PDF window.
Select the area to save then press the fn key.
The script copy the selected area in the clipboard, close the full PDF,
create a new PDF from the clipboard's contents
then open a dialog to Save as jpeg.
Define the name and the storage location.
--=====
The Finder’s Help explains:
To make the Script menu appear:
Open the AppleScript utility located in Applications/AppleScript.
Select the “Show Script Menu in menu bar” checkbox.
Under 10.6.x,
go to the General panel of AppleScript Editor’s Preferences dialog box
and check the “Show Script menu in menu bar” option.
--=====
Yvan KOENIG (VALLAURIS, France)
2011/11/15
--=====
on run
          local nomFenetre, nbw
Check that the Unix command file getModKey is available in the folder <startupVolume>:Users:<yourAccount>:UnixBins: *)
          set flPth to ("" & (path to home folder) & "UnixBins:")
          tell application "System Events" to set maybe to exists disk item (flPth & "getModKey")
          if not maybe then
                    if not my parleAnglais() then
                              error "Please, install “getModKey” in the folder" & return & "“" & flPth & "” !"
                    else
                              error "Veuillez installer « getModKey » dans le dossier « " & flPth & " » !"
                    end if
          end if
          set flPth to quoted form of POSIX path of (flPth & "getModKey")
          tell application "Numbers" to activate
          tell application "System Events" to tell application process "Numbers"
Get the name of the frontmost standard window
so that we will not 'speak' to an inspector or to the Find dialog *)
                    set nomFenetre to name of first window whose subrole is "AXStandardWindow"
  keystroke "p" using {command down}
Wait the availability of the Print sheet *)
                    tell window nomFenetre
                              repeat until exists sheet 1
                                        delay 0.2
                              end repeat
                              tell sheet 1
  click first menu button
  click first menu item of menu 1 of first menu button
                              end tell -- sheet
                    end tell -- window
          end tell -- System Events
          tell application "Preview" to activate
          tell application "System Events" to tell application process "Preview"
                    set nbw to count of every window
                    repeat while nbw = (count windows)
                              delay 0.2
                    end repeat
Trigger the menu item Tools > Selection Tool *)
  keystroke "3" using {command down}
          end tell -- System Events
Now, select the area which must be saved in a jpeg file *)
Thanks to the command getModKey, loop until the fn key is depressed *)
          repeat
                    delay 0.2
                    if (do shell script flPth) = "131072" then exit repeat
          end repeat
The fn key was depressed so we may copy the defined area to the clipboard *)
          tell application "Preview" to activate
          tell application "System Events" to tell application process "Preview"
Empty the clipboard. So we will be able to check that the copy task is achieved *)
  set the clipboard to ""
Copy to clipboard *)
  keystroke "c" using {command down}
Loop waiting for the achievement of the Copy task *)
                    repeat
                              delay 0.2
                              try
  the clipboard as «class PDF »
                                        exit repeat (* Exit when the task is achieved *)
                              end try
                    end repeat
                    set nbw to count windows
Close the PDF window *)
  keystroke "w" using {command down}
Wait the achievement of the Close task *)
                    repeat while nbw = (count windows)
                              delay 0.2
                    end repeat
                    set nbw to count windows
Create New PDF from the clipboard *)
  keystroke "n" using {command down}
Wait the availability of the new PDF window *)
                    repeat while nbw = (count windows)
                              delay 0.2
                    end repeat
Get the name of the new window *)
                    set nomFenetre to name of window 1 --(first window whose subrole is "AXStandardWindow")
  keystroke "s" using {command down}
Wait the availability of the Save sheet *)
                    repeat until exists sheet 1 of window nomFenetre
                              delay 0.2
                    end repeat
                    tell sheet 1 of window nomFenetre
  -- properties of every UI elements
                              tell group 1
  click first pop up button
                                        delay 0.2
  -- properties of every menu item of menu 1 of first pop up button
  click menu item "JPEG" of menu 1 of first pop up button
                                        delay 0.2
                              end tell -- group
  -- click button 1  (* Click in the Save button *)
                    end tell -- sheet
          end tell -- System Events
end run
--=====
on parleAnglais()
          local z
          try
                    tell application "Numbers" to set z to localized string "Cancel"
          on error
                    set z to "Cancel"
          end try
          return (z is not "Annuler")
end parleAnglais
--=====
--[/SCRIPT]
--{code}
Of course, thanks to FastScripts, we may link a shortcut to the script.
Yvan KOENIG (VALLAURIS, France)  mardi 15 janvier 2011 19:04:38
iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
My iDisk is : <http://public.me.com/koenigyvan>
Please : Search for questions similar to your own before submitting them to the community

Similar Messages

  • Urgent - How can I save a Chart

    Hi,
    How can I save a Chart generated in forms as a BMP or JPG or other extension.
    I need to generate 12.000 Chart and I want to automatize it.
    Is there any bulti-in to save charts???
    Thanks

    Everything about using Motion, including exporting a video (and much more), is available either in the application or online:
    Help Menu> Motion 5 Help: see the Share Motion Projects chapter.
    The manual can also be found online here: http://www.apple.com/support/motion/
    Finally there is also this link to the manual: http://help.apple.com/motion/mac/5.1/

  • HT3705 How do I save a Pages document to jpeg so that I can share on social media?

    I have created a brochure and would like to post it on Facebook. How do I save a Pages document to jpeg so that I can share on social media and email? Do I have to save it as a jpeg or what other format can I save it in?

    Ashe,
    In Pages, Print to "PDF > Open PDF in Preview". From Preview, File > Export to the format or your choosing, one page at a time. For text, PNG would be better than JPG.
    Jerry

  • How do I save my .pdf files as .jpeg files?

    How do I save my .pdf files as .jpeg files? Do this require Acrobat Pro? I don't need all of the bells and whistles, just the ability to save as .jpeg. Please advise.

    There's no such thing as Acrobat Reader. If you have the free version then you have Adobe Reader. In which case, see my reply above.
    If you have Acrobat (Standard or Pro) then see Dave's reply above.

  • How do i save my document as a jpeg or other to put on the web?

    i cant figure out how to change a pdf into something else...a png OR jpeg OR something that i can post on the web as an image

    thanks, i tried that before, it wont work.  says its the wrong type of document AJ Murosky
    Desert Christian Archers, Inc.
          From: MW Design <[email protected]>
    To: AJ Murosky <[email protected]>
    Sent: Friday, May 15, 2015 8:58 PM
    Subject:  how do i save my document as a jpeg or other to put on the web?
    how do i save my document as a jpeg or other to put on the web?
    created by MW Design in InDesign - View the full discussionOpen the PDF in Photoshop and do the conversion from it. Mike If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7550305#7550305 and clicking ‘Correct’ below the answer Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7550305#7550305 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"  Start a new discussion in InDesign by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • How do I save modified RAW images in JPEG format?

    Hi,
    I have several RAW images that I mass modified with the "Camera Raw" editor (I modified one and applied the changes to all other images). How can I now save the modified images as JPEG images? I know I could open each file in Photoshop and save it as JPEG there, but that would take A LONG time.
    Thanks for any pointers!
         Mark

    They have to be opened, one by one, before the adjustments are applied and the image files saved, but the process can be automated.  For instance through the already included Image Processor, or Image Processor Pro, also pre-installed, or through Actions and Droplets you create yourself.

  • How do i save photos from iPhoto to jpeg

    when i import photos from my camera they save in the iphoto section but how do I then save those as jpeg files so that i can upload them to emails or to kodal gallery etc.

    Another easy method if you're only dealing with a small number of photos, just drag the best shots from  iPhoto to the desktop.  Then they're easy to find for uploads.  Delete off the desktop when your done.  (they're still in iPhoto).

  • How do i save a webpage as a jpeg?

    i know that on PC's there's a print screen button which alows you to capture a whole webpage as an image file is this possible to do on a mac? I am currently using safari.
    thanks

    QuickTimeKirk's solution is the simplest, since it will capture the entire web page.
    If you need a screenshot that preserves the layout precisely as it is seen in Safari, that's easily done with the keyboard shortcut Command-Shift-4. The cursor will change to a crosshairs icon. Tap the space bar and it will change to a camera icon. Click the camera-icon cursor in the window that you want to capture and the screenshot will be saved to your desktop as an image file.
    However, if only part of the web page is visible in your browser window, the screenshot will only capture that part, and you'll have to scroll down, make a second screenshot, repeat as necessary, and join the screenshots in an image editing program.
    Again, the PDF solution is obviously simpler if it doesn't need to look precisely as it does in Safari.
    Message was edited by: Rachel R

  • How do you edit a jpeg file and add callouts and save it again as a jpeg file?

    I opened a jpeg file in Acrobat Pro XI and edited the photo adding callouts. It was saved again as a PDF, and when reopened all of the callouts where there.  I tried to save it as a jpeg file, and when repoened all of the callouts were gone.  How do I save the file as a jpeg and have the callouts show?

    Hi Firepros1,
    You may try exporting file as PNG or TIFF instead of jpeg.
    Let me know if that helps.
    Regards,
    ~Pranav

  • How do I  save and re-use a fillable form once I have created it? It is a form i will use for multiple medcial clients I see, then print out and put in paper chart, and then do it again for another patient. - I just got Acrobat XI

    I've created a fillable form from a Word document, but how do I save and re-use a a fillable form once I have created it? It is a form I will use for multiple medical patients, printing out the filled in form to put in paper chart (no need to save filled out form), and then fill blank form again for another patient? - I just got acrobat X

    Thanks!
    That should also save the blank form for future re-use, right.?
    Can I also file the blank form in the file system, and then retrieve it as a blank form when I have a next patient need for it?
    Thanks
    Michael

  • How to save a chart after each iteration in a for loop?

    Hello,
    I have written code which initializes a spectrometer. Once initialized, if the "Capture" button is pushed, the spectrometer takes a new spectrum three times (see for loop) every second. This spectrum is displayed as a chart in my front panel. My code runs fine...it will update the spectrum every second.
    However, I want to be able to save each of these three iterations as separate graphs. Basically, I want to click "Capture" and have my code save three charts to a specified folder. How do I go about doing this?
    I've attached my VI.
    Thanks.
    Solved!
    Go to Solution.
    Attachments:
    Spectrometer Iteration.vi ‏444 KB

    Use Build Array to make a 2D Array of your X and Y data and use Write To Spreadsheet File to save the data.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to save JavaFX chart s as images

    how to save javafx charts as images. please help me in this.
    thanks in advance

    Here is my pie2D chart. how to svae it as image file
    Stage {
    title: "Pie Chart"
    scene: Scene {
    content: [
    PieChart {
    title: "What Is Your Favorite Pie?"
    titleFont: Font { size: 24 }
    data: [
    PieChart.Data {
    value: 21
    label: "Pumpkin"
    PieChart.Data {
    value: 33
    label: "Apple"
    PieChart.Data {
    value: 17
    label: "Cherry"
    PieChart.Data {
    value: 29
    label: "3.14159"
    }

  • How to create the custom charts?

    how to create a custom charts? for example the donut shapes, but for the data can be automatically adjust (like a available charts on keynote)

    Keynote and Numbers do not have a tool for making Donut Graphs. There are ways to make them using HTML, but I prefer to cheat:
    1 Create your first graph as a pie chart and add a circle of solid color to the center
    2. If you need more, take a screenshot of the pie chart with the center fill  and drag the screenshot into Preview - in Preview > Select Tool (pulldown from Toolbar) > Instant Alpha and remove the inner filled circle and outer fill then Save As > PNG with Alpha
    3. Drag your new hollow shape into Keynote. This chart can be placed over another pie chart with a filled center (the fill should match the background)
    Not as graceful as a special tool but can get the job done quickly - changing the data requires starting it over since at least one of your donuts my be an image rather than a pie chart with variable data.
    Try it. If you need more specific tools, Google Donut Shaped Charts for starts.
    Good luck

  • How can I call my chart in Forms6i on When Button Press Trigger?

    Hi Friends,
    I have make a chart in Graphic Builder 6i and save on path C:\graph\test.ogd
    Now I want to run this Chart from Form6i on When Button Press trigger.
    I have call my report in forms using this command on When Button Press trigger.
    Run_Product(reports,'C:\Cheema\Qdir_store\reports\pmms\sec_backlog',asynchronous,runtime,filesystem,TO_CHAR(NULL));
    So tell me How can I call my chart in Forms6i?
    Please reply me on urgent.
    Thanks,
    Shahzad

    Just to recall after a long break of couple of years..... Pls check out if not wrong.
    First of all you need to embeed the chart object on your layout window and make it visible = FALSE. This is a design time work. In the button press event, show the chart object by setting the visible property = TRUE.
    Note, i could not paste u the sample code as i don't have forms installation on my PC. The above states is a logic you can apply.

  • How to extract data from Chart History?

    Dear all, I have read a lot of posts, but still don't understand how to extract data from Chart history.
    Suppose you acquired 1024 points of data every time, then use "build array" to build an array, then send to intensity chart to show, then save the history into a .txt file,  but how to extact data from the file?
    How Labview store the data in the 2D history buffer?
    Anybody has any examples?

    The simplest would be to save the 2D array as a spreadsheet file, the read it back the same way.
    Maybe the attached simple example can give you some ideas (LabVIEW 7.1). Just run it. At any time, press "write to file". At any later time, you can read the save data into the second history chart.
    If you are worried about performance, it might be better to use binary files, but it will be a little more complicated. See how far you get.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    IntensityChartHistorySave.vi ‏79 KB

Maybe you are looking for

  • Database Development with JDeveloper tutorial

    When I run the EMP_FETCHER body I do not get a Run PL/SQL dialog. Has anyone else had this problem? I using JDeveloper 10.1.3.0.4, Oracle database 10g Express Edition and Windows XP PRO. Thanks

  • Why am I STILL getting "No AirPort card installed"?

    Guys, I am really struggling with my laptop. Here's what happened. My Macbook Pro 2009 13" was unexpectedly shutting down, freezing, etc. I took it into the Genius Bar and they ended up having to replace my hard drive bracket. Not terribly expensive,

  • Error when I try to edit a Page

    I successfully added the In Context editing code throughout mu site but when I try to edit the site I get the following error, I tried editing in different browsers and received the same error. Internal Server Error The server encountered an internal

  • Error on windows phone 8.1 application

    I'm using visual studio 2013 ,and  developed an application on windows phone 8.1 ,as a Reminder or Alarm , But i have one error that occurs which is : Error    1    Cannot find type System.Windows.Controls.Control in module System.Windows.dll Any Ide

  • Account Statement

    Hi, I have facing one problem in printing, that is I requested the SAP06 through the FB12(Account Statement) and Maintain the request through the F.64.Party Ledger is showing some format. But I want additional columns ( Document No. and other). How t