Adding text and background to photos?

Is there any way to add text or backgrounds to photo besides in the Book Layout?  I am using MpixPro and using ROES to order prints and photo books for clients.

You could write captions directly into image versions as part of the image with the free BorderFX plugin:
     BorderFX, Lion 64bit version: http://www.iborderfx.com/BorderFX/

Similar Messages

  • Numeric Control - Text and Background Color changes when operating inc/dec arrows

    Hi,
    I'm developing an application that has a panel with black background and green or red numbers. I've added numeric controls and configured the text color and text background color attributes accordinglingy. I set the numeric control to hot or validate  control mode and show the inc/dec arrows, since I want to be able to incr/decr the numbers.
    The problem is that when I run the application and I hit the inc/dec arrows, then the colors inside the numeric control frame become inverted: the black background becomes white and the green number becomes cyan. I've created a callback function assosicated with the numeric control and tried forcing the text and background color, in the EVENT_VAL_CHANGED section, using the SetCtrlAttrribute() function, but to no avail. Also added ProcessDrawEvents didn't help.
    When I mouse click again outside the numeric control, then it reverts back to its original colors (green text, black background).
    Any suggestions as to how I can fix this ?
    I want it to keep its original colors at all times, even when I'm clicking the incr/decr arrows...
    Kind regards,
    pgriep
    Solved!
    Go to Solution.

    Ok, now I see what's happening.
    The effect you are seeing is a resul of standard numeric control behaviour combined with the black bcakground: when you use arrows to increment/decrement a numeric control its value will be automatically highlighted; on the default background you'll see the white area and figures highlighted in black (white numbers on balck background). If you set the background to black the system will automatically change the colors used to highlight the text, and that's what you're seeing.
    By the way, this does not happens if you use up and down keys on the keyboard: text is not highlighted so colors are not changing.
    Additionally, this is not only valid for numerics: see the behaviour of the string controls on the bottom of your panel when you tab up to them. This effect does not happen on controls set as indicator like the big clock in the upper part of the panel.
    The only way I can see to overcome this behaviour is to hide control built-in arrows and create your own up and down buttons with which you can manipulate the numeric control. I am attaching a modified version of your project with buttons on the left numeric; sorry for the poor aesthetic:  I have used some arrow icons I had on my disk, you may want to create your own arrows with the colors and shape you prefer.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?
    Attachments:
    ModifiedApplication.zip ‏9 KB

  • Documents edited with added text and sketch not shown while emailing in iPad 2.

    Documents edited with added text and sketch not shown while emailing in iPad 2.

    Hi Rakmana,
    This is most likely an issue with Apple's iOS Mail program's.
    I think you are opening your modified PDF in Apple built-in PDF Preview. Apple's code does not properly draw the comments, but if you look at the PDF in virtually any other PDF application that isn't just using Apple''s code, or on any desktop computer, you will see the comments you've added.
    Thanks
    -Satyadev

  • How cna I change the text and background colours in iTunes?

    Can anyone tell me how I can change the text and background colours in iTunes? I am a visually impared user and my main requirement on a PC is to change the colour schemem to white text on a black background. Most software adopts the settings of your colour scheme but iTunes goes it's own and has everything on white backgrounds. I cannot read from white backgrounds (dazzle - that sort of thing). I have never used iTunes for this reason. I have always been a devotee of by far the best media player out there Musicmatch Jukebox, who allow you to edit skins in every detail. However, recently Musicmatch was taken over and users were forced to migrate to the ridiculously poor Yahoo Music Jukebox. A massive downgrade in so many ways.
    I want to use iTunes but will not be able to if I cannot sort this issue out. I downloaded 7.5 before discovering that if you want to use Multi Plugin for skins you need to go back to iTunes 7.02. I've done that, but the skins available are completely pointless to my eyes. They don't change the colours of the main components, just the graphical bit at the top.
    What I need to do is change the background of the main browser windows so that they are black and the text is white (you know the track lists and tree views, etc). This must be a very simple case of just changing the codes somewhere, but I can't find where. I read somewhere that you need to hack into something call ResourceDB inside a file called iTunes.jar. There is no such file on my PC. Could that be a Mac thing?
    Please help someone if you can. I would like to become an iTunes user. There seems to be more music available than on Napster which I currently use.
    Thanks in advance
    Z

    In my opinion, it seems that Apple has decided to sacrifice usability so that iTunes would look more like a Mac application. You are probably already aware that using Windows' built-in high-contrast settings do not work in iTunes.
    I did some hacking at the resource file a while back, but I was unable to figure out how to change the color of the background. IIRC there was a resource whose description indicated it would change the background color, but when I changed the resource, nothing happened.
    I was, however, able to figure out how to make the "large" font much larger (any size you want, I suppose). Will that help? See
    http://home.comcast.net/~teridon73/ituneshacks/index.html
    You should provide feedback to Apple:
    http://www.apple.com/feedback/
    I don't think it is too harsh to call it "shameful" that Apple has chosen this design path. Where I work, we are required to make ALL applications (or any computer interface, such as a website) section 508 compliant. Of course, I'm being a bit of a hypocrite, because I've made no effort to make my website compliant. If you have trouble reading it, please let me know.

  • My iPhone 4 Contacts text and background both go black

    I did a restore yesterday and after that, the text and background go to black and I cannot read any text. Any idea how to restore it? I do not want to restore the phone again
    iPhone 4
    iOS 7.1.2
    terday

    Understand, but can you please tell me what is this bug? Any discussion or website discussing it? Totally not aware of it.
    Also, I have iPhone4 which iOS8 will not support...

  • How to set text and background color of current row in a adf table?

    Hi,
    In jdev 11.1.2.3,
    How to set text fond and background color of current row in a adf table?
    I tried to set Background color in table property, but that is not what i want.
    Thanks.

    Hi,
    We almost had the same requirement, but we just needed to color a specific column.
    Here goes the solution to that, you might do the same for your row highlighting
    Changes are required in jsff and one method to be added in backing bean
    1. JSFF :
    <af:column headerText="Amount"
                     id="c4" width="100"
                     inlineStyle="#{backingBeanScope.BackingBean.cellColor}">2. Backing Bean
    //searchResultTableVO is Table's VO
    public String getCellColor() {
          FacesContext ctx = FacesContext.getCurrentInstance();
          ExpressionFactory ef = ctx.getApplication().getExpressionFactory();
          ValueExpression ve = ef.createValueExpression(ctx.getELContext(), "#{row}", FacesCtrlHierNodeBinding.class);
          FacesCtrlHierNodeBinding node = (FacesCtrlHierNodeBinding)ve.getValue(ctx.getELContext());
          Row row = node.getRow();
        if(row.equals(searchResultTableVO.getCurrentRow())){
    //You can add your inline style for font-style too
          return "background-color:Red;";
             return null;
      }Hope this is helpful :)
    Regards,
    Neha..

  • Adding Text and making it behave as other items?

    I'm using the Center Stage theme and adding additional text on the primary menu. When I navigate to a submenu and then go back to the main title screen, the added text does not behave like text that was already included in the original design. That is to say, most of the other text "zooms in" while the added text just "appears." It's jarring and I'd like to make it "zoom in" as well.
    How do I make added text behave like the rest of the entities on the theme?

    Sorry, but the added text boxes are stationary and won't 'zoom' since they are not part of the theme's animation.

  • Does texting and/or sending photos via text use up my data allowance?

    I am just trying to confirm this for a friend---that texting and sending photos via text does not use up my data allowance. Can anyone confirm this for me?

    After thinking about this a bit more, we would need to know HOW you text and send photos.
    Sending SMS/MMS text/photos DOES NOT use up your data allowance. This is what I assumed when you simply said "texting and sending photos via text".
    After thinking further, SMS/MMS is not the only way people "text and send photos via text. For example, iPhones can use iMessage and THOSE messages would use up your data allowance for actual messages sent via iMessage to/from other iPhones.
    Other apps have their own texting capabilities which will ALSO use up your data allowance. Examples would be Facebook, Skype, Twitter, Instagram, Tango, etc...
    If you are simply sending via SMS/MMS, then no you are not using up your data allowance. If you are utilizing some other method, then the answer could very well be yes.

  • I would like to add text and draw on photos. Is this possible in iPhoto or is there an app? Thanks!

    I often need to write a note on a photo or circle something on a photo... is there an app that can help?
    I would like to be able to do this with iPhoto on my iPad, but am interested in a user-friendly app as well.
    Thanks!

    Lori ~ Welcome to the Support Communities. "A multi-usage photo annotation tool":
    http://itunes.apple.com/us/app/a-signature-lite/id423141311
    "Add text annotations to your images":
    http://itunes.apple.com/us/app/iris-photo-suite-for-ipad/id431534775
    "Add text boxes or bubbles of different styles, colors and fonts":
    http://itunes.apple.com/us/app/photogene-for-ipad/id363448251
    ...More may be found by doing THIS.

  • Why am I losing text and background when exporting from InDesign?

    Hi, I am VERY new to graphic design & working with InDesign for the first time.  When I export... to pdf, the 2nd page of my 3 page indesign document loses several (but not all) text boxes and the background.  Anyone know why this is?? PLEASE HELP!! this is time-sensitive!! Thanks so much in advance!!

    Layer set to not print? Some description of the file and contents as well as the OS and version and the version of ID would be of help.

  • Inverse Text and background...

    Strange as it may seem, I really like how the inverse of my text looks when I highlight it.
    Is there any way to just inverse the entire canvas to get this effect?
    thanks!

    Do you have an actual black background, or is it transparent? What if you put a black rectangle behind the text on the same layer and then invert that layer?
    Patrick

  • Constrasting text and background colour

    The new vision system is an improvement BUT for vision inpaired viewers white text on a pall gray background is almost unreadable. 
    HELP
    How do I change this?

    I'm afraid you can't.
    I am vision impaired and thought at first they had lost their collective marbles.
    They have in so far as that first page is awful and does need altered however the new highlighting system as you scroll through is much more readable that before.
    We have gained some advantage in the change but in that it is more readable in parts and worse in others.
    Hopefully it will be corrected in the future as their has been a lot of feedback on this issue.
    It might be worthwhile taing your complaint to the more official level and letting the MODS know as they can pass it on to the Vision Team.
    http://bt.custhelp.com/app/contact_email/c/4951
    You can fill in  the  form above to let them know.
    Life | 1967 Plus Radio | 1000 Classical Hits | Kafka's World
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Helpful Post?
    If a post has been helpful, say thanks by clicking the ratings star.

  • Menu text and background colors

    The menus in Acrobat Reader on Windows 7 seem to use:
    - System colors for text,
    - Forced grey for background color.
    My Windows 7 is setup to have light grey text on dark background. All other programs honor this. The result in Reader is that I have light grey text on grey background, which is not readable:
    The same is valid for the bookmarks field, as shown above.
    It's either:
    - take system colors for both background and foreground (preferred)
    - force colors for both background and foreground.
    You'd think that Adobe would know about that kind of problems...
    Is there a work-around?

    You have to clear your browser history/cache or all of the links you have visited in the past (while previewing) will show as the visited style which is a white background and black text.

  • Change text and background color when multiple tracks of text

    I am finishing up a project and the client wants the final title card to be white background with colored text. I have read a bit about how to do this but I can't fit it into my situation. My text is on four different tracks, each piece of text "For more information," "email address", "contact", "phone number" So I need to change each one. But the way that I have read about it, it seems those answers are only for one level of text.
    Help?

    You should probably be using boris title 3D rather than the default text generator.  title 3D is part of the fcp default install and is available in the same generator options where the text generator is found under Boris.
    It will allow you to conbine fonts, font sizes, etc in the same clip.
    And then you'll just have to put a color matte on a video track under the clip.
    You can of course just put all your text clips on a track above the color matte and manually change the color of all the text.

  • Images are ghosted, text and background colors are reverted

    My 12 in Powerbook fell from its stand on the wireless keyboard. Now all images are ghosted and the text has gone from black to white and the background has gone from white to black. On startup everything is fine until everything is loaded, then the changes kick in, colors reverse, and the images become ghosted. What do I do?

    Joseph
    It might be possible that the "Switch to white on black" setting in Universal Access has been activated.
    Try pressing the following key combination: apple-alt-control-8
    EDIT: It may be worth checking out the PowerBook with the Apple Hardware Test.
    2.0GHz MacBook, 15" 1.25GHz/12" 1GHz PBs, 2xPPC Mac minis, 12" iBook G4,   Mac OS X (10.4.8)   Cube, 2xTAMs, iPod 4G & nano 2G, 1G & 2G iPs, AEBS, AX

Maybe you are looking for