How to get clear small text on black background?

hi,
I'm trying to get some clear small text on black, in the letterboxed area below some video. I've been trying 14pt, with a bit of tracking, using Arial, Helvetica, Skia, and Lucida Grande. They all look clear enough when rendered out to QT, but on my production monitor they dont look good. When I compress it for DVD (using very high bit rate settings) they really fall apart.
I even tried making the text in After Effects, which is what I do with my subtitles, but those are larger (about 24points) and for some reason the small text generated in After Effects looked worse than the native FCP text.
Does anyone have suggestions for the best combination of font and point size to give me clear small text for a black background? I dont mind going up a few point sizes.
Any suggestions would be highly appreciated. Thank you....

Hi all,
Many thanks for all the suggestions.
I wound up using Helvetica 18pt, white set at 85%, and applied stib's de-interlacer (http://www.pureandapplied.com.au/plugins.html).
I tried Guassian Blur set to 0.1 but that made it less clear and didn't really help with the flicker. I also made sure to set the position to an even numbered line (I'm using uncompressed)
When I tried Helevetic 17pt, the "a" and the "e" both fell apart towards the top of the letter making them hard to read. I would guess that "g", "i", and "j" would also have problems had I used them.
I didnt have enough time to test, but I wonder if there isnt some font that is better suited for this kind of work than Helvetica. Futura is nice and clean, but a bit thin. Helvetica Neue is also good, but not much differnet than Helvetica. Verdana and Lucida Grande might also be good choice. What do you all use?
thanks again...

