How to reduce the image size of a jpeg image?

How do I reduce the size of an iphoto jpeg image?

What do you mean by size? The dimensions? The File size?
There are options depending on exactly what you want to do and why you want to do it.
In general: these are options in the File -> Export dialogue. The Jpeg Quality setting refers to file size, the Size option refers to dimensions.
Regards
TD

Similar Messages

  • How to reduce the barcode size

    hi
    How to reduce the barcode size in smartforms
    Thanks & Regards
    krishna rao

    Hai,
    Go to se73
    select system barcodes radi button
    click change button
    it wil moves to another screen .In that screen it wil show all Bar codes.
    select u r barcode from the list  click and change button.
    in this way u wil change barcode size.
    Reagards.
    kishore ale

  • How to reduce the database size based on MS SQL/Oracle?

    Hi,
    I had deleted severy clients via SCC5, but the database size is more and more bigger. Do you know how to reduce the database size.
    my platform is: NT, MS SQL 2005
                           NT, Oracle 10.2
    Best Regards,
    Simon Shen

    Hi Simon,
    In the case of SQL you need to check how many space free you have in your datafiles and the based on that you need to Shrink them using DBCC SHRINKFILE command.
    Find a couple of reference docs here,
    http://www.intermedia.net/support/kb/default.asp?id=996
    http://doc.ddart.net/mssql/sql70/dbcc_21.htm
    Also i'm pretty sure that if your check the properties of the datafiles in MSSQL Enterprise Manager you get a "Shrink" option.
    Regards
    Juan
    Please reward with points if helpful

  • How to reduce the font size of message composer in...

    Hi buddies,
    Please suggest me how to reduce the fontsize of my Nokia 6030's message composer .

    normally if the phone supports font, the settings can be found under :
    Menu >Messages > Message settings > Other settings > Font size.

  • How to reduce the font size of the title of grid ALV without using OOPS

    Hello
    i have a title which i have displayed in a grid layout using this code
    DATA: GRID_TITLE TYPE LVC_TITLE.
    GRID_TITLE = 'FACTORY OVERHEAD '
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
      I_GRID_TITLE                      = GRID_TITLE.
    Now i would like to reduce the font size of the text which is displayed "'FACTORY OVERHEAD '.
    how do i do that,i am new to abap.
    Thanks

    Hi,
    Set the font size to your requirement
    Go this below code.
    CLASS ZCL_GUI_ALV_GRID DEFINITION INHERITING FROM CL_GUI_ALV_GRID.
      PUBLIC SECTION.
        METHODS TITLE_SIZE.
      PRIVATE SECTION.
    ENDCLASS.                   
    Then use the above method in the Implementation part as .
    CLASS ZCL_GUI_ALV_GRID IMPLEMENTATION.
      METHOD TITLE_size.
        ME->SET_TITLE_SIZE( EXPORTING SIZE = 1
                            EXCEPTIONS ERROR = 1  ).
      ENDMETHOD.
    ENDCLASS.
    Now when your reference variable should be
    Data :GRID type ref to ZCL_GUI_ALV_GRID.
    and Create the Object as
    CREATE OBJECT GRID
               EXPORTING I_PARENT = G_CUSTOM_CONTAINER1.
    Before Calling Set_table_for_ first_display, Call the created method
    CALL METHOD GRID->TITLE_SIZE.

  • How to reduce the font size on my phone...do i do this from settings ?

    how do i reduce the font size on my phone...i cant remeber where i changed it..is it in settings ?

    Settings>General>Accessibility>Large Text

  • How To reduce the font size In OAF page

    Hi All,
    am developing the Custom Online PaySLip
    Client Want to take the PaySLip Page print In one Page
    Now It Z exceed of two pages.
    Please give me idea on reducing the font size
    Thanks In Advance
    t is a search page
    based on payperiods it will shows the paydetails
    I have taken 5 advance tables for pay details information
    and Item styles are Message Style Text
    CSSStyle csNum = new CSSStyle();
    csNum.setProperty("font-size","8");
    OAMessageStyledTextBean Payperiod = (OAMessageStyledTextBean)webBean.findChildRecursive("item36");
    Payperiod.setInlineStyle(csNum);
    I write the code like this, but it reduce the font size not column size,i want reduce the column Length
    is there any possibility?
    there is any another way
    please give me ur Suggestion
    Thanks In Advance
    Edited by: user641204 on Sep 19, 2008 4:55 AM

    It is a search page
    based on payperiods it will shows the paydetails
    I have taken 5 advance tables for pay details information
    and Item styles are Message Style Text
    CSSStyle csNum = new CSSStyle();
    csNum.setProperty("font-size","8");
    OAMessageStyledTextBean Payperiod = (OAMessageStyledTextBean)webBean.findChildRecursive("item36");
    Payperiod.setInlineStyle(csNum);
    I write the code like this, but it reduce the font size not column size,i want reduce the column Length
    is there any possibility?
    there is any another way
    please give me ur Suggestion
    Thanks In Advance

  • How to control the pixcel size in given tiff image

    Hai
    I loaded tiff image into the Frame by using the jai_core.jar and jai_codec.jar files. I am unable to control the pixcel size. It displaied default size. How to restract the pixcel on the image in Frame.
    import java.io.File;
    import java.io.IOException;
    import java.awt.Frame;
    import java.awt.image.RenderedImage;
    import javax.media.jai.widget.ScrollingImagePanel;
    import javax.media.jai.ImageLayout;
    import javax.media.jai.NullOpImage;
    import javax.media.jai.OpImage;
    import com.sun.media.jai.codec.SeekableStream;
    import com.sun.media.jai.codec.FileSeekableStream;
    import com.sun.media.jai.codec.TIFFDecodeParam;
    import com.sun.media.jai.codec.ImageDecoder;
    import com.sun.media.jai.codec.ImageCodec;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.imageio.ImageReadParam.*;
    class MultiPageRead extends JFrame
    ScrollingImagePanel panel;
    //     JFrame mainFrame = new JFrame();
         Container c;
         public MultiPageRead(String filename) throws IOException
    getContentPane();
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              pack();
              setTitle("Multi page TIFF Reader");
              setSize(980,1200);
              getContentPane();
    File file = new File(filename);
    SeekableStream s = new FileSeekableStream(file);
    TIFFDecodeParam param = null;
              ImageDecoder dec = ImageCodec.createImageDecoder("tiff", s, param);
    System.out.println("Number of images in this TIFF: " + dec.getNumPages());
              ImageLayout size = new ImageLayout(,0,12,12);
    // Which of the multiple images in the TIFF file do we want to load
    // 0 refers to the first, 1 to the second and so on.
    int imageToLoad = 0;
    RenderedImage op = new NullOpImage(dec.decodeAsRenderedImage(imageToLoad), null,
    OpImage.OP_IO_BOUND,
    size);
    // Display the original in a 800x800 scrolling window
    panel = new ScrollingImagePanel(op, 100, 200);
    getContentPane().add(panel);
         public static void main(String [] args)
    String filename = args[0];
    try {System.out.println("jfdfldjfldfjldjfjldjfjdjdjdjjdjdj");
              MultiPageRead window = new MultiPageRead(filename);
                        window.pack();
                        window.show();
              catch (java.io.IOException ioe)
              System.out.println(ioe);
    regards
    jaggayya

    Changing the fonts in Print using ABAP is not possible. as basic report output is a text editor.
    By changing "Customizing of Local Layout" will only change in display screen and not in print.
    One possible way to create a new printer formatr thry SPAD and use that format in while printing.
    to know more details about SPAD
    Using SPAD - SAP Spool Administration to print different paper size
    The SAP spool system manages its own output devices. This includes mostly printers, but also fax and archiving devices. In order for you to use output devices defined in your operating system from the SAP System, you must define these devices in the SAP spool system.
    Print to a dot matrix printer using computer paper with 66 lines
    Define paper types
    Formatting process Z_60_135
    Page format DINA4
    Orientation tick both Portrait and Orientation
    Type in the comment and click save
    Device initialization
    Device type - OKI341
    Formatting process Z_60_135 then click Execute
    Double click Printer initilization
    You must key the 66 lines hexadecimals for your printer. ( line no 9)
    1 # oki341 x_paper
    2 # reset
    3 # \e\0x40
    4 # select codepage multilingual 850
    5 \e\0x52\0x1a
    6 # disable skip perforation mode
    7 \e\0x4f
    8 # select 6 lpi
    9 \e\0x32
    10 # select page length 66 lines (66=hex $42)
    11 \e\0x43\0x42
    12 # select 10 cpi font
    13 \e\0x60
    CHECK THIS LINKS
    http://help.sap.com/saphelp_nw04s/helpdata/en/df/abbb3f8e236d3fe10000000a114084/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5a/4df93bad37f87ae10000000a114084/content.htm
    http://www.geocities.com/SiliconValley/Grid/4858/sap/Basis/printprobs_solutions.htm
    Hope this helps you
    Regards
    Pavan

  • How to reduce the scale size of HTML graphs

    Hi All,
    i created HTML Graphs in apex 4.0. Can any one tell how i decrease scall size of the graph beasue i saw the options there is min 200 scale size. How to reduce below 200 ?
    Looking forward for the valueable response.
    Regards,
    Omzz

    Have less photos? Really the question is a bit vague and there is no way to redice the size of the library. You can move a library to an external disk:
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

  • How to reduce the font size - "Portal Smart Text - CURRENT USER"

    Hi Gurus,
    I am showing the user name on the top left corner of our portal page. The default font size is little big(16 point size). How can I reduce the size to probably 10. I am using the "Built-In Navigation Item Types - Portal Smart Text - CURRENT USER" which shows the name of the current user. Please post a reply if you have any idea about this.
    Thanks
    Raj
    --------

    Put the item in its own region, assign a different style to the region, and set the font size for the Display Name attribute in the region's style.
    Or, you can use a PL/SQL item with this code:
    begin
    htp.p('<font size="-3">
    || portal.wwctx_api.get_user
    || '</font>');
    end;
    Regards,
    Jerry
    PortalPM

  • How to reduce the database size after deleting huge amount of rows?

    Hi,
    I have a large database. I removed almost half of the data/rows. Now i need to reduce the size of the database file as I need more disk space for the database file.
    What should I do in details please.
    Thanks.

    Hi,
    I have a large database. I removed almost half of the data/rows. Now i need to reduce the size of the database file as I need more disk space for the database file.
    What should I do in details please.
    Thanks.
    Deleting large data would have ultimately put ghost cleanup into action. You would not be able to free space using shrink operation untill it completes. So wait for time and then start shrinking. You should note that shrinking would cause fragmentation and
    you would have to rebuild indexes after shrinking is completed
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • How to reduce the Promt size of HideShow Header

    I want to reduce the size of the prompt size of hideshow header, if any one can tell me the style sheet used for this region, i will try to customize it.
    Thanks
    Babu

    Babu,
    http://www.oracle.com/technology/tech/blaf/specs/textStandards.html lists all the standard available CSS for OAF.
    --Shiv                                                                                                                                                                                                                                                                       

  • How to reduce the backup size?

    HI there,
    I am syncing an iPad 32 GB and an iPhone 64 GB via icloud. Photos are not backed, no photostream activated. Apps which are allowed to upload to icloud for backup are very limited. Mail is not syncing to iCloud as well. Still, my backup size is for each device about 2.3 and 2.6 GB big. I want to stay under the 5Gb limit. Any idea, what might take up such a huge amount of backup space?  I already deleted the backup via settings --> icloud in each device, but that didn't help much.
    Both devices are running the latest iOS.
    Thank you very much!

    iCloud backup has an on/off switch, so tell me how you think you have managed to exclude things?
    FYI, Photostream and Photos are not part of an iCloud backup.
    Here’s what iCloud backs up:
    Purchase history for music, movies, TV shows, apps, and books Your iCloud backup includes information about the content you have purchased, but not the purchased content itself. When you restore from an iCloud backup, your purchased content is automatically downloaded from the iTunes Store, App Store, or iBooks Store. Some types of content aren’t downloaded automatically in all countries, and previous purchases may be unavailable if they have been refunded or are no longer available in the store. For more information, see the Apple Support article iTunes in the Cloud availability by country. Some types of content aren’t available in all countries. For more information, see the Apple Support article Which types of items can I buy in my country?.
    Photos and videos in your Camera Roll
    Device settings
    App data
    Home screen and app organization
    iMessage, text (SMS), and MMS messages
    Ringtones
    Visual Voicemail

  • How to reduce the dropdown size

    Hi,
    I had developded one page. In that page have one selectOneChoice. If I click that dropdown, that dropdown list exceeds the browser. SO how to avoid that height of dropdown.
    Regards,
    Ragu.

    Ragu,
    The af:selectOneChoice component is intended for a relatively small number of items in the dropdown. If a large number of items is desired, it is recommended to use af:inputComboboxListOfValues instead
    The af:selectOneChoice component is intended for a relatively small number of items in the dropdown. If a large number of items is desired, it is recommended to use af:inputComboboxListOfValues instead
    The af:selectOneChoice component is intended for a relatively small number of items in the dropdown. If a large number of items is desired, it is recommended to use af:inputComboboxListOfValues instead
    The af:selectOneChoice component is intended for a relatively small number of items in the dropdown. If a large number of items is desired, it is recommended to use af:inputComboboxListOfValues insteadYou should use af:inputComboboxListOfValues.
    John

  • How can I reduce the file size when saving a psd as a pdf

    I have a psd with graphics and text, it is 8.5 x 11, 300 ppi
    I flatten the image and go to save as .pdf I un-check all of the options in general.
    In compression, I have tried a dozen different combinations and the way I've found to get a document that is not pixelated or blurry is to use jpeg 2000 > lossless or jpeg > maximum.
    So I have a high quality document but the file sizes are around 900 kb.
    I have downloaded other people's documents of the exact same type and size (8.5 x 11, 300 ppi) that I am making and viewed them in Photoshop, they are not pixelated or blurry and their file sizes are 300 kb or even less than 200 kb
    How are they doing this?!

    Delete all unused, invisible layers.
    Sometimes zip compression is better than jpg compression (in the pdf output settings). Zip is lossless, and works better with non gradient colour or no images.
    Flattening the image before you save it to pdf can reduce the file size if you are using jpg compression.
    Post a preview of your pdf and we can comment further on how to reduce the file size.

Maybe you are looking for