Pixelated coloured fonts ...

I put a blue text layer (the name of the shown person)
on top of a clip, but unfortunately the text is blurred and pixelated
at the edge.
I built it in FCP and in BORIS.
If I change the colour to black or white, the edges are fine!
Does anyone have an idea, how the get a sharp edge on a blue text?

Sorry, wrong forum!

Similar Messages

  • How to get pixel colour?

    Is there any way to get pixel colour from specified point? Example: colour = image.getPixel(x, y);
    J2ME/MIDP 1.0
    Thanks!

    {color:#800000}*I am happy to compare the two pixels of same image using this code in Java:*
    {color}
    Image ori, nw;
    public void init()
    { ori = getImage(getDocumentBase(),"flower.jpg");
    int pxl[]= new int [65536];
    PixelGrabber pg = new PixelGrabber(ori,0,0,256,256,pxl,0,256);
    // Image is stored into Array
    try{ pg.grabPixels(); }
    catch(InterruptedException e) {}
    for(int i=0;i<65536;i++)
    { int p = pxl[i];
    int ri = (0xff & (p>>16));
    int gi = (0xff & (p>>8));
    int bi = (0xff & p); // Take the RGB value of each pixel
    for(int j=0;j<255;j++) // Chk. other similar pixel in color range of 0 to 255
    int q = pxl[j];
    int rj = (0xff & (q>>16));
    int gj = (0xff & (q>>8));
    int bj = (0xff & q);
    if ( (ri==rj)&&(gi==gj)&&(bi==bj)&&(!(i==j)))
    { ri+=70;//if (ri<0) ri = 0;
    gi+=70;//if (gi<0) gi = 0;
    bi+=70;//if (bi<0) bi = 0;
    pxl[i] = ( 0xff000000|ri<<16|gi<<8|bi); // Change value
    else
    pxl[i] = ( 0xff000000|ri<<16|gi<<8|bi);// Keep as it is
    Email : [email protected], Profile: www.aribas.edu.in/Mr.Brijesh_Jajal.htm

  • Changing Pixel Colours

    Hi,
         Is there a way of changing pixel colours in (say) a Graphics (or image) object? I want to be able to create a Graphics object, and then change pixel colours, as determined by the results of a numerical simulation, as results are generated.
    Any help appreciated!

    You can use the drawLine to draw a one-pixel line in the right place.
    Alternatively (and probably better) use an int array to contain your image data and use a MemoryImageSource to generate an Image for display from that.

  • Display is adding pixels to fonts and jumping around

    My 3.5 year old 2005 Powerbook 167 is now adding pixels to fonts randomly..
    It adds them both vertically and horizontally. It does it near the mouse sometimes.. sometimes the whole screen shifts by a few pixels.
    It does it also to the secondary monitor..
    It seems to be stable but is very annoying..
    Is the video card going bad? Do I need to replace the motherboard in order to fix this?
    Anyone else have this problem?

    I ran tried to reboot and run the hardware but it crashed when I tried to boot from that CD.
    I ran techtook and it found nothing wrong.
    It does it all the time. Not too bad.. just a few pixels moving around..
    When running any flash the cpu is just pegged.. I might have fried it running an app..
    Ebay has a new logic board on auction for $175 the regular price from apple is $550..
    It is a bit of work to replace the logic board but I have done similar jobs on my last titanium PB, and it worked. about 50 screws.. and 20 parts to remove and reassemble.

  • Check pixel colour

    In a game, I want to check if a ball is 'in or out' by determining the pixel colour it has landed on - in this case the stage background colour. Can anyone help with the AS3 code? Thanks.

    you have to use the bitmapdata class to determine pixel color but i'm not sure that makes sense for whatever you're trying to do.  to be sure, you can't determine the stage color using it.
    in addition, there is probably a better way using hitTestObject or hitTestPoint to do whatever you want.

  • Relation between the Height in Pixels and Font Size?

    Hi All,
    I wanted to find the relation between the Font Size and the Pixels that it will occupy. What i want to do is i have an Icon and a Label. The icon size i need to resize to the Half the height of the Label. But the font Size does not reflect the height in Pixels. Please can you help me find the right way to resize the Icon?
    Thanks in Advance,
    Sameer

    FontMetrics fm = label.getFontMetrics( label.getFont() );Once you have the font metrics you can use the getHeight() method.

  • Accessing pixel colours for 2 layers

    Hi,
    I know I'm probably missing something but I can't seem to get my head around how to access what colours individual pixels are.
    I suppose I should briefly describe what I'm trying to do so here goes. I need to make a photoshop plugin for a college project. The functionality required has been provided to me in the form of an external dll which I need to call. Two of the paramaters needed to do this are linear unsigned char arrays for the entire two images which have values for each pixel dependent on their colours . The plan is to have the background layer be the image the user wants to modify and a second layer where the user indcates what they want to modify by making strokes of varying colours. As such I need to create these char arrays based on the pixel values. The background one will simply be a case of storing the colours as unsigned chars and the second one will require assigning specific numbers based on the colours.
    From what I have read the ReadPixelsFromLevel(...) function seems to be my best bet, although I could be wrong there, but I'm not quite sure what to do with the destination once values have been read there.
    Any insight would be appreciated as my deadline is looming ever closer and my progress has stalled somewhat.
    Thanks.

    I think your assumption was right, you just need to get different channels descriptors for ReadPixelsFromLevel function.
    you can obtain them from the filterRecord->documentInfo structure.
    filterRecord->documentInfo->targetCompositeChannels is your writable channel (eg. red).
    if you want to read from the layer other than active, you should first get the layersDescriptor and then its channelDescriptor,
    eg.  filterRecord->documentInfo->layersDescriptor->compositeChannelsList.

  • Discoverer: Layout of crosstable (colour & font)

    Hi,
    1. I'm looking for a solution to change this green-gray colour oracle is alwayse using eg in crosstables. All other cells colours can be changed but not this one - and it looks ugly in the portal...
    2. my reports or crosstabs are in a small font size (8 or smaller). But if I load them as a portlet in the portal, the SHWON size changed to eg 12, columns dont fit anymore etc. I wonder if I have to minimize the font in D-Plus to 4 or smaller to get a nice LOF in Portal or is there another solution?
    P.S. One assumption is that Portal is restricted to a minimum font eg to 10. Is this correct?
    Thanks :-)

    You can make some adjustments with code in userChrome.css
    I use code like this for that toolbar area to add borders to the toolbar and also adjust the height.<br />
    I use the Tango icon pack to get some colors on the toolbar icons.
    <pre><nowiki>/* toolbar (menu/nav) height */
    #navigator-toolbox toolbar {max-height:26px!important;border-bottom:1px solid ThreeDShadow!important;-moz-appearance:none!important;padding-bottom:2px!important}
    #navigator-toolbox menupopup menu, #navigator-toolbox menupopup menuitem {height:14px!important;font-size:12px!important}
    #navigator-toolbox toolbarseparator {margin:0 -4px !important}
    #toolbar-menubar {border-top:1px solid ThreeDShadow!important}</nowiki></pre>
    Add code to userChrome.css below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder

  • Change colour font for active line in clearing transaction

    Hello,
    Our system is SAP ECC 6.0 with SAP GUI 710. When the signature design is activated, we have a problem of colour contrast between active/desactive lines in the transaction for clearing document (F-32 for example) : the active line is in dark blue and the inactive is in black. So it is difficult for several users to clearly see the difference between the active/desactive lines and they must choose the previous design (Enjoy or classic design). In fact, in classical desing is the active/desactive line in red/black or in the enjoy in Electrical bleu/black.
    I will add that it is not possible to change the colour theme in the design options in our configuration (perhaps is something missing ?).
    Does someone know if there is a possibility to change the colour policy ?
    I thank you in advance for your help.
    Céline

    up !!

  • Is it possible to trick up my email i.i. bold,italic, colour, font??

    I think my outgoing emails and for that matter incoming are plain flat & boring, is there a way I can trick them up - change font styles, size, bold, italic's etcetera?
    I shouldn't blaspheme but in windows I have these everyday tools, like they shouldn't be special?

    Nothing in the Mail App. If you're not happy then look for apps that can

  • V8.1 -- how to modify the colour/font, resize, disable attribs of all class

    Hi,
    I tried to follow the instruction in the Help section, i.e. by selecting multiple items while keeping CTRL or SHIFT pressed, and then do it by right clicking etc.
    I am able to do all these changes for individual classes, but that's a pain. I'd like to have a way to do it for all classes in one go. Any way to do so ?
    thanks,
    bd

    Sorry for the inconvenience but currently there's global settings for changing the color/font as well as hiding attribute compartments for classes. Each class has to be changed individually for certain properties for now, eg showing/hiding attribute/operation compartment. Other properties can be changed for multiple selected elements, eg, color/font, resize, etc. through the popup menu. Popup menu Edit->Set Dimension can be used to change the size of multiple selected classes. Class->Font | Font Color | Background Color | Border Color can be applied to multiple selected classes.
    I think we already have issue filed on this, which we'll be redesigning our preferences in the next release (NB6.0).

  • The font "Georgia" appears blurred and the pixel fonts I regularly view and use (such as Terminal and Silkscreen) do not appear properly.

    So in a few of the websites I use (namely livejournal and dreamwidth), I always use georgia and either terminal or silkscreen for an account layout, but ever since upgrading the 19.0 beta, georgia looks readable but blurry while every word styled in terminal or silkscreen appears as a sans-serif font. Is there a way to go around this? Something in the encoding used?

    The terminal font is probably a bitmap (raster) font and Firefox no longer supports such fonts, so you won't see them.
    The Silkscreen font is available as a true type version and should work in Firefox.
    *http://www.google.com/search?q=Silkscreen%20font
    Such pixel (bitmap) fonts only look good in their native resolution, so make sure that you aren't zooming web pages.
    Reset the page zoom on pages that cause problems.
    *<b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • Font changing into 4 colour.

    Hi all,
    When i change or alter(adding a ling) a pdf file,which has balck colour font when it was creted,its whole font content becomes 4 colour(CMYK).
    I was doing this with acrobat professional 4.0,even i tried 5.0 and 6.0,but same problem comes.Operating system is Win2000.
    what could be the reson?anybody faced this problem?
    thanks in advance.

    Wrong forum. This is for Creative Suite issues. Try the Acrobat forum.
    Bob

  • How do I change the background colour on notes. I need a darker background due to a visual issue. Apple has now discriminated those with visual issues.  I am so not happy with many of the new changes because of this.

    I am so not happy with the new changes especially when it come to the ability to change background colours, fonts and font sizes/ colours... Does Apple really think that their only audience is the young cool crowd or people who do not have a visual impairment.  Think before you make changes to your software and programs.  You WILL lose more people to androids if you continue this way.
    At least give users the ability to make apps like notes their owned by allowing them to pick the style, theme, background and colour, font size and colour. 
    A very ****** off Apple user who is now looking at Androids.

    Hi Tricia,
    I'm sorry but I don't see an ideal way to do this. Is it the yellow label text, e.g:  "New" against the white background which is causing the difficulty?
    The only way I've found of getting the colors to change in Notes is via Settings>General>Accessibility>Invert Colors but then it looks like something has barfed all over your screen.
    I'd be very, very surprised if Apple do not fix this, firstly because I believe "Accessibility" is a legal matter and secondly because they will not want to cause difficulty for their customers.  We have to remember that this is a major, major overhaul of iOS, it has essentially been taken back to the drawing board and done from scratch again, it may take a little time, but I'm sure they will fix these issues.
    Regards,
    Steve

  • Global colour changes

    Hi,
    I saw a tip for changing text attributes across multiple Text layers by linking them, then holding shift on any one of the linked layers to apply the attributes (colour, font, size) to all.
    However this doesn't work for me in CS6, and was wondering if it's outdated? It would be a great way of making quick changes without having to search every layer and making sure each one is selected.
    Many thanks

    With Photoshop CC, try this:
    Link your layers.
    Then when you want to change all the color at the same time, right-click one of the linked layers and choose Select Linked Layers.
    Voila, now they're all selected together and you can change the color.
    -Noel

Maybe you are looking for

  • How to download and upload long text for project, WBS , Network,

    Hi all, I have two isssues. 1) I am extracting Projects, WBS , Network , Network activity and network activity element from a SAP 4.7 system using bapi's BAPI_PROJECTDEF_GETDETAIL BAPI_PROJECT_GETINFO BAPI_NETWORK_GETINFO BAPI_BUS2054_GETDATA I am ab

  • I cant use Justification when a TEXT Layer is Selected ...

    Hi ... please take a look at this image and tell me whats the problem ?! http://img3.tinypic.info/files/casc3lpzzmxpt9hu33hl.gif when i select a text layer to do a justification on it the menu goes off ! but when i select another Layer it appears ! h

  • Urgent.   Scammer/Spammer.  Posts need to be removed.

    http://discussions.apple.com/profile.jspa?userID=329778 This user needs to be banned and all posts removed. Completely out of control.

  • List the directory access time

    Hi All I want to sort all directories in a file system,which is not accessed for last 1 year,can anybody help me in this

  • Port 7200 conflict?

    Hi, This post is actually about a problem that we're having with an Oracle Identity Federation (OIF) installation where the Oracle Apache/OHS is dying periodically, but I think that this problem is something to do with the infrastructure. This instal