Ability of changing color of scanned books

Hi
I scan book by scanner in Photoshop and afterward i insert scanned pictures in MS word doc and then i use Acrobat Pro 9 for making PDF.
I downloaded some Ebook that was created in PDF.
There is a likeness between my PDF and those PDFs:
Both made by scanned pictures of paper books. their stracture only made by bitmap images.
There is a diffrent between my PDF and those PDFs:
When in prefrences -> (accessibility --->Document colors Option):  i changed background color:
1) in my ebook background of scanned images will not be changed and stay in white color!
2) in those ebooks background of scanned images will be changed to choosed color!
for exam this link: http://txt.ir/ebooks/science/computer/programming/PHP_FA/PHP_FA_(www.txt.ir).pdf
I want to create Scanned PDF ebooks with ability of changing background of sccaned images!
Please say me how i can create such ebooks?

Hi
before this post i ask one question.
I think my question is about acrobat pro settings and file format and not about photoshop.
Please notice:
I can unlocked one page of one scanned PDF ebook.
link 1: is original unlocked pdf:
http://www.4shared.com/file/165219386/7995c426/white_is_not_deleted_unlocked.html
link 2: is a PDF made by  deleted white space and make a transparent gif:
http://www.4shared.com/file/165219387/e92f4b0/white_color_is_deleted.html
also i attachet that files.
Please download both links.they are less than 150KB.
for compare open them in adobe photoshop.
you see link1 is a photo that white space has not deleted.
but link2 is a photo that white space has deleted.
white color in link1 like link2 in accessibility will be changed by order of adobe reader users!
I want to make PDF ebook by scanning real books.
if i want to delete white space it use very time.
but it seems in link1 scanned file save in one file format that give ability of changing white space in adobe reader.
also i think we must change some settings in adobe acrobat pro for this ability.
please help about this.
thanks.

