Creating graphics ...

Hi everybody
When designing, not programming, iPhone/iPad apps it's mostly done in Photoshop, at least where I work.
When changing colors on default UI elements I believe it's done like changing the color overlay on a grayscale image, right ?
Is it possible to get these default UI grayscale elements as PNG's or any other formats ?
Thanks
// Sebastian

Are you copying and pasting into photoshop? It also has to do with how large you're creating your logos in Illustrator. Even though Illustrator is' vector' based, it's converts to 'Raster' in photoshop so the quality will have a lot to do with the size of the original art. I usually create vector graphics much larger than I need them and copy them into photoshop to scale them down.
you could also open the Illustartor graphic directly in photoshop, that way it will ask you what resolution you want to open the document, if you do this make sure the import size matches the photoshop document you are bringing the graphic into.
hope that helps.

Similar Messages

  • Can we create graphic and text in the same window of smartform without using template?

    we create graphic and text in the same window of smartform without using template?

    Hi Kinjal,
    as far as i understand you are talking about a template which you can partitioned and in one part you wants to show your graphics and in other part you wants to print your text, the border of template shall remain invisible.
    If you wants to do it without using a template, you can do it as sujjested by Susmitha, but creating a template will provide you more flexibility that if you wants to change the attributes in future you can do it easily.

  • Are plugins able to create graphical controls children to the Acrobat/Reader application?

    Hello,
    in the documentation I read 
      Acrobat Viewer layer 
    The Acrobat Viewer (AV) layer enables plug-ins to control Acrobat and modify its user interface. Using AV methods, you can, for example, add menus and menu commands, add buttons to toolbars, open and close files, display simple dialog boxes, and perform many other application-level tasks.
    I ask if it is possible that a plugin creates a graphical control like others applications can usually do and put it as a legitimate child of the Acrobat/Reader application, for example over a pdf page, and get events and so on.
    Thanks in advance

    Sure.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Wed, 26 Oct 2011 03:33:53 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: are plugins able to create graphical controls children to the Acrobat/Reader application?
    are plugins able to create graphical controls children to the Acrobat/Reader application?
    created by DevAcro<http://forums.adobe.com/people/DevAcro> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/3990771#3990771

  • Create graphic in MS-Excel with DOI

    Hi all,
    I'm begining using Desktop Office Interface (DOI).
    It's possible to create graphics with in the document because of DOI?
    Thanks
    enzo

    checking ABAP code sample generating graphs on excel using ole.
    (Note: this is not my code, i got it somewhere from sdn/internet and dont remember the source)
    report y_excel_chart
           no standard page heading.
    include ole2incl .
    data: gs_excel type ole2_object ,
    gs_wbooklist type ole2_object ,
    gs_application type ole2_object ,
    gs_wbook type ole2_object ,
    gs_activesheet type ole2_object ,
    gs_sheets type ole2_object ,
    gs_newsheet type ole2_object ,
    gs_cell1 type ole2_object ,
    gs_cell2 type ole2_object ,
    gs_cells type ole2_object ,
    gs_range type ole2_object ,
    gs_font type ole2_object ,
    gs_interior type ole2_object ,
    gs_columns type ole2_object ,
    gs_charts type ole2_object ,
    gs_chart type ole2_object ,
    gs_charttitle type ole2_object ,
    gs_charttitlechar type ole2_object ,
    gs_chartobjects type ole2_object .
    data gv_sheet_name(20) type c .
    data gv_outer_index like sy-index .
    data gv_intex(2) type c .
    data gv_line_cntr type i . "line counter
    data gv_linno type i . "line number
    data gv_colno type i . "column number
    data gv_value type i . "data
    parameters: p_sheets type i .
    start-of-selection .
      do p_sheets times .
    *--Forming sheet name
        gv_intex = sy-index .
        gv_outer_index = sy-index .
        concatenate 'Excel Sheet #' gv_intex into gv_sheet_name .
    *--For the first loop, Excel is initiated and one new sheet is added
        if sy-index = 1 .
          create object gs_excel 'EXCEL.APPLICATION' .
          set property of gs_excel 'Visible' = 1 .
          get property of gs_excel 'Workbooks' = gs_wbooklist .
          get property of gs_wbooklist 'Application' = gs_application .
          set property of gs_application 'SheetsInNewWorkbook' = 1 .
          call method of gs_wbooklist 'Add' = gs_wbook .
          get property of gs_application 'ActiveSheet' = gs_activesheet .
          set property of gs_activesheet 'Name' = gv_sheet_name .
    *--For the rest of loops, other sheets are added
        else .
          get property of gs_wbook 'Sheets' = gs_sheets .
          call method of gs_sheets 'Add' = gs_newsheet .
          set property of gs_newsheet 'Name' = gv_sheet_name .
        endif .
        gv_line_cntr = 1 . "line counter
    *--Title
    *--Selecting cell area to be merged.
        call method of gs_excel 'Cells' = gs_cell1
          exporting
            #1 = 1
            #2 = 1.
        call method of gs_excel 'Cells' = gs_cell2
          exporting
            #1 = 1
            #2 = 4.
        call method of gs_excel 'Range' = gs_cells
          exporting
            #1 = gs_cell1
            #2 = gs_cell2.
        call method of gs_cells 'Select' .
    *--Merging
        call method of gs_cells 'Merge' .
    *--Setting title data
        call method of gs_excel 'Cells' = gs_cell1
          exporting
            #1 = gv_line_cntr
            #2 = 1.
        set property of gs_cell1 'Value' = 'KISHAN' .
    *--Formatting the title
        get property of gs_cell1 'Font' = gs_font .
        set property of gs_font 'Underline' = 2 .
        set property of gs_font 'Bold' = 1 .
        set property of gs_cell1 'HorizontalAlignment' = -4108 .
        get property of gs_cell1 'Interior' = gs_interior .
        set property of gs_interior 'ColorIndex' = 15 .
        set property of gs_interior 'Pattern' = -4124 .
        set property of gs_interior 'PatternColorIndex' = -4105 .
        gv_line_cntr = gv_line_cntr + 1 .
    *--Writing some additional data for the title
        call method of gs_excel 'Cells' = gs_cell1
          exporting
            #1 = gv_line_cntr
            #2 = 1.
        set property of gs_cell1 'Value' = 'Sheet No' .
        call method of gs_excel 'Cells' = gs_cell1
          exporting
            #1 = gv_line_cntr
            #2 = 5.
        set property of gs_cell1 'Value' = ':' .
        call method of gs_excel 'Cells' = gs_cell1
          exporting
            #1 = gv_line_cntr
            #2 = 6.
        set property of gs_cell1 'Value' = gv_intex .
    *--Formatting the area of additional data 1
        call method of gs_excel 'Cells' = gs_cell1
          exporting
            #1 = 1
            #2 = 1.
        call method of gs_excel 'Cells' = gs_cell2
          exporting
            #1 = gv_line_cntr
            #2 = 5.
        call method of gs_excel 'Range' = gs_cells
          exporting
            #1 = gs_cell1
            #2 = gs_cell2.
        call method of gs_cells 'Select' .
        get property of gs_cells 'Font' = gs_font .
        set property of gs_font 'Bold' = 1 .
    *--Formatting the area of additional data 2
        call method of gs_excel 'Cells' = gs_cell1
          exporting
            #1 = 1
            #2 = 5.
        call method of gs_excel 'Cells' = gs_cell2
          exporting
            #1 = gv_line_cntr
            #2 = 5.
        call method of gs_excel 'Range' = gs_cells
          exporting
            #1 = gs_cell1
            #2 = gs_cell2.
        call method of gs_cells 'Select' .
        get property of gs_cells 'Columns' = gs_columns .
        call method of gs_columns 'AutoFit' .
    *--Bordering title data area
        call method of gs_excel 'Cells' = gs_cell1
          exporting
            #1 = 1
            #2 = 1.
        call method of gs_excel 'Cells' = gs_cell2
          exporting
            #1 = gv_line_cntr
            #2 = 6.
        call method of gs_excel 'Range' = gs_cells
          exporting
            #1 = gs_cell1
            #2 = gs_cell2.
        call method of gs_cells 'Select' .
        call method of gs_cells 'BorderAround'
          exporting
            #1 = 1 "continuous line
            #2 = 4. "thick
    *--Putting axis labels
        gv_colno = 2 .
        gv_line_cntr = gv_line_cntr + 5 .
        gv_linno = gv_line_cntr - 1 .
        call method of gs_excel 'Cells' = gs_cell1
          exporting
            #1 = gv_linno
            #2 = 1.
        set property of gs_cell1 'Value' = 'X' .
        call method of gs_excel 'Cells' = gs_cell1
          exporting
            #1 = gv_line_cntr
            #2 = 1.
        set property of gs_cell1 'Value' = 'Y' .
    *--Generating some data
        do 3 times .
          gv_value = gv_outer_index * sy-index * 10 .
          call method of gs_excel 'Cells' = gs_cell1
            exporting
              #1 = gv_linno
              #2 = gv_colno.
          set property of gs_cell1 'Value' = sy-index .
          call method of gs_excel 'Cells' = gs_cell1
            exporting
              #1 = gv_line_cntr
              #2 = gv_colno.
          set property of gs_cell1 'Value' = gv_value .
          gv_colno = gv_colno + 1 .
        enddo .
    *--Source data area
        gv_colno = gv_colno - 1 .
        call method of gs_excel 'Cells' = gs_cell1
          exporting
            #1 = gv_linno
            #2 = 1.
        call method of gs_excel 'Cells' = gs_cell2
          exporting
            #1 = gv_line_cntr
            #2 = gv_colno.
        call method of gs_excel 'Range' = gs_cells
          exporting
            #1 = gs_cell1
            #2 = gs_cell2.
        call method of gs_cells 'Select' .
        get property of gs_application 'Charts' = gs_charts .
        call method of gs_charts 'Add' = gs_chart .
        call method of gs_chart 'Activate' .
        set property of gs_chart 'ChartType' = '51' . "Vertical bar graph
        call method of gs_chart 'SetSourceData'
          exporting
            #1 = gs_cells
            #2 = 1.
        set property of gs_chart 'HasTitle' = 1 .
        get property of gs_chart 'ChartTitle' = gs_charttitle .
        get property of gs_charttitle 'Characters' = gs_charttitlechar .
        set property of gs_charttitlechar 'Text' = 'Sample Graph' .
    *--Locate the chart onto the current worksheet
    *--Activate current sheet
        call method of gs_excel 'WorkSheets' = gs_activesheet
          exporting
            #1 = gv_sheet_name.
        call method of gs_activesheet 'Activate' .
        call method of gs_chart 'Location'
          exporting
            #1 = 2
            #2 = gv_sheet_name.
    *--Reposition the chart on the worksheet (cut&paste)
        call method of gs_activesheet 'ChartObjects' = gs_chartobjects .
        call method of gs_chartobjects 'Select' .
        call method of gs_chartobjects 'Cut' .
    *--Select new area
        gv_line_cntr = gv_line_cntr + 2 .
        call method of gs_excel 'Cells' = gs_cell1
          exporting
            #1 = gv_line_cntr
            #2 = 1.
        call method of gs_excel 'Cells' = gs_cell2
          exporting
            #1 = gv_line_cntr
            #2 = 1.
        call method of gs_excel 'Range' = gs_cells
          exporting
            #1 = gs_cell1
            #2 = gs_cell2.
        call method of gs_cells 'Select' .
        call method of gs_activesheet 'Paste' .
      enddo.
    *--Deallocating memory
      free: gs_excel, gs_wbooklist, gs_application, gs_wbook,
      gs_activesheet,gs_sheets, gs_newsheet, gs_cell1,
      gs_cell2, gs_cells, gs_range, gs_font, gs_interior,
      gs_columns, gs_charts, gs_chart, gs_charttitle .

  • Creating graphics like on Apple's site?

    I want to create graphics similar to the look-and-feel of the attached graphic. I made a square and have the roundness set at 8. What else is being done to create the look of depth with it? How is this style of gradient made? How is the shine on the top of the graphic made?
    Thanks.

    Thanks for doing this. I see how you added the gradients, and now I want to try to do it myself from scratch. I open the original Apple graphic in a new FW document and create a new shape that I want to take on the same look-and-feel of. I try sampling different colors of the image with a linear gradient, though it is not coming out right.
    1. What is your approach when looking at a graphic like this to know how many points to add for the gradient?
    2. Where do you choose to sample your colors from on the Apple graphic?
    Thanks.

  • How do I install my custom, self-created graphic Persona / Theme that I use on my XP computers on my Win7Firefox?

    How do I install my custom, self-created graphic Persona / Theme that I use on my XP computers on my Windows 7 Firefox? (Firefox 17.0.1 Windows 7 64bit Home Edition? (There is, as far as I can tell, no "little fox" icon visible in the lower left!) I am using a downloaded "Persona", or "Theme" ((I sure wish you people would not change important terminology at the drop of a hat!)) and it is working fine.....

    You will have to install the Persona Plus extension to easily install a persona via its files instead of via internet.
    * Personas Plus: https://addons.mozilla.org/firefox/addon/personas-plus/

  • Steps to create graphical report by using BI publiser

    Can some one please provide me a steps to create graphical report in siebel BI publisher report.
    Thanks,
    Sri

    hi BIPuser,
    may you send me the information too? i need to know how to create graph in siebel bi publiser.
    my email is [email protected]
    many thanks for your kindness..

  • Underlying SQL or SQL Script for Calculated Views Create Graphically

    Hello,
    Is it possible to view the SQL or SQL script generated for calculated views that are created graphically?

    Hi Mike,
    For your calculation view you will find the corresponding column view created in schema '_SYS_BIC'-->Column Tables->
    <packagename>/<Calculation view> --> Open Definition of this and check the 'create statement'.
    Note: This is a information modeler generated SQL script which will show the generated Calculation Scenario and the respective Column View.
    Regards, Rahul
    Seems the answer was already given by Murali while I typed
    Edited by: Rahul Pant on Mar 2, 2012 5:22 AM

  • Creating Graphics destined for Web & Television

    I am having issues with creating graphics for a video destined for both web and tv.
    Because I am going to DVD, the video needs to be interlaced (I will get best quality on my interlaced video assets). I created interlaced graphics and everything is great. Now, in order to deliver this video to the web, I must de-interlace the video. The problem with de-interlacing is that the video looks fine, but the graphics get ugly stairstepping on them.
    What is the best way to get smooth clean graphics when the video is destined for both web and television?

    The biggest issue is that I must create the video as interlaced because I am working with multiple interlaced source materials. The video is then going to DVD as well as web. It makes sense for me to have the final video be interlaced so I can preserve the full quality of my source materials and get smooth movement on a television monitor.
    How do I then deliver this video to the web with clean graphics? I must deinterlace for the web and I am losing half the resolution of my video. The deinterlacing makes my graphics stairsteppy and ugly.
    Anybody have a suggestion?

  • Created Graphics Using InDesign's Drawing Tools

    Hello,
    I Created Graphics Using InDesign’s Drawing Tools, but when I published to Kindle or EPUB, the graphics do not appear?  All other raster images that are on the same page appear in Kindle Previewer.  Is there a hidden button I must enable for Graphics created with InDesign’s own tools to get them to publish to Kindle?
    Any help would be greatly appreciated.
    Thanks
    iaustin

    I tried your suggestions(group, achor) and it still did not resolve my Kindle image issue.
    I also tried exporting to EPUB format and the InDesign created images appear as drawn.
    I conclude that have a Kindle ONLY related issue. (Tried in both PC Kindle and Amazon previewers).
    I wonder what else can I try?
    Can you clarify your statement... "but at least one line above where the images are visible?"

  • Problems in create graphical report from Oracle FSG xml output using BIP

    We are trying to create graphical reports from Oracle Financial Statement Generator (FSG) xml output. I personally have extensive exposure working with XML (BI) Publisher but until recently I have never tried to use the BIP charting wizard to create graphical reports from FSG xml output out of EBS 11i/R12.
    I created an SR with Oracle but they had to create an enhancement request for this issue. Does anyone know or have any idea on how we can accomplish this. The charting wizard pops up but the xml tags available do not make any sense.
    If anybody has any idea please send me an email at [email protected]
    Thanks,
    Leo

    Try some thing like following
    http://oraclebizint.wordpress.com/2008/03/10/oracle-bi-ee-101332-sending-reports-to-non-obi-users-delivery-manager-api-of-bi-publisher/

  • A6720y-DirectX could not create graphic device.

    Hello all,
     I have an HP Pavilian Desktop a6720y with windows vista. I had a corrupt boot structure and had to reinstall everything, when i attempt to run a game I get an error "direct x could not create graphic device". I noticed that my Nvidia card was not showing up and got that issue resolved but now I show a standard VGA and my Nvidia in device manager so i disabled the Standard. The main issue is that It still gives me the error when i try to play the game.. When i do Dxdiag it shows N/A under the video tab but in device manager it shows the Nvidia card. Am i doing something wrong? What am I missing?

    Hello Aissa2326.  I understand you're having some troubles playing games.
    It is likely that you're just missing the required drivers for your hardware.  Try installing both the HP Software Framework and HP Support Assistant.  Then, you can run HP Support Assistant and it will automatically scan your system and install any missing drivers or HP software.
    Let me know the result and I hope you have an amazing day!
    Please click the white star under my name to give me Kudos as a way to say "Thanks!"
    Click the "Accept as Solution" button if I resolve your issue.

  • I added alt text to an Indesign created graphic but it won't show in Acrobat

    I created these little check boxes in InDesign, basically a stroked box with a copied-from-Illustrator check mark. The box and the check are grouped and anchored to the each paragraph where the item has been completed (checked). I made sure the content of the frames were designated as graphic and not text or unassigned. I then click on the group, open object export options and assign a alt text desription (using custom setting), such as "completed" or "previiously completed", which is a gray check mark. InDesign shows the alt text, but when I export to Acrobat the PDF does not display the alt text. It sees it as a graphic but will not show the alt text that I created in InDesign.
    The only way I have found to fix this is to create the entire box and check in illustrator and import as "real" graphic. This is kinda of pain to reimport and reposition all the boxes, when InDesign has the ability to create these simple graphics.
    Any clue as to why Acrobat will not show the alt tags?

    Pretty annoying - I didn't "chose" to not show my settings....
    you selected something other than "show all" in the popUp menu over the presets list

  • Creating graphics 720p60 - DVCPRO HD

    Hello everyone.
    I am new to these forums, and Final Cut Pro in general. I have someone who needs me to make some graphic slides for them using either Photoshop, Powerpoint or Illustrator (whatever you users think is best for this job)... When I create the graphics at 1280x780 for their time line (the codec they are using is 720p60 - DVCPRO HD.. Hope I have that right...) They say the graphics come out correct BUT are a little dull color and are slightly blurry... Is there something I can do or a program I can use to eliminate this problem for the person who needs these graphics? If this has already been talked about I am really sorry please help me out by linking something I can read up on Thank you for your help everyone!

    I use Photoshop often to make graphics for my FCP projects.
    Start in Photoshop by selecting New> and select the right DVCPro HD preset under the film and video presets. That will get you the right screen size and dpi settings. (CS3)
    For what it's worth, I'll make a .psd file and also save as a .png file. The .png is flattened and it opens up in FCP with out a lot of issues. If the client wants the photoshop layers to open up in FCP then they can use the .psd.
    I'll also trash the background layer (white or black) and save that as a .png, just to expedite the keying business if I need to.
    You also might want to look at your text settings (anti-alias: smooth, etc). Stay away from thin (1 or 2 pixel) lines and you might want to leave the drop shadows to them if they're keying your graphics.
    Hope this helps.

  • Creating Graphics Component in Forte with GUI's

    I have created a JFrame with 2 JPanels in it that are placed side by side. However, I want to access these JPanels with Graphics...but I have no idea how to do that within Forte...I am using a Mouse Click on an Evaluate button to trigger the event...in normal java programming, from what I have seen, people create the JPanel class extends, etc. and then they put a paint() method within it...but in the Forte environment, I have no idea how to access either panel because Forte duzznt init it as a class but as just a component...I tried using Canvas instead of JPanel but that got me no where...can what I want be done within Forte or must I do this by my own editing, etc? thank you....jerry blimbaum panama city, fl

    I managed to get it work at the end...
    First, the components directory was at this location:
    C:\Users\<username>\AppData\Local\Adobe\Flash CS5\en_US\Configuration\Components
    Then, to make a component out of a MovieClip, right click on the MovieClip in the library and select "Component Definition" and check the checkbox "Display in Components Panel". What I did then was to right click on the MovieClip and selected export swc file, and saved it in the directory above. This exported only one Component, which was fine for me. Probably it would be possible to do something similar to save a library of components as a .fla or .scw or so, but I don't know the details.

  • Photoshop Elements 10 - Proper Settings for Creating Graphic for Film

    Hi, I'm fairly new to Photoshop Elements. What would be the proper project settings and export settings when creating a quality graphic for using in a film? (I'm using Premiere for video editing.)
    Thank you so much for your time and patience. I've been referring to google and haven't pulled up anything yet, not sure if I'm just not putting in the right terms.
    -M.

    Hi,
    Here are some links of Adobe tv and Elements help page to get more about this application.
    http://tv.adobe.com/show/learn-photoshop-elements-10/
    PSE 10 help
    http://help.adobe.com/en_US/PhotoshopElements/10.0/Using/index.html
    PSE 11 help
    http://helpx.adobe.com/photoshop-elements.html
    thanks,
    earth-star

