Color of Image in tiff format

Hi all,
i have converted the image  from JPG format to tiff format but the color is not coming in the tiff format although i have put the  BCOL where color option comes.....
Please suggest..
Thanks in Advance
Ashu SIngh

I have a similar problem, my TIF picture is 256 color and I upload it with BCOL option, but when printed on the form it's black/white, see below:
20.10.2009           Uploading TIFF Files to SAPscript Texts                   1
Load File
c:\temp\cc.tif
The file contains     49.434  bytes
This is a TIFF file with INTEL byte order
First IFD offset:                                   49.160
Reading IFD from offset     49.160  Number of Tags         15
ImageWidth:                                            128
ImageLength:                                           128
BitsPerSample levels:                                    3
BitsPerSample - level 1:                                 8
BitsPerSample - level 2:                                 8
BitsPerSample - level 3:                                 8
Compression:                                             1
Photometric Interpretation:                              2
Number of StripOffsets:                                  7
SamplesPerPixel:                                         3
RowsPerStrip:                                           21
Number of StripByteCounts:                                7
XResolution:                                             0  /          1
YResolution:                                             0  /          1
ResolutionUnit:                                          2
This is a baseline TIFF 6.0 *FULLCOLOR* file
TIFF raster image resolution in DPI:                    300
Using resolution from report parameter:                 300
Text ZHEX-MACRO-TEST1 , Language HR, Object TEXT , Id ST ,
saved successfully