Similar Messages

  • Change color of scanned line art

    I'm want to scan a line art of a leaf, make the white background transparent, and change the black lines to red. I can scan the art to Photoshop, get rid of the white background, but I can't change the black lines to red. After scanning, the background layer is locked and won't allow editing.I tried scanning as a bitmap, b&w scalable, 16 color, etc. Nothing works.

    Image > mode > grayscale, then image > mode > RGB. Then create a solid fill layer layer > new fill layer > solid color. Pick your color and set that layer's blend mode to screen.
    Not sure how you're deleting the background, while keeping the leaf on the background layer. But if you make it a grayscale or RGB image, you should be able to convert the background layer by going to layer > new > layer from background.
    If you do manage to get the layer off the background you can clip the solid fill layer to the leaf layer by having the solid fill layer active and pressing ctrl-alt-g, or by alt-clicking the space between the two layers in the layers panel (you'll see you cursor change).

  • My typewriter toolbar is graying out the ability to change font size, type, and color.

    My typewriter toolbar is graying out the ability to change font size, type, and color.

    Here's what I have done in the past. Maybe not elegant, but
    it works. (I
    use PHP, but I'm sure you can modify for ASP.)
    In the HEAD of each web page, include regular old embedded
    STYLE tags,
    but INCLUDE an external PHP file:
    <head>
    <style type="text/css">
    <?php include('styles/testcss.php'); ?>
    </style>
    </head>
    Now in that included PHP file, just have CSS code which pulls
    in your
    dynamic data. Here's an example snippet:
    body {
    color: #600;
    background-color: <?php echo
    $row_recordset['bgcolor'];?>
    Of course, you'll need the code for the recordset somewhere
    too.
    Alec
    Adobe Community Expert

  • Change Color in Messages and General Customization (Pixi Plus Verizon)

    Hi everyone, I just got the Palm Pixi Plus and I'm still figuring everything out, so I hope this isn't a silly question. Is there a way to change the background color of each contact in Messaging? My outgoing messages are always green and incoming messages are always displayed in blue - is there a way to assign a color to a contact or message thread?
    It also seems that in general, the display of the phone does not seem very customizable - is this true or have I just not figured it out? For instance, changing colors/font sizes in menu, adding a larger clock to the Launcher screen, etc, options that are pretty standard on all cell phones. Is changing the wallpaper really the only way to customize the display?
    Thanks a lot!

    Hello kbend and welcome to the forums;
    By default, wallpaper and sound customizations are the extent of changes you can make. However, as was noted in the official Palm blog http://blog.palm.com/palm/2010/03/makeover-madness.html the homebrew community has the ability to "theme" your device, changing nearly every aspect of the user interface.
    Please be aware however, adding homebrew applications or patches is not supported by Palm, and we would be unable to troubleshoot anything related to these features.
    Hope this helps,
    TreoAide

  • How to change color of a multiRowed JTable

    I have a MultiLineCellRenderer set to my Jtable, so i can put multiple lines in one row. Now i need the ability to change the color of the text within one row... (first row is a different color than the second row within a single jtable row). hopefully im not talking in circles :-). anyone know how this can be done?.... thanks

    thanks, yea i got it working. In the code above, i extended jtextarea, but really there is no easy way (that i can find) to change its contents to more than one color (if there is, i'd like to see it). So to accomplish this, instead extend jEditorPane and use its html capabilities. here is the code...
    public class MultiLineCellRenderer extends JEditorPane  implements TableCellRenderer {
      public MultiLineCellRenderer() {
        //setLineWrap(true);
        //setWrapStyleWord(true);
        setOpaque(true);
        setContentType("text/html");
      public Component getTableCellRendererComponent(JTable table, Object value,
                   boolean isSelected, boolean hasFocus, int row, int column) {
        if (isSelected) {
          setForeground(table.getSelectionForeground());
          setBackground(table.getSelectionBackground());
        } else {
          setForeground(table.getForeground());
          setBackground(table.getBackground());
        setFont(table.getFont());
        if (hasFocus) {
          //setBorder( UIManager.getBorder("Table.focusCellHighlightBorder") );
          if (table.isCellEditable(row, column)) {
            //setForeground( UIManager.getColor("Table.focusCellForeground") );
            //setBackground( UIManager.getColor("Table.focusCellBackground") );
        } else {
          setBorder(new EmptyBorder(1, 2, 1, 2));
        String [] strArray = value.toString().split("\n");
        String rtStr ;
        if (strArray.length > 1)
             rtStr = "<html><head></head><body><div style=\"color:#FF0000;\">" + strArray[0] + "</div>" +
                       " <div style=\"color:#0000FF;\">" + strArray[1] + "</div></body></html>";
        else
             rtStr = "<html><head></head><body><div style=\"color:#FF0000;\"><PRE>" + strArray[0] + "</PRE></div></body></html>";
        //setText((value == null) ? "" : value.toString());
        setText(rtStr);
        return this;
    }For my application i wont ever have more than two rows within one row. As you can see using jeditorpane allows lots of flexibility... kinda cool.

  • Change color on a scrollbar

    Hi!
    I have tried to find an answer to this problem in several places, books and forums, everywhere. I need a code snippet on how to change color on a scrollbar. Things like:
    scrollbar-base-color
    scrollbar-face-color
    scrollbar-track-color
    ....and so on....
    I'm working on an applet basket and I simply need the color to match the color of the webpage..:)
    You can take a look at www.kennet.wasadata.com, put a sample object in the basket and it should turn up in an applet. If you put more then two things in the basket a scrollbar appears, that?s the scrollbar I need to repaint so to speak???I work with the AWT library no swing. If the webpage doesn?t load fast enough it?s due to that dying server of mine..J
    Thanks in advance.
    Kennet Carlsen

    Here is an example:
    BODY {
    SCROLLBAR-BASE-COLOR: #486591;
    By the way, this seems not to work on Moailla Firefox 0.9.3 on Windows.

  • Illustrator files changing colors

    i have illustrator files compiled in a book in indesign. everything looks fine and then when i create a pdf some of the illustrator files change colors (what's supposed to be black turns green). anyone know what could be happening?

    Black shouldn't turn to green. However, if you have PMS colors and you select convert to process in export you will get color shift. Does it print green? If it prints correctly, it's a preview setting in Acrobat that needs adjusting. I think if you select Show Overprint it displays correctly. I'm at home so I can't check in Acrobat Pro.

  • Change colors, in detail

    I found that selecting a high contrast Theme is the only way to change some details of each of the different colors (Hyperlinks, Disabled text, Selected text, etc.) of a window.  When a high contrast screen is selected, I can search for "change
    color" and select "change the color of your taskbar and window borders" and I'll get to a "Color and Appearance" screen that is not available for any non-high contrast theme.  However, even this added ability to customize the
    screen colors falls far short of complete control.
    My custom Yahoo! page looses the text coloration differences to show stocks that are going up (green) vs. going down (red).  I also seem to have very little control of Outlook coloration.  As I am on my PC for most of every working day, I need
    the ability to provide good contrasting colors on all my window screens.  I am disappointed that Microsoft has not fine tuned this feature by now.  Most everything else about 8.1 I like quite a bit.
    William Fearn

    You're no longer allowed to customize the colors to the extent you used to be able to do so.  Microsoft has reduced our ability to make the desktop easier to use by configuring or "theming" it with something more pleasing than the (IMO)
    fairly broken theme they provide.  I personally find the loss of drop shadows tremendously reduces utility.
    I believe it's a plot by Microsoft Marketing to try to get people to dislike using the desktop so that they can get more support for Metro/Modern. 
    It ain't working!
    There are folks who have figured out how to "hack" the OS to enable better theme support, and one who's even re-implemented the Aero Glass effects.  Some of them hang out at
    msfn.org.  These things can be employed to make it easier on the eyes (I've managed some improvement).
    As far as Outlook 2013 / 365 goes...  There's little hope, since even a theme replacement doesn't affect it.  The Office team rolled their own UI, probably to help their Marketing department out.  On the Microsoft forum elsewhere
    is
    a thread with something like 700 responses from people who claim their eyes are bleeding from trying to use the latest version of Office.  Most claim Office 2010 was far better.
    Here's the really disturbing part:  Microsoft isn't releasing stuff by accident.  They're actively making the desktop harder to use - on purpose.  And their marketing is trying to turn it into an "Emperor's New Clothes"
    situation with concepts/terms like "digitally authentic" and "skeuomorphism is bad".
    Yes, it stinks for those of us who work with the desktop day in and day out.  You're not alone.  But you won't find many folks who'll stand up and agree with you, because pragmatism is not
    fashionable.
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

  • Change color of outline

    I have drawn a logo in 1 color and scanned it into Photoshop.  How do I now change the color of the outline?  It was drawn in black and I want it to be hot pink.  Thank you.

    Thanks.  Your response was most helpful and I have just tried this.  What if I have a specific color that I want the outline to be, and then have text to match? 

  • Ability to change format when transferring to pla

    Has the ability to change the format of files as they are transferred to the player been requested?
    I transfer a large number of audio books to my player. I'd like to keep the original ripped files on my PC in a high quality format, but convert them to a much smaller format when transferring.

    Swiftie wrote: So, the fact that NOTMAD does this (I used it for a while but was happier with MediaSource) raises a glimmer of hope that the feature may appear in a future version of MediaSource?
    Not specifically, but it could happen.
    Is there a good place for making such suggestions? I have a few suggestions, mostly about keyboard navigation.
    There's no specific place, but I have a public wishlist page here. Other than that, email your suggestion to support, but unless there's a huge number of people wanting it it's unlikely it will be changed specifically for that reason.

  • Pacman now needs to change color, but the types are incompatible ...

    Hi, my book sucks and I need your help again , Thanks In Advance !!!
    OK, now pacman can move in all directions and make a random move, but there needs to be a button to make him change color...
    I have come up with the following code but when I try to compile I get incompatible types for my new Pacmancolors...
    package pacman;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Autopacman extends Applet implements ActionListener
    boolean Packleur1;
    boolean Packleur2;
    boolean Packleur3;
    boolean Packleur4;
    boolean Packleur5;
    boolean Packleur6;
    int klikken = 1;
    int x = 200, y = 200; //beginpositie pacman
    int width = 50, height = 50; //formaat pacman
    int stap = 20; //standaard stapgrootte
    int stapVerander = 10; //stapgrootte wijziging
    int angleA = 5; //beginhoeken pacman
    int angleB = 345;
    public void init(){
    Button links = new Button("links"); //knoppen worden gemaakt en gelabeld
    Button rechts = new Button("rechts");
    Button omhoog = new Button("omhoog");
    Button omlaag = new Button("omlaag");
    Button harder = new Button("harder");
    Button zachter = new Button("zachter");
    Button random = new Button("Random actie");
    Button kleur = new Button("Kleur veranderen");
    links.addActionListener(this); //action events worden aan knoppen gekoppeld
    rechts.addActionListener(this);
    omhoog.addActionListener(this);
    omlaag.addActionListener(this);
    harder.addActionListener(this);
    zachter.addActionListener(this);
    random.addActionListener(this);
    kleur.addActionListener(this);
    add( links ); //knoppen worden op canvas gezet
    add( rechts );
    add( omhoog );
    add( omlaag );
    add( harder );
    add( zachter );
    add( random );
    add( kleur );
    public void paint(Graphics g){
    g.setColor( Color.black);
    g.drawLine( 0, 34, 600, 34 );
    Packleur1 = g.setColor( Color.yellow );
    Packleur2 = g.setColor( Color.red );
    Packleur3 = g.setColor( Color.blue );
    Packleur4 = g.setColor( Color.green );
    Packleur5 = g.setColor( Color.white );
    Packleur6 = g.setColor( Color.black );
    g.fillArc(x, y, width, height, angleA, angleB); //teken de pacman voor het eerst
    public void actionPerformed(ActionEvent e){
    String str = e.getActionCommand();
    if( str.equals("Kleur veranderen")){
    klikken++;
    if( klikken = 2 )
    {Packleur2 = true;}
    if( klikken = 3 )
    {Packleur3 = true;}
    if( klikken = 4 )
    {Packleur4 = true;}
    if( klikken = 5 )
    {Packleur5 = true;}
    if( klikken = 6 )
    {Packleur6 = true;}
    return false;
    if(klikken == 7)
    {klikken = 1;}
    if( str.equals("Random actie") ){       //Die stomme random functie
    int i = (int)(Math.random() * 10);
    switch(i){
    case 1: case 7 : str = "omlaag"; break;
    case 2: case 8 : str = "omhoog"; break;
    case 3: case 9 : str = "links"; break;
    case 4: case 10 : str = "rechts"; break;
    case 5: case 0: str = "harder"; break;
    case 6: str = "zachter"; break;}
    if( str.equals("harder") ){ stap = stap + stapVerander;} //stap wordt 10 groter
    if( str.equals("zachter") ){ stap = stap - stapVerander;} //stap wordt 10 kleiner
    if( stap < 0){stap = 1;} //Stapgrootte wordt nooit negatief of nul
    if( str.equals("links") ){ x -= stap;     //linksknop laat pacman links kijken en bewegen
    angleA = 185;
    angleB = 345;}
    if( str.equals("rechts") ){ x += stap;    //rechtsknop laat pacman rechts kijken en bewegen
    angleA = 5;
    angleB = 345;}
    if( str.equals("omhoog") ){ y -= stap;    //omhoogknop laat pacman omhoog kijken en bewegen
    angleA = 95;
    angleB = 345;}
    if( str.equals("omlaag") ){ y += stap;    //omlaagknop laat pacman omlaag kijken en bewegen
    angleA = 275;
    angleB = 345;}
    if( x <= 0){ x = 0;} // houdt de pacman tegen als hij links/rechts wil verdwijnen
    if( x > 550){ x = 550;}
    if( y <= 35){ y = 35;} // houdt de pacman tegen als hij boven/onder wil verdwijnen
    if( y > 550){ y = 550;}
    repaint(); // zet de pacman opnieuw op het canvas
    Can anyone help me with this?
    Thanks a bundle!
    Menno.

    Thanks a lot!
    Say if you want to see how it works just compile this source :
    /* Autopacman spelletje
    Menno Hagens, I108
    2001
    Autopacman.
    Maak via overerving van de klasse Packman uit week 4 een nieuwe klasse 'AutoPackman'.
    Deze klasse moet de volgende extra functionaliteit bevatten.
    De kleur van de Packman moet kunnen worden ingesteld.
    Er moet een methode komen die een willekeurige opdracht aan de Packman geeft.
    (naarLinks, naarRechts, gaSneller, gaTrager, etc.)
    Maak vervolgens een applet met vier Packmannetjes en ��n knop 'Beweeg'.
    Als je op deze knop drukt, moeten alle Packmannetjes ��n stap in een willekeurige
    richting doen.
    Programmeer dit efficient met arrays en loops.
    Als je na afloop nog moed hebt kun je de klasse en de applet zo aanpassen dat een
    spel ontstaat, waarbij een Packman die op de positie van een andere komt, de andere
    Packman opeet. Degene die overblijft heeft gewonnen.
    package pacman;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Autopacman extends Applet implements ActionListener
    boolean Packleur1;
    boolean Packleur2;
    boolean Packleur3;
    boolean Packleur4;
    boolean Packleur5;
    boolean Packleur6;
    int klikken = 1;
    int x = 200, y = 200; //beginpositie pacman
    int width = 50, height = 50; //formaat pacman
    int stap = 20; //standaard stapgrootte
    int stapVerander = 10; //stapgrootte wijziging
    int angleA = 5; //beginhoeken pacman
    int angleB = 345;
    public void init(){
    Button links = new Button("links"); //knoppen worden gemaakt en gelabeld
    Button rechts = new Button("rechts");
    Button omhoog = new Button("omhoog");
    Button omlaag = new Button("omlaag");
    Button harder = new Button("harder");
    Button zachter = new Button("zachter");
    Button random = new Button("Random actie");
    Button kleur = new Button("Kleur veranderen");
    links.addActionListener(this); //action events worden aan knoppen gekoppeld
    rechts.addActionListener(this);
    omhoog.addActionListener(this);
    omlaag.addActionListener(this);
    harder.addActionListener(this);
    zachter.addActionListener(this);
    random.addActionListener(this);
    kleur.addActionListener(this);
    add( links ); //knoppen worden op canvas gezet
    add( rechts );
    add( omhoog );
    add( omlaag );
    add( harder );
    add( zachter );
    add( random );
    add( kleur );
    public void paint(Graphics g){
    g.setColor( Color.black);
    g.drawLine( 0, 34, 600, 34 );
    g.setColor( Color.yellow);
    if( klikken == 1 )
    {g.setColor(Color.yellow);}
    if( klikken == 2 )
    {g.setColor(Color.red);}
    if( klikken == 3 )
    {g.setColor(Color.blue);}
    if( klikken == 4 )
    {g.setColor(Color.black);}
    if( klikken == 5 )
    {g.setColor(Color.green);}
    if( klikken == 6 )
    {g.setColor(Color.white);}
    g.fillArc(x, y, width, height, angleA, angleB); //teken de pacman voor het eerst
    public void actionPerformed(ActionEvent e){
    String str = e.getActionCommand();
    if( str.equals("Kleur veranderen")){klikken++;}
    if(klikken == 7)
    {klikken = 1;}
    if( str.equals("Random actie") ){       //Die stomme random functie
    int i = (int)(Math.random() * 17);
    switch(i){
    case 1: case 7 : case 11: case 15 : str = "omlaag"; break;
    case 2: case 8 : case 12: case 16 : str = "omhoog"; break;
    case 3: case 9 : case 13: case 17 : str = "links"; break;
    case 4: case 10 : case 14: case 0 :str = "rechts"; break;
    case 5: str = "harder"; break;
    case 6: str = "zachter"; break;}
    if( str.equals("harder") ){ stap = stap + stapVerander;} //stap wordt 10 groter
    if( str.equals("zachter") ){ stap = stap - stapVerander;} //stap wordt 10 kleiner
    if( stap < 0){stap = 1;} //Stapgrootte wordt nooit negatief of nul
    if( str.equals("links") ){ x -= stap;     //linksknop laat pacman links kijken en bewegen
    angleA = 185;
    angleB = 345;}
    if( str.equals("rechts") ){ x += stap;    //rechtsknop laat pacman rechts kijken en bewegen
    angleA = 5;
    angleB = 345;}
    if( str.equals("omhoog") ){ y -= stap;    //omhoogknop laat pacman omhoog kijken en bewegen
    angleA = 95;
    angleB = 345;}
    if( str.equals("omlaag") ){ y += stap;    //omlaagknop laat pacman omlaag kijken en bewegen
    angleA = 275;
    angleB = 345;}
    if( x <= 0){ x = 0;} // houdt de pacman tegen als hij links/rechts wil verdwijnen
    if( x > 550){ x = 550;}
    if( y <= 35){ y = 35;} // houdt de pacman tegen als hij boven/onder wil verdwijnen
    if( y > 550){ y = 550;}
    repaint(); // zet de pacman opnieuw op het canvas

  • FEP icon color and scan status

    With Windows security essentials, the icon changed to a yellow when a scan hadn't run for x amount of days. The FEP icon with SCCM 2012 remains green so long as the agent is updated with the latest definitions.
    Are there any ways of being alerted when a machine hasn't run its scheduled scan. Also can the FEP icon colors be manipulated like Security essentials where it would change when a scan wasn't run?
    thanks

    Hi,
    When the scheduled scan falis, there will create an event.
    I think you could create a Basic Task in Microsoft Antimalware(Task Scheduler->Task Scheduler Library->Microsoft->Microsoft Antimalware) to monitor an event (fail to run scheduled scan).
    Hope this could help you.
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Why do I get a program error when changing colors?

    I get a 'Could not complete your request because of a program error' when I try to change colors on both the forground/background palette or from the color picker palette.  Is there a patch for this?
    I am using Photoshop CS6 version 13.0.1.x64

    Hi. Because this forum is for beginners trying to learn the basics of Photoshop, I'm moving your question to the Photoshop General Discussion forum.

  • Images Change Colors between monitors while the UI stays the same

    Hey! Im having an issue where photoshop changes the colors when I move the window between my monitors, seen here: http://sta.sh/04y5s60vf3j This isnt due to the monitors themselves being different, it actually changes after a few seconds of moving it inbetween the monitors. The left one has been callibrated with a spyder 3 elite which I no longer have access to. I applied the file with windows color management instead of the spyder utility. The second one is new, and it is not callibrated by anything, but instead was done by hand with the built in brightness/contrast/custom RGB settings. Both of them are very close to eachother, enough so for my tastes. but when photoshop changes what the image looks like, it's causing problems. Interestingly enough, when I disable callibration for the monitor on the left, the image does not change colors between monitors, but instead always appears as it does on the right. but then they don't match up and the whole screen looked washed out because it's uncallibrated, so that doesnt do me any good. Another interesting thing to point out, is when this image is saved as a .JPG, and viewed with firefox the image appears exactly like the monitor on the LEFT (which is my main monitor) despite the left monitor being the one that is force changed. does anyone have any suggestions? It also appears that windows photoviewer is behaving the same way, though firefox does not. Meaning when I open an image in all 3 on the left monitor, they look the same, but when opened on the right monitor, windows photo viewer and photoshop both display the image as brighter and redder than firefox does. This is frustrating, because it seems photoshop is changing the image with my callibration on my left monitor to match what it looks like on the web, which it does. but it doesn't do this for the right monitor, or when the left is uncallibrated. Another issue I can see with this is even if the UI is the same shade of gray, the images are different between the monitors because of this change. Does anyone have any suggestions?
    - BD

    Alright! So I reread through all this, poked at some things on the internet, and I'm going to attempt to summarize what would be a good solution for all this (And it seems, it still won't be perfect, but to get myself into the best environment I can for not messing with images for an hour trying to make them look nice before I post them to the web. I painted something yesterday on the cintiq, popped it over to my laptop screen and it just looked washed out and terrible.)
    1. Get a X-rite EODIS3 i1 Display Pro, Callibrate laptop and cintiq. I do have the money to drop on something like this, especially if it's a time saver.
         Things I'm not sure about:
              a. There was a ton of complaints about the software not working when I checked reviews, but also a ton that said everything was great. most of them were mac users though.
              b. I'm not sure if problems would still be posed, even while calibrated, by me having a wide gamut monitor.
              c. I'm a terrible excuse for a human being and I think the colors showing up brighter on the wide gamut screen is pretty (I should just make my images this bright on a normal screen and there won't be any issues. >.>)
    2. Set Firefox to color manage (easy enough)
    3. Change my photoshop working space to sRGB (since they'll have been calibrated at this point)
    3. Accept the fact that most of the people who look at my work will be doing so on a monitor that is almost certainly uncalibrated, and I can't control what they will see on my screen, but I CAN control if the colors are -actually- what I want them to be on any properly calibrated device. which is probably the best way to go anyways.
    4. Make paintings, have fun.
    Now, you two have been going on about all sorts of interesting things in here, and it seems that calibration issue run much much deeper than I ever thought. Do either of you have recommendations for how I should tweak this list of things to do or other things I can/ should do? I'm not currently a working professional, but if I have anything to say about it, I will be within a few years (I'm going to school for illustration and studying concept design on my own time) so it'd be useful for me to get into good habits now.
    - Brendavid

  • Can anyone tell me why a picture would change color when I try to download/upload it?  It is the exact same picture- chosen the same way and when it goes to any other program it changes the color (I've tried canvas on demand and mpixpro.  I've also tried

    Can anyone tell me why this picture changes color when I try to download/upload it?  It is the exact same picture I have taken from the same location.  The image on the left is via preview and the image on the right is what is shows like when I try to download it.  I have emailed it to myself and it shows fine on the computer and in CS4, but when I look at the download via my phone or on another computer it shows the wonky color on the right.  I have checked the color space shows RGB/8 bit.  Any ideas why or how to fix it?  It isn't with any one specific session.... and I've tried it on both my desktop and my laptop- saved image to an external hard drive and to drop box.  I've tried sending the image to canvas on demand, my email, mpxipro, POST editing- all the same result.  Please HELP!!  What am I doing wrong?

    Most of the time you see something like that. The image in question has a color profile other then sRGB. Some image viewers/displayers are color managed and others are not.  So the image do not look the same in all of the applications you use. So colors seem to change.
    Try converting it to sRGB color and see if then looks the same all around. Also I think PC and Mac displays are set to different gamma something like 1.8 and 2.2
    Though I'm colorblind I even see color variations.

Maybe you are looking for

  • N8 software update failed and N8 not starting... :...

    hi,  plz help asap!... newly bought N8 yesterday 4th april 2011 and today night i was updating to the latest firmware. Ovi suite after backing up and downloading the firmware... it started installing. then suddenly it throwed the error...like connect

  • Weblogic user not authorized to use announcements

    Hi I have recently installed Webcenter on Windows and am working with Spaces at this point. For some reason I cannot use announcements and discussions. My Spaces home page has the following under the announcement banner: User is not authorized. Also

  • Seeing all pictures that I have in my computer

    In Snow Leopard there was a provision to see all pictures in the search, what is now Spotlight. Is there such a thing in Lion?

  • Can't sign back to Game Center

    All of the things I have needs Game Center so please help me!!!!!!!

  • Sending mails using plsql

    Hai all, Anybody has the examble code of sending mails from database using PL/SQL ? my DB version in 10 g (10.2.0.1.0) Thanks in advance Edited by: Hari1984 on Aug 1, 2010 9:57 PM