Maybe you are looking for

  • How do I get pictures from my iPod back to my computer?

    First of all, I searched and searched and never found a difinitive answer. So forgive me if there is a topic covering this buried somewhere in the depths of ****! I recently lost stuff on my hard drive. I want to get my pictures back from my iPod ont

  • Why pdf is not showing logo/image in pdf viewer while we are using mozila 34.0.5 version ?

    Hi Support, When we have opened that URL http://www.internationalrail.com/pdfservice/lbqujn.pdf in mozila 34.0.5 then we are not able to see logo/image in that pdf link on top left corner, but when that file download in our local system then we are g

  • Aperture 2 backups

    I have a IMAC computer and have an external hard drive that I have Time Machine back up to. My question is Time Machine appears to be backing up my Aperture library so do I still need to backup my Aperture library using Vaults directley from Aperture

  • Popups Not Printing

    Hi. I am generating printed documentation of chapters in my help file that contain popups. When I check the printed documentation, it only contains the topics contained in the table of contents - none of the popups were included. The particular chapt

  • Crash at compilation/Intermediate files generation LV FPGA module

    Hi. I'm in desperate need of assistance. I have been using LabVIEW 8.6 with FPGA module running at Win XP for som time now and I have never encountered any crash while compiling before. I get one of those Error messages where I just can send an error