Similar Messages

  • How do you create transparent text with black background in LiveType for use in Final Cut??

    I would like to bring in movies or projects from LT that have transparent text ("alpha" layer?) and a solid background. The goal is to layer fcp video under the animated text generated in LT so that the video layer fills the transparent text layer. I know you can matte to movie or image in LT, but would prefer to do this in FCP. Long story short, need a text transparency from LT. Thanks!

    Video track 1: Your background.
    Video track 2: White text on a black background.
    Video track 3: The fill image for the letters.
    Right click on the clip on track 3. From the drop down menu, choose Composite Mode > Travel Matte Luma.

  • How to get Grand Total Text in ALV GRID

    Hi Folks,
    I am able to get the SUBTOTAL TEXT .....But i need...
    How to get Grand Total Text in ALV GRID Display...
    Can any one give a Solution for this...

    Hi Surendar,
    Check out this code.. this is showing Total Text in Toal line in the very first column.
    REPORT  zsales_ord_det_1                        .
    TABLES: ztable_10.
    TYPE-POOLS: slis.
    DATA: BEGIN OF it OCCURS 0,
    srno(6) type c,
    name LIKE ztable_10-name,
    age LIKE ztable_10-age,
    END OF it.
    DATA : BEGIN OF it_temp OCCURS 0,
    name LIKE ztable_10-name,
    age LIKE ztable_10-age,
    END OF it_temp.
    DATA: i_fieldcat  TYPE slis_t_fieldcat_alv,
          wa_fieldcat TYPE  slis_fieldcat_alv.
    DATA: v_repid LIKE sy-repid,
           i_index TYPE STANDARD TABLE OF i WITH HEADER LINE,
           gs_layout TYPE slis_layout_alv,
           gd_layout TYPE slis_layout_alv,
           i_sort TYPE STANDARD TABLE OF slis_sortinfo_alv,
           wa_sort TYPE slis_sortinfo_alv.
    START-OF-SELECTION.
      v_repid = sy-repid.
      SELECT * FROM ztable_10 INTO TABLE it_temp.
      LOOP AT it_temp .
        it-srno = 'Total'.
        it-name = it_temp-name.
        it-age = it_temp-age.
        APPEND  it.
      ENDLOOP.
    END-OF-SELECTION.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
       EXPORTING
         i_program_name               = v_repid
         i_internal_tabname           = 'IT'
      I_STRUCTURE_NAME             =
      I_CLIENT_NEVER_DISPLAY       = 'X'
         i_inclname                   = v_repid
      I_BYPASSING_BUFFER           =
      I_BUFFER_ACTIVE              =
        CHANGING
          ct_fieldcat                  = i_fieldcat[]
       EXCEPTIONS
         inconsistent_interface       = 1
         program_error                = 2
         OTHERS                       = 3
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    wa_fieldcat-row_pos = 1.
    wa_fieldcat-col_pos = 1.
    wa_fieldcat-fieldname = 'SRNO'.
    wa_fieldcat-tabname = it.
    append wa_fieldcat to i_fieldcat.
      LOOP AT i_fieldcat INTO wa_fieldcat.
        IF wa_fieldcat-fieldname = 'AGE'.
          wa_fieldcat-do_sum = 'X'.
          MODIFY i_fieldcat FROM wa_fieldcat.
        ENDIF.
       IF wa_fieldcat-fieldname = 'SRNO'.
         Hide this field so that it can display it's content i.e.
            Total text in Subtotal level
        wa_fieldcat-tech = 'X'.
          wa_fieldcat-no_out = 'X'.
          MODIFY i_fieldcat FROM wa_fieldcat TRANSPORTING tech no_out.
       ENDIF.
      ENDLOOP.
    wa_sort-spos = 1.
    wa_sort-fieldname = 'SRNO'.
    wa_sort-up = 'X'.
    wa_sort-subtot = 'X'.
    APPEND wa_sort TO i_sort.
      gd_layout-no_totalline = 'X'.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                       = ' '
         i_callback_program                        = v_repid
      I_CALLBACK_PF_STATUS_SET     = ' '
    i_callback_user_command                = 'USER_COMMAND'
      I_CALLBACK_TOP_OF_PAGE         = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE  = ' '
      I_CALLBACK_HTML_END_OF_LIST    = ' '
      I_STRUCTURE_NAME                       =
      I_BACKGROUND_ID                        = ' '
      I_GRID_TITLE                                  =
      I_GRID_SETTINGS                          =
         is_layout                                      = gd_layout
         it_fieldcat                                      = i_fieldcat[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
         it_sort                           = i_sort
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      I_HTML_HEIGHT_TOP                 =
      I_HTML_HEIGHT_END                 =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
          t_outtab                          = it
       EXCEPTIONS
         program_error                     = 1
         OTHERS                            = 2
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    Regards,
    Seema

  • How to get the short text in tcode "msc3n" -- Basic data 2 -- short text.

    I have to display the short text in my report output.
    How to get the short text in tcode "msc3n" ( msc3n --> Basic data 2 --> short text.)?
    Is there any function module availble to get this short text or is this stored in any data base table ?
    Please help me. Your help will be highly appreaciated.
    THANKS.

    Hi,
    Use FM 'READ_TEXT' to get this values.
    Say for exampele my material is  1900001 and batch is 0000000517.
    Then my parameters to the FM will be as follows:-
    Text Name       000000000001900001    0000000517
    Language        EN
    Text ID          VERM
    Text Object     CHARGE
    This information you can get as follows.
    Open the short text window in the text editor.
    Here you can enter the long text.
    In the editor Go to Header and you will find the details.
    Please note that the text name will comprise of
    Material
    Batch
    Plant
    Stor. Location
    if all the details are given.
    I hope this helps you.
    Regards,
    Ankur Parab

  • How to get the bold texts in JTextPane?

    How to get the bold texts in JTextPane?

    I believe you need to look at the Elements of the Document. Use the Document.getDefaultRootElement() method to get the first root Element. From there you can iterate through all the Elements. You should then be able to check the attributes of the element to see if it contains the Bold attribute using something like:
    AttributeSet attributes = element.getAttributes();
    if ( attributes.containsAttribute(StyleConstants.Bold, Boolean.TRUE)
    // do processing here

  • HOW CAN GET BACK MY TEXT MSG & PICTURES DELETED

    HOW CAN GET BACK MY TEXT MSG & PICTURES DELETED I REALY NEED 

    lilsimms1228 wrote:
    How can I get an overview of old text messages and phone call [personal detail removed]
    If you are the account owner, you can access the last year of calls records and the last three months of message summary (date, time, number texted, there is no where to see the text context) through your online account. Click on the HOME Tab once logged in and choose PRINT BILLS and then click on the pull down menu to choose any invoice for the last twelve months to view.

  • How to get PO header text in PO list

    Hi All,
    Please let me know how to get PO header text in PO list.
    Thanks,
    Ama

    Check this link for answer
    PO Header Text

  • How to get the Arabic text to speech on N8 ?

    How to get the Arabic text to speech on N8 ?

    Unfortunately it is not currently an available option:http://www.nokia.com/global/support/text-to-speech-s60-32-downloads/
    Happy to have helped forum with a Support Ratio = 42.5

  • How in Illustrator I write text with transparent background ?

    How in Illustrator I write text with transparent background ?

    that is correct. You open it in AI and you have an option to use area text, you first take the text tool and drag to make a text frame, which wors like it does in a layout program. Or you click the text tool any where on the canvas and just start typing if you want to make another line you either hit the return (enter) key or for  soft return use shift/return (enter).
    The default is a transparent background.
    All art i Illustrator is on a transparent background unless you add an object behind other objects that has a fill color.

  • Why Adobe Acrobat is not recognizing text on black backgrounds

    I was surprised when I first discovered this. I thought Adobe was supposed to have the best OCR software in in the world, I tested in on few backgrounds, white text on black background - not working, yellow text on black background - not working..
    I was disappointed, I had to use onlineocr, which did better job than Adobe Acrobat, it discovered all kinds of texts, bold fonts, text on multi-colored background - things that Acrobat OCR couldn't recognize..

    Hi Anubha,
    Thanks for your help.
    In Finder ...... > Twain Data Sources I found two files, "Canon MP980 series Network.ds" (1.9Mb) and "Canon MP980 series.ds" (2Mb). Next to Kind for both it says "Application". I don´t see the word "Package" or "PowerPC" or "Universal". However, under Where, it says "Macintosh HD>Library>Image Capture>TWAIN Data Source. This is also the same information I find on my Macbook Pro (OS X 10.10.3), but still running Acrobat CC (not upgraded yet, thankfully). I can still scan using my MBP.
    I was able to scan using Image Capture.
    I did not have time to go through the procedure of logging in as root user.
    Frankly, this seems way to complicated. There has to be an easier fix to the problem.
    I also checked Canon´s website for updated driver files, but there are none for Yosemite.
    Regards,
    Tor-Eddie

  • I hate white text on black background - is there any way to change the look of pse9?

    I hate white text on black background - is there any way to change the look of pse9?

    I agree and very disappointed with the look of this Photoshop elements 9 screen

  • How to get CLEAR photos on the Touch?

    I love my iPod touch, but there's one thing that has always bothered my - photos sync'd through iPhoto-->iTunes are grainy and have bad color. Until now, I've been unable to prove this - but finally I've found a way to prove that it's not just in my head. So, I'm wondering if anyone knows a way to get clear photos on the Touch ... ?
    First of all, after using the app "PhoneView" to download my sync'd pictures from my iPod BACK to my Mac, I've noticed that the resolutions are different for pictures, depending on whether their orientation is portrait or landscape. For portrait 4x6 images, the resolution is indeed 480x320. However, for landscape orientation, the resolution is consistently 640x426. I think it's kind of odd that iTunes would be sizing photos differently depending on their orientation ... I usually have my full-resolution pictures in iPhoto and sync those images through iTunes, but today I also tried manually resizing my pictures to 640x426 (landscape) and 480x320 (portrait) and then syncing them as a folder, rather than through iPhoto. The results were the same as doing it through iPhoto: disappointing. I've put together a sample, below:
    !http://www.mavisxp.com/ipod/iTunes_compression.png!
    and another example here.
    As you can see, even the manually resized images are turning out horribly grainy. What's even more disappointing than the image quality, however, is the file size: my original JPG is 84KB, but the iTunes' "optimized" JPG is five times as large (456KB) with inaccurate color and awful grain to boot. I mean, it looks like someone dribbled a basketball all over a glossy print (seriously, that grain's pattern is an exact match with the grain on a basketball) ... Is it supposed to look like that?
    +After examining the EXIF data for both pictures, I've noticed another oddity which explains the bad color at least - when iTunes 'optimizes' pictures for the iPod, it apparently assigns them your monitor's color profile! Was this just an oversight that has yet to be corrected? When I export my pictures from Lightroom to iPhoto, I always use the sRGB profile because it's the most standard profile to use when sharing pictures (posting online, emailing, etc) ... My iMac's color profile is a custom Spyder2Pro profile, but that profile is only accurate for THIS MONITOR - certainly not my iPod! Anyway, I've uploaded the original pictures if anyone is interested in checking them out - you can download them in a zip archive here.+
    This is the second iPod I've noticed grainy pictures with, so I know it's not just defective hardware. So I guess my question is simple: does anyone know of ANY way to get clear photos sync'd with the iPod Touch or iPhone? I've poked through plists in iTunes.app and preferences, etc - but I haven't found anything. Any ideas?

    Thanks for the reply, Duddo.
    I guess you're right, Apple probably just wanted to simplify the syncing process and make it consistent for all users. And no, most users probably won't notice that awful grain and poor color reproduction.
    That said, I think it's a real shame to waste the capabilities of the iPhone/Touch like this. Wasting storage space is asinine (increasing file size 5X when 'optimizing'?!) not only due to the limited storage space available in the first place, but also due to the fact that smaller files are quicker and easier to load and manipulate. Overwriting color profiles is just sloppy coding, an oversight - hopefully one they'll soon fix. But the biggest problem for me is that the pinch/zoom functionality is USELESS because if you zoom in at all, the grain is so blatantly obvious. I found an old discussion thread on another forum which mentions this problem, according to several posters there, the grain problem was introduced AFTER the iPhone launched (meaning it can likely be corrected in a firmware update or an iTunes update) ... You can check out that discussion here, if you're interested:
    http://www.everythingicafe.com/forum/iphone/not-optimize-photos-8264.html
    Anyway thanks again for your reply. I'll keep my eye on this thread and if I hear anything about this issue (or a workaround) I'll be sure to post it!

  • How to get Material long text / Sales Text

    Hi,
    when I have created a service order I have enter Long text in Tab Item Details , i.e in sales Text I have entered some text , So can any one tell me how to get this text as I have to show this text in invoice printing
    Thanks
    Bobby

    600101202274700000001
    For a Particular Text name Of Item Level operations
    1st 3 character denotes client id in this case 600 +
    2nd 10 character denotes AFKO-AUFPL with respect to the production order  in this case
    1012022747 +
    last 8 character denotes the operation line item numebr

  • How to get key and text value of field "TNDRST" in VTTK from R/3 into BI

    There is one field call "TNDRST(Tender Status)" in SAP table VTTK in R/3. We can find  key value, but we are unable to find text for this field in VTTK. However we can see text value if we double click domain:TNDRST and go to value range.
    Questions, how to get key value and text of TNDRST together in BI. Do we need to create a master data source for TNDRST text information in R/3 and extracting into BI, if yes, how to? Are there any easy way to do it??
    Thanks,
    Sudree

    Hi Sudree,
    You need to create a generic Text Datasource to extract this information into BI System.
    1. Create a generic DS based on Table: DD07T
    2. The fields should be put in the extract structure.
              DOMNAME (Make this as Selection in the DS ) -
    Filter the Domain Name
              DOMVALUE_L -
    Key Value of Tender Status
              DDTEXT -
    Text / Description
              DDLANGUAGE -
    Language
    3. DD07T is the table with all the Domain names & their values, so in the Infopackage enter the Selection Value for DOMNAME as 'TNDRST' and then run it.
    Or you can create a view out of this table based on DOMNAME filter as 'TNDRST'.
    Regards,
    Chathia.

  • How to get only partial text of a paragraph into the table of content?

    Hi guys,
    currently I'm working on a manuscript based on the publication manual of the American Psychological Association.
    Unfortunately, there is some sort of heading that's placed right in front of further text. Here an example:
    +This is my heading.+ Now ordinary text formatted differently should follow.
    Does anyone here know, how to get the text of the heading (but not the following text) into the table of content? For as far as I know I can't format the heading as a different paragraph than the following text.
    By the way, I use pages'08.
    Thanks for your help

    Hi Dennis,
    thanks for your suggestion, unfortunately I already tried that and it didn't work. I have created several unique styles. Problem is, I need two diferent styles in *one paragraph* - one style for the "heading", which is consistent to the APA manual not an own paragraph (sorry, not my idea...), and another style for the following text. As my example above shows, the heading is followed by usual text and I may not press return after the heading and switch to a new paragraph..
    It has to look exactly like this:
    +heading in italics.+ Now heading is followed by usual text without changing the paragraph or starting a new line. Blurb blurb blurb whatsoever blurb blurb. The text goes on an on and an on you see.
    I can't format the heading differently than the text (because if I try, the whole paragraph is formatted this way) and so I can't add just the heading to the TOC. Do you see what my problem is? Got any other suggestion?

Maybe you are looking for

  • Problem in using formula when key figure is commulative

    Hi all , I am problem in generating the report when we use the  of cummulative key figure to the formula.. consider the following senerio.. Date      KF1 KF2 KF1(C) Kf2(C) Formula (KF1(C) - KF2(C) 5.10.2005 1   2   1       2      -1 (wrong result) 6.

  • Line Chart does not display grid lines for x-axis (apex 2.0 / 3.0)

    Hello, is there an option to display x-axis grid lines? I set up an SVG chart (Line) but only IE displays y-axis grid-lines. I set the "Show Grid Line" - value to "enable" Does any body has an idea how I told apex to display x-axis grid lines also. B

  • Audio mixes not correct when inserting nested sequence.

    Ah, yet another anomalous behavior issue... I commonly edit packages for a program I regularly work on, then drop the nested sequences into the show timeline...it's easier that way, and the EP likes it that way. However, I occasionally come across an

  • New security required for managing rejections in UAR?

    I have been told by someone at SAP about several new authobjs required for SP06 UAR "reject" features.   Objects include:    ManageRejectionsGenerateAction    ViewManageRejectionReasons    ManageRejectionsCancelGenerationAction    ViewRejectUsers   

  • Using "Never Share" Property in child level

    Hi all, Can anyone explain the usage of never share property at children level.Say for Eg: Case 1: Margin(Parent) - Dynamic Calc                Sales(Child1) (+) Store     1000      COGS(child2) (+) Never Share     200 Value i get for Margin is 1200