Please help! How to use a 2.3mb pic and change it to either 100x100 pix or

I have read a few posts but it isn't exactly what my problem is.
I have a 2.3mb (size2304x3072) pic of me on iPhoto (6.0.6) and I have joined a motorcycle forum that I would like to post a profile picture to but this is the note that is stated under the "browse" function when I am about to upload my pic Note: The maximum size of your custom image is 100 by 100 pixels or 50.0 KB (whichever is smaller).
So I did what I have read many times here and used "Export..." under the "File" menu and then a window opens with the tabs, "Facebook" "File Export" "Web Page" "Quicktime" ( I have uploaded pics to facebook and usually I size them by using "share" in Mail and basically choose from the 3 types of qualities but I don't think this is the proper way to do it) Anyway I then open the "File Export" tab and am left with putting in the width and height(the height automatically changes when I put numbers into the width part) sorry for the long question here. So basically I want to know how I can take my pic and change it 80x80 pixels or 100x100 pixels or change it to a 50kb pic (if I make it 50kb will the pixel dimensions change accordingly and vice versa?)Thank you, Karl

By emailing the photo to yourself from within iPhoto, you can get a choice of four different sizes (small, medium, large and original). Whichever one is closest to the size you're looking for, you can use that option and, when you receive the email message, save the attached image. But that's certainly not an elegant solution, never mind an exact one. In short, neither that method nor the Export command allows you to specify both a resolution and a file size in KB or MB. There are many other photo editing applications that offer better control over those attributes than iPhoto does. I recommend that you simply export copies of your pictures from iPhoto at original size, then open them in a different program and fine-tune the resolution and JPEG compression settings to achieve whatever combination of resolution and file size you need.
Message was edited by: eww

Similar Messages

  • Please help how to use WITH query in UPDATE

    Hi Experts,
    Please help me.
    Thanks.

    Not sure about your required output. But try using WITH clause query inside SET clause of UPDATE statement.
       UPDATE SALES_REVENUE SR
        SET
                 (SR.TODAY_REV,
                 SR.TODAY_MARGIN,
                 SR.TODAY_UNIT
                 ) =
    (WITH result_sum_temp
    AS(
        SELECT SALE_ID, IN_TEAM, 1 SALE_FLAG, loc, seg,
            SUM(REV * rate) AS sum_rev,
            SUM(MARGIN * rate) AS sum_mar,
            SUM(UNIT) AS SUM_UNIT
        FROM SALES
        WHERE (IGNORED IS NULL OR IGNORED <> 'Y')
        AND SALE_SPOT = 7
        AND SALE_ID = 375
        AND SALE_MODEL = 'D'
        AND IN_TEAM IS NOT NULL AND loc IS NOT NULL
        GROUP BY SALE_ID, IN_TEAM, loc, seg
         UNION ALL
        SELECT SALE_ID, OUT_TEAM, 2 SALE_FLAG, loc, seg,
            SUM(REV * rate) AS sum_rev,
            SUM(MARGIN * rate) AS sum_mar,
            SUM(UNIT) AS SUM_UNIT
        FROM SALES
        WHERE (IGNORED IS NULL OR IGNORED <> 'Y')
        AND SALE_SPOT = 2
        AND SALE_ID = 375
        AND SALE_MODEL = 'D'
        AND OUT_TEAM IS NOT NULL AND loc IS NOT NULL
        GROUP BY SALE_ID, OUT_TEAM, loc, seg)
                    (SELECT   t.sum_rev, t.sum_mar, t.sum_unit
                       FROM   result_sum_temp t
                      WHERE       SR.SALE_ID = t.SALE_ID
                              AND SR.team_id = t.team_id
                              AND SR.SALE_FLAG = t.SALE_FLAG
                              AND SR.SEG = t.seg
                              AND SR.loc = t.loc
                              AND t.SALE_ID = 255)
        WHERE   SR.SALE_SPOT = 890
                AND SR.SALE_ID = 255
                AND (SR.SALE_ID, SR.team_id, SR.sale_flag, SR.SEGMENT, SR.LOB) IN
                          (SELECT   SALE_ID,
                                    team_id,
                                    sale_flag,
                                    seg,
                                    loc
                             FROM   result_sum_temp));

  • Please Help - How to pass Table objects as input and output parameters using VC++

    Please help me by giving a sample code to call the procedure
    GetClassInstanceProperties from a VC++ application using
    Oracle Objects for OLE
    CREATE OR REPLACE TYPE TY_INST_ID_PROP_PAIR AS OBJECT
    (INST_ID CHAR(38), PROP_ID CHAR(38), VALUE XMLTYPE);
    CREATE OR REPLACE PACKAGE DBMS_PROPERTYSTORE
    AUTHID CURRENT_USER
    AS
         --Used to return the ids from the functions
         TYPE tt_UUIDs IS TABLE OF char(38) index by binary_integer;
         TYPE tt_inst_id_prop_pairs is table of ty_inst_id_prop_pair index by binary_integer;
         PROCEDURE GetClassInstanceProperties(ClassId IN char, Prop_Ids in TT_UUIDs,
    Inst_Id_Prop_Pairs out TT_Inst_Id_Prop_Pair);
    END DBMS_PROPERTYSTORE;
    CREATE OR REPLACE PACKAGE BODY DBMS_PROPERTYSTORE AS
         PROCEDURE GetClassInstanceProperties
              ClassId IN char,
              Prop_Ids in TT_UUIDs,
              Inst_Id_Prop_Pairs out TT_INST_ID_PROP_PAIR
         AS
         BEGIN
              --Return the instanceid,propertyid and values for a certain class
              --only return those properties that in the user supplied Prop_ids table
              FOR I in Prop_Ids.FIRST..Prop_Ids.LAST loop
                   select TY_Inst_Id_Prop_Pair(i.Inst_Id,p.Prop_Id,p.Value) into Inst_Id_Prop_Pairs(I)
                        from TBL_Instance i, table(Prop_Pairs) p
                        where I.Cls_Id.Cls_Id=ClassID
                        and p.Prop_Id = Prop_Ids(I);
              END LOOP;
         EXCEPTION
              WHEN NO_DATA_FOUND THEN
                   raise_application_error(-20100, 'No data found');
              WHEN OTHERS THEN
                   raise_application_error(-20200, SQLERRM);
         END GetClassInstanceProperties;
    END DBMS_PROPERTYSTORE;

    HI
    Go to the lay out of your screen and doublr click on the table control fields, you can get the Properties/Attribute of the screen or table control Fields
    Assing a Group GRP1 for all the fields i n the table control.
    in PBO
    if ok_code = 'INPUT'.
    LOOP AT SCREEN.
    IF screen-grp1 = 'GRP1'.
    screen-input = 1.
    modify screen.
    endif.
    ENDLOOP.
    elseif ok_code = 'OUTPUT'.
    LOOP AT SCREEN.
    if screen-grp1 = 'GRP1'.
    screen-input = 0.
    modify screen.
    endif.
    endloop.
    endif.
    Regards
    Ramchander Rao.K
    Edited by: Ramchander Krishnamraju on Aug 8, 2009 5:27 AM

  • Please help - Can not use stored procedure with CTE and temp table in OLEDB source

    Hi,
       I am going to create a simple package. It has OLEDB source , a Derived transformation and a OLEDB Target database.
    Now, for the OLEDB Source, I have a stored procedure with CTE and there are many temp tables inside it. When I give like EXEC <Procedure name> then I am getting the error like ''The metadata  could not be determined because statement with CTE.......uses
    temp table. 
    Please help me how to resolve this ?

    you write to the temp tables that get created at the time the procedure runs I guess
    Instead do it a staged approach, run Execute SQL to populate them, then pull the data using the source.
    You must set retainsameconnection to TRUE to be able to use the temp tables
    Arthur My Blog

  • I want to change my apple id password but I forgot the security questions please help me some using my icloud I'd

    I want to change my apple id password but I forgot the security questions please help me some using my icloud I'd and if confirmation is must so please phone number is mine please send a code please help me my apple

    Welcome to the Apple community.
    If you are unable to remember your password, security questions, don’t have access to your rescue address or are unable to reset your password for whatever reason, your only option is to contact AppleCare, upon speaking to an operator you should explain that your problem is related to your Apple ID, this way you will not be charged for assistance, even if you don’t have an AppleCare plan.
    The operator will take you through some steps you may have already tried, however they need to be sure they have exhausted all usual approaches before trying to reset your account, so you should try to be helpful and show patience with the procedure.
    The operator will need to verify they are speaking to the account holder and may ask you some questions that only the account holder could know, and you will need to answer them if the process is to proceed.
    Once the operator has verified your identity they will send a message through to your device which contains an alpha numeric code, which you will need to read back to them.
    Once this has been completed they will send an email to your iCloud email address after a period of 24 hours, so you should check that mail is enabled in your devices iCloud settings.
    Upon receipt of the email, use the reset link provided to reset your password, after which you should be able to make the adjustments to iCloud that you wish to do.

  • Hi, when ever I'm using 3G, on my Iphone4 sim stops working and Network is lost, this started after I updated my phone with  6.0.1(10A523)version. Please help how to solve this problem.

    Hi, when ever I'm using 3G, on my Iphone4 sim stops working and network is lost, this started after I updated my phone with  6.0.1(10A523)version. Please help how to solve this problem. Thanks.

    Photos/videos in the Camera Roll are not synced. Photos/videos in the Camera Roll are not touched with the iTunes sync process. Photos/videos in the Camera Roll can be imported by your computer which is not handled by iTunes. Most importing software includes an option to delete the photos/videos from the Camera Roll after the import process is complete. If is my understanding that some Windows import software supports importing photos from the Camera Roll, but not videos. Regardless, the import software should not delete the photos/videos from the Camera Roll unless you set the app to do so.
    Photos/videos in the Camera Roll are included with your iPhone's backup. If you synced your iPhone with iTunes before the videos on the Camera Roll went missing and you haven't synced your iPhone with iTunes since they went missing, you can try restoring the iPhone with iTunes from the iPhone's backup. Don't sync the iPhone with iTunes again and decline the prompt to update the iPhone's backup after selecting Restore.

  • After updating my Macbook Pro retina display to os x yosemite 10.10.2, the mause and track pad locks, and do not respond especially when using the Mac for a long period, please help, how can I solve this, I do not like feel like in windows, so I paid

    after updating my Macbook Pro retina display to os x yosemite 10.10.2, the mause and track pad locks, and do not respond especially when using the Mac for a long period, please help, how can I solve this, I do not like feel like in windows, so I paid good money for this mack, I feel calm

    Hi Buterem,
    I'm sorry to hear you are having issues with your MacBook Pro since your recent Yosemite update. I also apologize, I'm a bit unclear on the exact nature of the issue you are describing. If you are having intermittent but persistent responsiveness issues with your mouse or trackpad, you may want to try using Activity Monitor to see if these incidents correspond to occupied system resources, especially system memory or CPU. You may find the following article helpful:
    How to use Activity Monitor - Apple Support
    If the entire system hangs or locks up (for example, if the system clock freezes and stops counting up), you may also be experiencing some variety of Kernel Panic. If that is the case, you may also find this article useful:
    OS X: When your computer spontaneously restarts or displays "Your computer restarted because of a problem." - Apple Support
    Regards,
    - Brenden

  • I bought a used iphone from a friend and I am not able to use it in Ethiopia. It is carrier blocked. Can you please help how could I unlock my iphone 4?.

    I bought a used iphone from a friend and I am not able to use it in Ethiopia. It is carrier blocked. Can you please help how could I unlock my iphone 4?.

    Unlikely as you do not meet there requirements for unlocking.
    Have your friend the provided the phone contact them.  Based on your statements I am concluding he was or still is an AT&T customer, that is one of the requirements of getting the device unlocked.

  • Please Help,how do i get my iphone 4 to play all my songs from icloud, it is currently only playing just a smal number of songs from my library which is stored in icloud.

    Please Help,how do i get my iphone 4 to play all my songs from icloud, it is currently only playing just a smal number of songs from my library which is stored in icloud.

    There are a number of OS X apps, many free, that will save your messages, allowing to view and print them. 
    http://www.softwarebbs.com/wiki/How_to_transfer_SMS_from_iPhone_to_Mac,_backup_i Phone_SMS_message_on_Mac
    Google, for other options
    Your "other" of 6 GB may include corrupted data or file sytem errors. If after removing the messages there is still >2GB, you will need to restore the phone in iTunes, first using a backup (made after deleting the messages) and if needed as a new iPhone.
    iTunes: Restoring iOS software

  • Please help...I was downloading my pics from the SD card. I then I highlighted 5 pics and selected erase, once I selected erase 20 other pics was also erase. I need to know how can those erase pics be recovered? Please Help!

    Please help...I was downloading my pics from the SD card. I then I highlighted 5 pics and selected erase, once I selected erase 20 other pics was also erase. I need to know how can those erase pics be recovered? Please Help!

    You will need data recovery software. See this post:
                                                                                       Re: I accidentally lost 3 weeks of photos, how do I recover them?                                            
    And please send feedback to Apple: This is a bug. Only the imported photos should have been deleted, not all photos on the card. You can use this form: Apple - iPhoto - Feedback

  • Hi, please help my other daughter her ipod touch is disabled connect to itunes after say its itunes couldnt connect to the ipod touch coz its is locked with a passcode?? please help how...

    hi, my daughter hers ipod touch is disabled connect to itunes after say its itunes couldnot connect to the "ipod touch" because its is locked with a passcode please help how to fix connect...i did turn off her ipod touch put usb back on there same in doenot say still ipod is disabled i dont understand please help how???

    If You Are Locked Out Or Have Forgotten Your Passcode or Just Need to Restore Your Device
      1. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
      2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
      3. iOS- Understanding passcodes
         If you have forgotten your Restrictions code, then follow the instructions
         below but DO NOT restore any previous backup. If you do then you will
         simply be restoring the old Restrictions code you have forgotten. This
         same warning applies if you need to restore a clean system.
    A Complete Guide to Restore or Recover Your iDevice (if You Forget Your Passcode)
    If you need to restore your device or ff you cannot remember the passcode, then you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and re-sync the data from the device (or restore from a backup). If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present. Refer to Updating and restoring iPhone, iPad and iPod touch software.
    Try restoring the iOS device if backing up and erasing all content and settings doesn't resolve the issue. Using iTunes to restore iOS devices is part of standard isolation troubleshooting. Restoring your device will delete all data and content, including songs, videos, contacts, photos, and calendar information, and will restore all settings to their factory condition.
    Before restoring your iOS device, Apple recommends that you either sync with iTunes to transfer any purchases you have made, or back up new data (data acquired after your last sync). If you have movie rentals on the device, see iTunes Store movie rental usage rights in the United States before restoring.
    Follow these steps to restore your device:
         1. Verify that you are using the latest version of iTunes before attempting to update.
         2. Connect your device to your computer.
         3. Select your iPhone, iPad, or iPod touch when it appears in iTunes under Devices.
         4. Select the Summary tab.
         5. Select the Restore option.
         6. When prompted to back up your settings before restoring, select the Back Up
             option (see in the image below). If you have just backed up the device, it is not
             necessary to create another.
         7. Select the Restore option when iTunes prompts you (as long as you've backed up,
             you should not have to worry about restoring your iOS device).
         8. When the restore process has completed, the device restarts and displays the Apple
             logo while starting up:
               After a restore, the iOS device displays the "Connect to iTunes" screen. For updating
              to iOS 5 or later, follow the steps in the iOS Setup Assistant. For earlier versions of
              iOS, keep your device connected until the "Connect to iTunes" screen goes away or
              you see "iPhone is activated."
         9. The final step is to restore your device from a previous backup. If you do not have a
              backup to restore, then restore as New.
    If you are restoring to fix a forgotten Restrictions Code or as a New device, then skip Step 9 and restore as New.

  • Please help how to execute jfree......

    please help how to execute[b] jfree  programs
    step by step procedure.....
    package org.jfree.chart.demo;
    import org.jfree.chart.ChartFactory;
    import org.jfree.chart.ChartPanel;
    import org.jfree.chart.JFreeChart;
    import org.jfree.chart.axis.CategoryAxis;
    import org.jfree.chart.axis.CategoryLabelPosition;
    import org.jfree.chart.axis.CategoryLabelPositions;
    import org.jfree.chart.axis.CategoryLabelWidthType;
    import org.jfree.chart.plot.CategoryPlot;
    import org.jfree.chart.plot.PlotOrientation;
    import org.jfree.data.category.CategoryDataset;
    import org.jfree.data.category.DefaultCategoryDataset;
    import org.jfree.text.TextBlockAnchor;
    import org.jfree.ui.ApplicationFrame;
    import org.jfree.ui.RectangleAnchor;
    import org.jfree.ui.RefineryUtilities;
    import org.jfree.ui.TextAnchor;
    import org.jfree.util.Log;
    import org.jfree.util.PrintStreamLogTarget;
    * A simple demonstration application showing how to create a horizontal 3D bar chart using data
    * from a {@link CategoryDataset}.
    public class BarChart3DDemo2 extends ApplicationFrame {
        // * JFREECHART DEVELOPER GUIDE                                               *
        // * The JFreeChart Developer Guide, written by David Gilbert, is available   *
        // * to purchase from Object Refinery Limited:                                *
        // * http://www.object-refinery.com/jfreechart/guide.html                     *
        // * Sales are used to provide funding for the JFreeChart project - please    *
        // * support us so that we can continue developing free software.             *
         * Creates a new demo.
         * @param title  the frame title.
        public BarChart3DDemo2(final String title) {
            super(title);
            // create the chart...
            final DefaultCategoryDataset dataset = new DefaultCategoryDataset();
            dataset.addValue(23.0, "Series 1", "London");
            dataset.addValue(14.0, "Series 1", "New York");
            dataset.addValue(14.0, "Series 1", "Istanbul");
            dataset.addValue(14.0, "Series 1", "Cairo");
            dataset.addValue(13.0, "Series 2", "London");
            dataset.addValue(19.0, "Series 2", "New York");
            dataset.addValue(19.0, "Series 2", "Istanbul");
            dataset.addValue(19.0, "Series 2", "Cairo");
            dataset.addValue(7.0, "Series 3", "London");
            dataset.addValue(9.0, "Series 3", "New York");
            dataset.addValue(9.0, "Series 3", "Istanbul");
            dataset.addValue(9.0, "Series 3", "Cairo");
            final JFreeChart chart = createChart(dataset);
            // add the chart to a panel...
            final ChartPanel chartPanel = new ChartPanel(chart);
            chartPanel.setPreferredSize(new java.awt.Dimension(500, 270));
            setContentPane(chartPanel);
         * Creates a chart.
         * @param dataset  the dataset.
         * @return The chart.
        private JFreeChart createChart(final CategoryDataset dataset) {
            final JFreeChart chart = ChartFactory.createBarChart3D(
                "3D Bar Chart Demo 2",       // chart title
                "Category",                  // domain axis label
                "Value",                     // range axis label
                dataset,                     // data
                PlotOrientation.HORIZONTAL,  // orientation
                true,                        // include legend
                true,                        // tooltips
                false                        // urls
            final CategoryPlot plot = chart.getCategoryPlot();
            plot.setForegroundAlpha(1.0f);
            // left align the category labels...
            final CategoryAxis axis = plot.getDomainAxis();
            final CategoryLabelPositions p = axis.getCategoryLabelPositions();
            final CategoryLabelPosition left = new CategoryLabelPosition(
                RectangleAnchor.LEFT, TextBlockAnchor.CENTER_LEFT,
                TextAnchor.CENTER_LEFT, 0.0,
                CategoryLabelWidthType.RANGE, 0.30f
            axis.setCategoryLabelPositions(CategoryLabelPositions.replaceLeftPosition(p, left));
            return chart;       
         * Starting point for the demonstration application.
         * @param args  ignored.
        public static void main(final String[] args) {
            Log.getInstance().addTarget(new PrintStreamLogTarget());
            final BarChart3DDemo2 demo = new BarChart3DDemo2("3D Bar Chart Demo 2");
            demo.pack();
            RefineryUtilities.centerFrameOnScreen(demo);
            demo.setVisible(true);
    }this is the first time i'm trying to execute jfree programs...
    regards,
    R.Raghavan

    here's error message
    E:\raghav>javac BarChart3DDemo2.java
    BarChart3DDemo2.java:3: cannot find symbol
    symbol : class ChartFactory
    location: package org.jfree.chart
    import org.jfree.chart.ChartFactory;
    ^
    BarChart3DDemo2.java:4: cannot find symbol
    symbol : class ChartPanel
    location: package org.jfree.chart
    import org.jfree.chart.ChartPanel;
    ^
    BarChart3DDemo2.java:5: cannot find symbol
    symbol : class JFreeChart
    location: package org.jfree.chart
    import org.jfree.chart.JFreeChart;
    ^
    BarChart3DDemo2.java:6: package org.jfree.chart.axis does not exist
    import org.jfree.chart.axis.CategoryAxis;
    ^
    BarChart3DDemo2.java:7: package org.jfree.chart.axis does not exist
    import org.jfree.chart.axis.CategoryLabelPosition;
    ^
    BarChart3DDemo2.java:8: package org.jfree.chart.axis does not exist
    import org.jfree.chart.axis.CategoryLabelPositions;
    ^
    BarChart3DDemo2.java:9: package org.jfree.chart.axis does not exist
    import org.jfree.chart.axis.CategoryLabelWidthType;
    ^
    BarChart3DDemo2.java:10: package org.jfree.chart.plot does not exist
    import org.jfree.chart.plot.CategoryPlot;
    ^
    BarChart3DDemo2.java:11: package org.jfree.chart.plot does not exist
    import org.jfree.chart.plot.PlotOrientation;
    ^
    BarChart3DDemo2.java:12: package org.jfree.data.category does not exist
    import org.jfree.data.category.CategoryDataset;
    ^
    BarChart3DDemo2.java:13: package org.jfree.data.category does not exist
    import org.jfree.data.category.DefaultCategoryDataset;
    ^
    BarChart3DDemo2.java:14: package org.jfree.text does not exist
    import org.jfree.text.TextBlockAnchor;
    ^
    BarChart3DDemo2.java:15: package org.jfree.ui does not exist
    import org.jfree.ui.ApplicationFrame;
    ^
    BarChart3DDemo2.java:16: package org.jfree.ui does not exist
    import org.jfree.ui.RectangleAnchor;
    ^
    BarChart3DDemo2.java:17: package org.jfree.ui does not exist
    import org.jfree.ui.RefineryUtilities;
    ^
    BarChart3DDemo2.java:18: package org.jfree.ui does not exist
    import org.jfree.ui.TextAnchor;
    ^
    BarChart3DDemo2.java:19: package org.jfree.util does not exist
    import org.jfree.util.Log;
    ^
    BarChart3DDemo2.java:20: package org.jfree.util does not exist
    import org.jfree.util.PrintStreamLogTarget;
    ^
    BarChart3DDemo2.java:27: cannot find symbol
    symbol: class ApplicationFrame
    public class BarChart3DDemo2 extends ApplicationFrame {
    ^
    BarChart3DDemo2.java:80: cannot find symbol
    symbol : class CategoryDataset
    location: class org.jfree.chart.demo.BarChart3DDemo2
    private JFreeChart createChart(final CategoryDataset dataset) {
    ^
    BarChart3DDemo2.java:80: cannot find symbol
    symbol : class JFreeChart
    location: class org.jfree.chart.demo.BarChart3DDemo2
    private JFreeChart createChart(final CategoryDataset dataset) {
    ^
    BarChart3DDemo2.java:50: cannot find symbol
    symbol : class DefaultCategoryDataset
    location: class org.jfree.chart.demo.BarChart3DDemo2
    final DefaultCategoryDataset dataset = new DefaultCategoryDataset();
    ^
    BarChart3DDemo2.java:50: cannot find symbol
    symbol : class DefaultCategoryDataset
    location: class org.jfree.chart.demo.BarChart3DDemo2
    final DefaultCategoryDataset dataset = new DefaultCategoryDataset();
    ^
    BarChart3DDemo2.java:64: cannot find symbol
    symbol : class JFreeChart
    location: class org.jfree.chart.demo.BarChart3DDemo2
    final JFreeChart chart = createChart(dataset);
    ^
    BarChart3DDemo2.java:67: cannot find symbol
    symbol : class ChartPanel
    location: class org.jfree.chart.demo.BarChart3DDemo2
    final ChartPanel chartPanel = new ChartPanel(chart);
    ^
    BarChart3DDemo2.java:67: cannot find symbol
    symbol : class ChartPanel
    location: class org.jfree.chart.demo.BarChart3DDemo2
    final ChartPanel chartPanel = new ChartPanel(chart);
    ^
    BarChart3DDemo2.java:82: cannot find symbol
    symbol : class JFreeChart
    location: class org.jfree.chart.demo.BarChart3DDemo2
    final JFreeChart chart = ChartFactory.createBarChart3D(
    ^
    BarChart3DDemo2.java:87: cannot find symbol
    symbol : variable PlotOrientation
    location: class org.jfree.chart.demo.BarChart3DDemo2
    PlotOrientation.HORIZONTAL, // orientation
    ^
    BarChart3DDemo2.java:82: cannot find symbol
    symbol : variable ChartFactory
    location: class org.jfree.chart.demo.BarChart3DDemo2
    final JFreeChart chart = ChartFactory.createBarChart3D(
    ^
    BarChart3DDemo2.java:93: cannot find symbol
    symbol : class CategoryPlot
    location: class org.jfree.chart.demo.BarChart3DDemo2
    final CategoryPlot plot = chart.getCategoryPlot();
    ^
    BarChart3DDemo2.java:97: cannot find symbol
    symbol : class CategoryAxis
    location: class org.jfree.chart.demo.BarChart3DDemo2
    final CategoryAxis axis = plot.getDomainAxis();
    ^
    BarChart3DDemo2.java:98: cannot find symbol
    symbol : class CategoryLabelPositions
    location: class org.jfree.chart.demo.BarChart3DDemo2
    final CategoryLabelPositions p = axis.getCategoryLabelPositions();
    ^
    BarChart3DDemo2.java:100: cannot find symbol
    symbol : class CategoryLabelPosition
    location: class org.jfree.chart.demo.BarChart3DDemo2
    final CategoryLabelPosition left = new CategoryLabelPosition(
    ^
    BarChart3DDemo2.java:100: cannot find symbol
    symbol : class CategoryLabelPosition
    location: class org.jfree.chart.demo.BarChart3DDemo2
    final CategoryLabelPosition left = new CategoryLabelPosition(
    ^
    BarChart3DDemo2.java:101: cannot find symbol
    symbol : variable RectangleAnchor
    location: class org.jfree.chart.demo.BarChart3DDemo2
    RectangleAnchor.LEFT, TextBlockAnchor.CENTER_LEFT,
    ^
    BarChart3DDemo2.java:101: cannot find symbol
    symbol : variable TextBlockAnchor
    location: class org.jfree.chart.demo.BarChart3DDemo2
    RectangleAnchor.LEFT, TextBlockAnchor.CENTER_LEFT,
    ^
    BarChart3DDemo2.java:102: cannot find symbol
    symbol : variable TextAnchor
    location: class org.jfree.chart.demo.BarChart3DDemo2
    TextAnchor.CENTER_LEFT, 0.0,
    ^
    BarChart3DDemo2.java:103: cannot find symbol
    symbol : variable CategoryLabelWidthType
    location: class org.jfree.chart.demo.BarChart3DDemo2
    CategoryLabelWidthType.RANGE, 0.30f
    ^
    BarChart3DDemo2.java:105: cannot find symbol
    symbol : variable CategoryLabelPositions
    location: class org.jfree.chart.demo.BarChart3DDemo2
    axis.setCategoryLabelPositions(CategoryLabelPositions.replaceLeftPosition(p, left));
    ^
    BarChart3DDemo2.java:118: cannot find symbol
    symbol : class PrintStreamLogTarget
    location: class org.jfree.chart.demo.BarChart3DDemo2
    Log.getInstance().addTarget(new PrintStreamLogTarget());
    ^
    BarChart3DDemo2.java:118: cannot find symbol
    symbol : variable Log
    location: class org.jfree.chart.demo.BarChart3DDemo2
    Log.getInstance().addTarget(new PrintStreamLogTarget());
    ^
    BarChart3DDemo2.java:120: cannot find symbol
    symbol : method pack()
    location: class org.jfree.chart.demo.BarChart3DDemo2
    demo.pack();
    ^
    BarChart3DDemo2.java:121: cannot find symbol
    symbol : variable RefineryUtilities
    location: class org.jfree.chart.demo.BarChart3DDemo2
    RefineryUtilities.centerFrameOnScreen(demo);
    ^
    BarChart3DDemo2.java:122: cannot find symbol
    symbol : method setVisible(boolean)
    location: class org.jfree.chart.demo.BarChart3DDemo2
    demo.setVisible(true);
    ^
    44 errors

  • My ipad2 is asking old id password, when i go to forget password link for that id then I am not getting any mail to reset the same. Please help how can i remove or change the old id.

    my ipad2 is asking old id password, when i go to forget password link for that id then I am not getting any mail to reset the same. Please help how can i remove or change the old id.

    You cannot remove or change the old ID. This is Find My iPhone Activation Lock. You need to recover the credentials for the Apple ID originally used to activate the iPad.
    Check your spam and junk folders.

  • My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    In the Music tab of iTunes, do you have 'Include Voice Memos' checked?

  • After installing iPhone Configutilities in my Mac, Personal Hotspot using USB is not working! Please help, I am using 10.7 Lion OS

    After installing iPhone Configutilities in my Mac, Personal Hotspot using USB is not working! Please help, I am using 10.7 Lion OS

    Did you talk to your carrier?

Maybe you are looking for