How to reduce size of image in Selection Screen

Hi all
I am trying to add an image in Selection screen and i want to reduce size of image .
Please help me asap.
Thanks & Regards
Shaveta

Hi Prashat
I tried by reducing the size of container , But scroll bars appears automatically .
The size of Picture remains same .
Please tell me if there is any option to fix the size of container ... so that picture reduces its size automatically .
Thanks & Regards
Shaveta

Similar Messages

  • How to reduce size of image without loss quality

    I am website developer design a website http://www.ritikakaur.com/ in wordpress php i am new in photoshop and i want to use some image plz suggest me how can i reduce size of image without loss of image quality.

    Which file formats are eligible for your purposes?
    non-destructive compression has limits, so you may have to compromise.

  • How to reduce size of image while uploading it in livecycle pdf.

    Hi,
    I have created a pdf with Image field using live cycle designer.
    I have selected "Sizing: Scale Image to fit Rectangle".
    Now the problem is the pdf which i have created is 1.5MB and if i import or upload a 2.5MB image in image field then the size of pdf becomes 6MB.
    I have around 20 image fields in my pdf report , so if people keep uploading high resolution images in the pdf then the pdf becomes more then 15MB, slow and unmanagable.
    Is there any way by which even if I upload a 5MB image the it should automatically reduce image size?
    As the users does not bother to reduce the size of image they just upload high resolution and large size image in pdf.
    Please tell me the way through which i can reduce the image size automatically while uploading.
    Regards,
    Kartik Shrivastava

    Hi Prashat
    I tried by reducing the size of container , But scroll bars appears automatically .
    The size of Picture remains same .
    Please tell me if there is any option to fix the size of container ... so that picture reduces its size automatically .
    Thanks & Regards
    Shaveta

  • How to reduce size of images in Aperture ?

    My situation, lots of pics, most ~5mb in size, most now do not need that high a quality, and in need of reducing disk space usage. Is there an application or a technique within Aperture, that will allow me to select images and then have those images reduced in size, say from 5mb to 2.5mb?
    Thanks for any assist.

    Well if those images are not important and it is unlikely you would want to do anything other than look at them, then why not grab an external drive and relocate the masters there and leave them at home.
    That way you free up space but still have the generated previews in the library to take with you. You can control the quality of the previews in the preferences and then force Aperture to generate the previews again from the masters with the new settings by selecting the photos in question in the browser and holding the option key after bringing up the context menu.
    Combined with ratings for example, you could then make low-res, highly compressed previews for the unrated photos, go back and change the preferences and make progressively higher quality previews for the higher rated photos, culminating in full-res, high quality previews for the 5 star photos.
    That's the way I'd do it.

  • How to reduce size of image from original size

    hi,
    I want to draw an image in particular width and height, for example that image has original size (300,300) but i want some time that image in (200,200) size and some time that image should draw in (100,100) size . how to do this ??
    Actually when i draw that image in small area that large one image it draw as overlapped the remaing with and height of image in that small area..
    pls , help me

    hi,
    i guess scaling will help. if i remember correctly, the java tutorial contains details of scaling.
    good luck
    ======
    Kiran

  • HOW TO REDUCE SIZE OF IMAGE?

    when i open my mac book the image is so large i do no see the whole page

    Check in System Preferences>Universal Access>Seeing and see if Zoom is turned on. If you have toddlers or cats this can accidentally turned on by hitting a group of keys that include Option + Command + 8.
      To prevent this being accidentally activated in the future go to SystemPreferences>Keyboard>Keyboard Shortcuts>Universal Access and uncheck all the boxes.

  • How to Change the Font Size in Module Pool Selection Screen?

    Hi,
    There is a module pool, and I need to change the font size mentioned in the selection screen. Could you plaese tell me, how will I be able to do that?

    Hi ,
    If you are asking for text field , then check the options avaliable in Display tab of Attributes.
    Hope this helps you.

  • How to reduce size pdf file with 10.5.8

    How to reduce size pdf file with 10.5.8, I know it can be done with snow....

    Look at this link.
    https://discussions.apple.com/thread/1292868?start=0&tstart=0
     Cheers, Tom

  • How to reduce size of the executables

    Colleagues,
    I just would like to share small tip, which may be useful for someone else.
    Sometimes size of LabVIEW - based executable is pretty big (especially if you have placed arrays or graphic on the front panel, then set values as default, etc). Time to time we have discussed - how to reduce size of the builded executable. One possible soultion is open source Ultimate Packer for eXecutables - UPX and it seems to be OK for LabVIEW - based apps. Also command line arguments passed correctly.
    For example, Vision Assistant (which is LabVIEW-written itself) packed from 7 MB to 5 MB and works.
    with best regards,
    Andrey.

    In the days of <$100 1TB HDs and 20mbps FIOS, this seems less and less of a real problem that needs to be solved.  
    I am curious if this works also with older LabVIEW executables. Many years ago I was beta testing a similar utility and it would break LabVIEW executables. They were able to work around it but the compression benefit was less.
    Just curious. 
    From the UPX documentation:
    "Obviously UPX won't work with executables that want to read data from themselves"
    LabVIEW Champion . Do more with less code and in less time .

  • Image at selection-screen

    Hi all...
    I had displayed am image at selection-screen.
    But the problem is that, the image is been over-lapping on the out-put screen also...
    Here is the sample code which I had used
    can any one find a solution for this.... Thanks in advance
    REPORT  z_XXX.
    DATA: docking TYPE REF TO cl_gui_docking_container,
          picture_control_1 TYPE REF TO cl_gui_picture,
          url(256) TYPE c .
    DATA: query_table LIKE w3query OCCURS 1 WITH HEADER LINE,
          html_table LIKE w3html OCCURS 1,
          return_code LIKE  w3param-ret_code,
          content_type LIKE  w3param-cont_type,
          content_length LIKE  w3param-cont_len,
          pic_data LIKE w3mime OCCURS 0,
          pic_size TYPE i.
    DATA : sum(4) , num1(4) , num2(4).
    PARAMETERS: p_dummy(4) DEFAULT '4' .
    PARAMETERS: p_dummy1(4) DEFAULT '5' .
    AT SELECTION-SCREEN output.
      PERFORM show_pic.
    START-OF-SELECTION.
    data : var1 type i.
          var1 = p_dummy1 + p_dummy.
          write : / var1.
    *& Form show_pic
    FORM show_pic.
    DATA: repid LIKE sy-repid.
    repid = sy-repid.
      CREATE OBJECT picture_control_1 EXPORTING parent = docking.
      CHECK sy-subrc = 0.
      CALL METHOD picture_control_1->set_3d_border
        EXPORTING
          border = 5.
      CALL METHOD picture_control_1->set_display_mode
        EXPORTING
          display_mode = cl_gui_picture=>display_mode_stretch.
      CALL METHOD picture_control_1->set_position
        EXPORTING
          height = 25
          left   = 10
          top    = 30
          width  = 40.
      IF url IS INITIAL.
        REFRESH query_table.
        query_table-name  = '_OBJECT_ID'.
        query_table-value = 'zflight'.
        APPEND query_table.
        CALL FUNCTION 'WWW_GET_MIME_OBJECT'
          TABLES
            query_string        = query_table
            html                = html_table
            mime                = pic_data
          CHANGING
            return_code         = return_code
            content_type        = content_type
            content_length      = content_length
          EXCEPTIONS
            object_not_found    = 1
            parameter_not_found = 2
            OTHERS              = 3.
        IF sy-subrc <> 0.
        ENDIF.
        CALL FUNCTION 'DP_CREATE_URL'
          EXPORTING
            type     = 'image'
            subtype  = cndp_sap_tab_unknown
            size     = pic_size
            lifetime = cndp_lifetime_transaction
          TABLES
            data     = pic_data
          CHANGING
            url      = url
          EXCEPTIONS
            OTHERS   = 1.
      ENDIF.
      CALL METHOD picture_control_1->load_picture_from_url
        EXPORTING
          url = url.
    ENDFORM.                    "show_pic

    Hi, Kiran
    Please test after doing following changes hope will solve out your problem,
      CALL METHOD picture_control_1->set_position
        EXPORTING
          height = 300 " Change Here
          left   = 50 " Change Here
          top    = 50 " Change Here
          width  = 1200. " Change Here
        REFRESH query_table.
        query_table-name = '_OBJECT_ID'.
        query_table-value = 'ENJOYSAP_LOGO'. " Change Here add you Pic name here
        APPEND query_table.
    Please Reply if any Issue,
    Best Regards,
    Faisal

  • How to pass a default value in selection screen of logical database pnpce

    Dear All,
    Can any one tell me how to pass a default value in selection screen of logical database pnpce .
    Regards
    Rakesh Singh

    Hi Rakesh,
    Go to SE36 (logical database Builder).First enter PNPCE in Logical Database and press documentation,here you will get the details of exactly what is PNPCE and how it works.After that select selections in subojects in se36 only and enter display ,there you have the include from where you acn get the idea.
    Regards,
    Rahul

  • How can I get an image from the screen? Like screen printer in PC to pasting after in word or other program.

    How can I get an image from the screen? Like screen printer in PC to pasting after in word or other program.

    If you do Cmd+Shift+3 you'll get a full screen image saved to your desktop as a jpg file.
    Also, you can use Cmd+Shift+4 and you'll get a cursor which you click+drag to draw a box. When you release the drag the boxed in area will be saved to the Desktop as a jpg file.

  • How to Improve the performance in Variable Selection Screen.

    Hi,
    In Query Level we have Variable " User entry Defalt Valu". User want select particular value when he press "F4" it's take hours time how to improve the performance in Varaible Selection Screen.
    Thanks in Advance.
    Regards,
    Venkat.

    Dear Venkat.
    You please try the following steps:
    1. Say the InfoObject is 0EMPLOYEE against which you have created the variable, which user is trying to select value against, when they execute the report.
    2. Goto RSA1-> InfoObject tab-> Select InfoObject 0EMPLOYEE.
    3. Selcet the following options:
       Query Execution Filter Val. Selectn  -  'Only Posted Value for Navigation'
       Filter Value Repr. At Query Exec. -      'Selector Box Without Values'
    Please let me know if there is any more issue. Feel free to raise further concern
    Thnx,
    Sukdev K

  • Upgarded to PE 13 - How do I drag an image from one screen to another (using 2 monitors)

    upgarded to PE 13 - How do I drag an image from one screen to another (using 2 monitors)

    upgarded to PE 13 - How do I drag an image from one screen to another (using 2 monitors)

  • How to provide F4 help in a selection screen

    Hi..
       How to provide F4 help in a selection screen for a particular field  using  
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'.
    Thanks in Advance.
    Regards
    Raj Kumar

      AT SELECTION SCREEN
    at selection-screen on value-request for s_contr-low.
    Get contract (low value)
      perform get_contract changing s_contr-low.
    form get_contract  changing p_contr .
      types: begin of ty_ycontract,
               ycontract type xchcontract-ycontract,
               lifnr     type xchcontract-lifnr,
               ycontdate type xchcontract-ycontdate,
               ycont_end_dt type xchcontract-ycont_end_dt ,
             end of ty_ycontract.
      data: ds_returntab   type ddshretval,
            dt_returntab   type table of ddshretval,
            dl_fieldname     type dfies-fieldname.
      data: dt_ycontract type table of ty_ycontract.
      select ycontract lifnr ycontdate ycont_end_dt
        from xchcontract
        into table dt_ycontract.
      if sy-subrc = 0.
        clear dl_fieldname.
        dl_fieldname = 'YCONTRACT'.
        call function 'F4IF_INT_TABLE_VALUE_REQUEST'
          exporting
            retfield        = dl_fieldname
            value_org       = 'S'
          tables
            value_tab       = dt_ycontract
            return_tab      = dt_returntab
          exceptions
            parameter_error = 1
            no_values_found = 2
            others          = 3.
        if sy-subrc = 0.
          clear ds_returntab.
          read table dt_returntab into ds_returntab index 1.
          if sy-subrc = 0.
            p_contr = ds_returntab-fieldval.
          endif.
        endif.
      endif.
    endform.

Maybe you are looking for