Similar Messages

  • I need to crop image in TIFF format. what product i need to buy

    i need to crop image in TIFF format. what product i need to buy

    Photoshop should be able to handle cropping your TIFF file, possibly Photoshop Elements as well which would cost less.  You should get the trial version to make sure rather than buying before trying.
    You might also want to check if you already have something on your machine that can do it.  On a PC you should be able to right click the image and choose "Open With" whereby a menu of programs should appear with programs that can open the file.  You can check to see if any of those listed provide the cropping tool.
    If you have further questions you should try posting in the Photoshop forum instead of here (http://forums.adobe.com/community/photoshop?view=discussions).  This forum is primarly for questions about downloading and installing Adobe applications.

  • How can I Display a Image with tiff format in Jpanel?

    How can I Display a CMYK Image with tiff format in Jpanel ? Not in ScrollingImagePanel? Thank you in advance.

    Why nobody can help me?I am very anxious!help me,please!

  • Bridge Image Processor TIFF format

    I use Bridge's Image Processor to batch JPEG images to TIFFs before Photoshopping them, but I've noticed that it saves TIFFs with Mac byte order by default.
    This isn't usually a problem, but many of these images will move to another department in my organisation for inclusion in eBooks and other digital publications, and the Mac byte order causes issues for them and their production processes, necessitating a batch process back to IBM PC order.
    Is there anyway to change the default Image Processor format to IBM PC byte order?

    That's what I thought, but the script doesn't have those parameters, so it would probably be a matter of delving deeper than the Image Processor functionality.
    I can make batch that would do it, rather than Image Processor, but it would be nice to have this feature built-in.
    I'll see what the PS forum has to say.
    Cheers.

  • Saving Scanned Image in TIFF Format

    I am using Gnome TWAIN Package V4.3 to scan images. I can save the image in JPEG format, but have not figured out how to save it in TIFF format. Can someone provide an example of how to save images scanned using the Gnome package to TIFF Format?
    Thanks.

    Try this example from www.gnome.sk:
    * Copyright (c) 1999-2002 Gnome spol. s r.o. All Rights Reserved.
    * This software is the confidential and proprietary information of
    * Gnome spol. s r.o. You shall not disclose such Confidential
    * Information and shall use it only in accordance with the terms
    * of the license agreement you entered into with Gnome.
    // JavaTwain package version 5.0
    Example8 demonstrates how to save a acquired image to the TIFF file format, using JAI.
    You need to install JAI and set a classpath to the JAI library before
    compiling and running the example.
    import javax.media.jai.*;
    import java.io.*;
    import com.sun.media.jai.codec.*;
    import java.awt.*;
    import SK.gnome.twain.*;
    public class Example8
    protected RenderedOp image ;
    public Example8() throws Exception
    { Twain twain = new Twain();
    twain.setVisible(false);     
    Image awt_image=Toolkit.getDefaultToolkit().createImage(new TwainImage(twain));
    RenderedOp image = (RenderedOp) JAI.create("AWTImage", awt_image);
    OutputStream os = new FileOutputStream("test.tiff");
    TIFFEncodeParam param = new TIFFEncodeParam();
    ImageEncoder enc = ImageCodec.createImageEncoder("TIFF", os,param);
    enc.encode(image);
    os.close();
    System.exit(0);
    public static void main (String args[]) throws Exception
    { Example8 example8 =new Example8();
    }

  • TIFF Format

    Hi all,
    I have known about code is se38 for RSTXLDMC. but
    How to create uploading tiff file to sapscript text??
    Reply me soon,
    thx,
    s.suresh

    To insert logo in SAP script, follow the steps below:
    /: INCLUDE Z_YOUR_LOGO OBJECT TEXT ID ST LANGUAGE E
    These are the steps to be followed for uploading graphics in R/3 system
    1. First save the file as BMP
    2. Open the BMP file in IMaging (Goto -> Programs -> Accessories -> Imaging) and
    make it Zoom as 100% and save as *.TIFF
    3. Open SE38 and execute program RSTXLDMC
    4. Give your TIFF file path name
    5. Select Bcol (for Color)
    6. TEXT ID will be ZHEX-MACRO-*.
    7. Inplace of * write your own logo name (ZCOMPANYLOGO)
    8. Execute the program
    9. Now Goto SE71 create your ZFORM
    10. Create logo window
    11. Goto text element of logo window
    or
    In 4.6x :-
    1. Goto SE71 Change the mode to GRAPHICAL
    2. Choose the Graph Tabstrips
    3. Now type in some name for the LOGO WINDOW
    4. Press the IMPORT BUTTON and then IMPORT the BMP file from your DESKTOP
    5. The code will be written automatically. You just need to drag and drop wherever you want
    the graphics to be.
    Or
    Upolad in the R3 using Se78 and use the Include statement in the script
    standard program is RSTXLDMC FM to upload image in tiff format
    Follow the link below u may get useful information
    http://sapscriptcode.blogspot.com/2007/05/faq-for-sap-scripts.html
    Reward if useful

  • Problem Saving Image to TIFF

    I'm trying to convert a scanned image to TIFF format. When I try to encode the image to TIFF I get the following errors:
    ava.lang.Error: Int or float buffers require 32-bit data.
         at com.sun.media.jai.codecimpl.TIFFImageEncoder.encode(TIFFImageEncoder.java:206)
         at com.sun.media.jai.codecimpl.TIFFImageEncoder.encode(TIFFImageEncoder.java:153)
         at DocScan.save(DocScan.java:171)
         at DocScan$TwainSaveRunnable.run(DocScan.java:100)
         at java.lang.Thread.run(Thread.java:484)
    Some of the code I am using is as follows:
    public void scan()
    Twain twain=new Twain();
    twain.setVisible(false);
    twain.setPixelType(Twain.BW);
    twain.setCurrentUnits(Twain.INCHES);
    twain.setXResolution(100);
    twain.setYResolution(100);
    twain.setFrame(0,0,8.5,11);
    twain.setBrightness(900);
    twain.setXScaling(.5);
    twain.setYScaling(.5);
    image = Toolkit.getDefaultToolkit().createImage(new TwainImage(twain));
    setSize(width=image.getWidth(DocScan.this),image.getHeight(DocScan.this));
    repaint();
    public void save()
    { fd = new FileDialog(this, "Save a file", FileDialog.SAVE);
              fd.setVisible(true);
              fileName = fd.getFile();
    File f=new File(fileName);
    try
    PlanarImage PImage = JAI.create("awtImage",image);
    FileOutputStream out = new FileOutputStream(f);
    TIFFEncodeParam param = new TIFFEncodeParam();
    ImageEncoder encoder = ImageCodec.createImageEncoder("TIFF", out, param);
    encoder.encode(PImage);
    out.close();
    catch (Exception ex)
    { ex.printStackTrace();
    I would greatly appreciate any help.
    Thanks

    Hello All,
    The below code allows you to read TIFF images. You must have Java Advanced Imaging installed on your system for this to work
        RenderedImage ri = JAI.create("fileload", filename);However the problem I am facing is that, when I save the image back to another TIFF file, the image is getting saved in negative colours, i.e, black in the final image, where originally white is there.
    I hope I am clear about the problem and also hope that the code works for you.
    best wishes
    Issac

  • How does the TIFF format compress images?

    When we choose "File> Save As" to save an image to a TIFF file, a TIFF Options dialogue box appears with 4 image compression options( None, LZW, Zip, Jpeg). What is this for? Does the TIFF format compress images? Are they destructive to the image quality? THANK YOU

    If you select no compression, it will take up too much space, guaranteed.  TIFF lets you pick any compression method supported by your program and the viewing program.  Some are lossy, some are lossless.  Most TIFFs tend to be compressed in LZW or ZIP, both of which are lossless.  You can also choose to compress your TIFF using JPEG compression, which is lossy, but I can't imagine why you would do this instead of simply saving as a JPEG file, which is more likely to be properly opened in browsers than a JPEG-compressed TIFF file.
    And in response to one of the previous posts, not all compression throws away details from your file.  Only lossy compression (e.g., JPEG, or in the music area MP3) throws away data.  The lossless compression techniques simply encode the data in fewer bits if possible.  (One important fact not relevant to the web, where you will use 8-bit-per-channel files:  If your photos are 16-bit-per-channel, don't save in LZW compressed format; they will actually become larger than the uncompressed image.)  For a simplified example, if there is a series of 16 pixels of solid white, a losslessly compressed image will have code that says, in effect, 16 pixels of (255,255,255) using an abbreviated code instead of simply listing (255,255,255) sixteen times.  It builds up a directory of byte combinations and can use just a few bytes to refer to many bytes of image data.  Because the coding and decoding is exact, there is no change in the image data when it's opened.
    JPEG is a lossy compression technique that doesn't actually record pixel values at all.  It uses formulas to specify averages and changes within regions.  In effect, it records the fact that a given group of pixels has values centered on X color, and that the upper left is much pinker and the lower right is much greener than the average.  When you pick the degree of quality for JPEG compression, you tell it how small to make the comparison cells.  As you can imagine, if the image has text, tree branches, or other highly contrasty subject matter, this will cause serious weirdness if the comparison cells aren't very small (i.e., you don't have the quality set to max).

  • Why do the colors in images embedded in word (TIFF/JPEG) export off-color from Acrobat?

    I chose this forum as opposed to the printing and pre-press forum because I have a very limited existing knowledge of color space and profile matching and I didn't want to be (1) shunned and (2) overwhelmed by the level of technical detail.
    When I attempt to PDF a word document that contains a TIFF image, the TIFF image appears SIGNIFICANTLY off color.  I was able to substantially correct the problem by extracting the TIFF image within the Word document and resaving it as a JPEG, but it still isn't 100%.
    Here's what I know:
    I'm using Windows 7; Word 2010; and Acrobat X.  I also have Photoshop CS5.1 and InDesign CS4.
    My color SETTINGS are matched in each application to be tied to my monitor, and my monitor is set to the system default, which is a system default: :sRGBIEC61966-2.1"
    I'm using the document for professional purposes, so color matching is important to me, but I'm working with what is available to me at a nonprofit, so that means an Acer X183h monitor and a Canon iR C5185 networked office printer and no real color management policy or equipment.
    I'm looking for the best possible solution to maintain color performance between the monitor and the printer.

    Incredibly as I posted this the solution came to me - I leave it to the moderators to determine whether this should be preserved or deleted.  I wasn't able to find any help on this and it might be valuable to other users.
    The image itself that was embedded in the Word Document had a CMYK color profile. It was displaying appropriately in the software, but wouldn't convert to PDF or print. I opened the source file in Photoshop and converted it to my working profile, then re-added it to the word document and it is now reliably reproducing in the right color.
    Since dropping outside images into word is a common (if also poor) work process for people creating documents in the nonprofit sector, I think this kind of information could be valuable in the knowlegebase.

  • How do I change the color of a scanned tiff file.  It is currently a black image and I want to change the color.

    How do I change the colora of a scanned tiff file.  The image is currently black and I want to change the color.  Thank you.

    You can use the Temperature slider in the Adjust Image pane to apply a tone.
    Walt

  • Changing the color of an image in EPS format using Illustrator

    How do I change the color of an image in EPS format using Illustrator? Once I do this how do I change the format of the image from EPS to something I can select onto a website like JPG, JPEG or PNG? I plan to print the image onto a T-shirt.

    start here:
    http://help.adobe.com/en_US/illustrator/cs/using/WS714a382cdf7d304e7e07d0100196cbc5f-6519a .html

  • Displaying the Tiff format image in JPanel

    How can i display an .tiff formatted image in a jpanel ?

    How can i display an .tiff formatted image in a jpanel ?

  • UPoad lgoo using RSTXLMDC ERROR showing TIFF format error: No baseline TIFF

    Hi
    I am geeting the below problem while uploading a tif format file using RSTXLDMC
    Load File
    h:\prim.tif
    The file contains     13.930  bytes
    This is a TIFF file with INTEL byte order
    First IFD offset:                                   13.744
    Reading IFD from offset     13.744  Number of Tags         15
    ImageWidth:                                            559
    ImageLength:                                           279
    BitsPerSample levels:                                    1
    BitsPerSample - level 1:                                 8
    BitsPerSample - level 2:                                 0
    BitsPerSample - level 3:                                 0
    Compression:                                             5
    Photometric Interpretation:                              3
    Number of StripOffsets:                                 14
    SamplesPerPixel:                                         1
    RowsPerStrip:                                           21
    Number of StripByteCounts:                              14
    XResolution:                                            96  /
    YResolution:                                            96  /
    ResolutionUnit:                                          2
    ColorMap size:                                         256
    TIFF format error: No baseline TIFF 6.0 file
    and I am not expecting the below code
    How to Upload graphics (IMAGE) to your Sapscript?
    Command in your Sapscript
    /: INCLUDE Z_YOUR_LOGO OBJECT TEXT ID ST LANGUAGE E
    These are the steps to be followed for uploading graphics in R/3 system 
    1.   First save the file as BMP 
    2.   Open the BMP file in IMaging (Goto -> Programs -> Accessories -> Imaging) and 
          make it Zoom as 100% and save as *.TIFF 
    3.   Open SE38 and execute program RSTXLDMC
    4.   Give your TIFF file path name 
    5.   Select Bcol (for Color) 
    6.   TEXT ID will be ZHEX-MACRO-*. 
    7.   Inplace of * write your own logo name (ZCOMPANYLOGO) 
    8.   Execute the program 
    9.   Now Goto SE71 create your ZFORM 
    10. Create logo window 
    11. Goto text element of logo window

    Hello,
    The error message usually means that you try to upload a graphic with a
    TIFF format, which is not supported. Please check the compression type
    of the TIFF file with your graphic program. The SAP supports
    uncompressed TIFF files and Packbits compressed TIFF files.
    Read SAP note: 39031 tells about baseline.
    Not every TIFF dataset can be uploaded, there are some preconditions.
    Regards,
    David

  • Converting a pdf-document in a tiff-formatted document

    Hello,
    I have created an interactive form in web-dynpro.
    Now I want to convert the pdf document with the  user filled-in data into a document with tiff-format.
    But I´don´t know how.
    Can you help me?
    Best regards
    Oliver

    You can potentially use the Adobe bean library with the Batik.jar file to convert the PDF to TIFF or any other image format.
    The Adobe bean library is available from
    <a href="http://www.adobe.com/products/acrviewer/acrvdnld.html?name=Accept">Adobe</a>
    Batik is avaiable from <a href="http://xmlgraphics.apache.org/batik/">Batik</a>

  • How to save an image in different format

    i want to save an image in different format (as .jpg ,.gif, .tiff, .png, .bmp) using save dialog box , where format should come in drop box menu "Save as type" in save dialoge box.what to do.???????plz any one suggest me .........

    alok_raj wrote:
    i want to save an image in different format (as .jpg ,.gif, .tiff, .png, .bmp) using save dialog box , where format should come in drop box menu "Save as type" in save dialoge box.what to do.???????plz any one suggest me .........1) Spell words properly. That word is 'please'.
    2) Fix your sticky keyboard for the '?' and '.' keys. Only one of those characters is generally needed to denote a question or the end of a sentence. Two or more often denotes a dweeb.
    I might come back to your question later, assuming I can actually bare looking at that mess long enough to figure out what you want.

Maybe you are looking for

  • How can I re-sync icloud?

    How can I re-sync icloud?  I am using iCloud to keep my iPadd2 and iPhone 4S syncronized with Microsoft Outlook 2007 on my Windows7 PC.  It started out working fairly well two days ago but as I use my devices the sync gets worse and worse.  It update

  • IPhone 4S 64GB - Problems since iOS 6.0 and now worse upon 6.1 attempt

    Hello, It seems there are many who have been having trouble after updating to iOS 6.1. My issue is similar, but has been going on and only gotten worse today.  I have an iPhone 4S (which is unfortunately out of AppleCare warranty) that has (ever sinc

  • Problem with different browsers when I save pdf

    Hi I have server side application which open some pdf form and populate it with values and some javascript(I use FDFToolkit to do that). A client connects with a browser to my server opens the form in the browser window and after that saves the form

  • Using select * in a join statement

    Ok Wizards, If I use this code: (select * from tablea a, tableb b where a.index = b.index) joined, I can reference any column in either table using joined.column except a column named in both tables. If both tables contained a columnxyz, any referenc

  • Script to import jobs from SAP

    Hi, Is there a way to bring all the jobs from sap as job chains in CPS? To the best of my knowledge only multi step jobs can be brought into CPS as job chains. Regards, Esha