Compositing Graphics and transparency question

Hi there
I am drawing a floorplan on a jpanel. The floorplan consists of several "layers", meaning, I draw the floorplan and other geometrical things (representing real world things such a batch of plants).
Those things drawn on the floorplan are partially transparent. I did this is to get a more intense color if some things are drawn on top of eachother. However, the background of the floorplan I don't want to see when those obects are drawn on a particular location. So for that reason I drew the background (not to confuse with the background of the JPanel) later with an AlphaComposite "DST_OVER", hoping that I would not see this background where the previously drawn object were. This worked partially, meaning, because those objects were semi transparent to begin with, I can see the background also.
Does anyone know how to solve this?

I think we're in agreement: try it!
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import java.io.*;
import java.net.*;
import javax.imageio.*;
import javax.swing.*;
public class Composing {
    public static void main(String[] args) throws IOException {
        URL url = new URL("http://today.java.net/jag/bio/JagHeadshot-small.jpg");
        BufferedImage background = ImageIO.read(url);
        int w=background.getWidth(), h=background.getHeight();
        BufferedImage foreground = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB);
        Graphics2D g = foreground.createGraphics();
        g.setColor(new Color(0,0xff,0,0x40));
        g.fillRect(0,0,w/8,h);
        g.setColor(new Color(0,0,0xff,0x40));
        g.fillRect(0,7*h/8,w,h);
        g.setColor(new Color(0xff,0,0,0x40));
        g.fillRect(7*w/8,0,w,h);
        g.setColor(new Color(0xff,0xff,0,0x40));
        g.fillRect(0,0,w,h/8);
        byte[] identity = new byte[256];
        for(int i=0; i<256; ++i)
            identity[i] = (byte) i;
        byte[] adjust = new byte[256];
        for(int i=0; i<256; ++i)
            adjust[i] = (byte) ((i<1) ? i : 255);
        ByteLookupTable table = new ByteLookupTable(0, new byte[][]{identity, identity, identity, adjust});
        LookupOp op = new LookupOp(table, null);
        op.filter(foreground, foreground);
        g.setComposite(AlphaComposite.getInstance(AlphaComposite.DST_OVER));
        g.drawRenderedImage(background, null);
        g.dispose();
        JFrame f = new JFrame("Composing");
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.getContentPane().add(new JLabel(new ImageIcon(foreground)));
        f.pack();
        f.setLocationRelativeTo(null);
        f.setVisible(true);

Similar Messages

  • Simple Composition Size (and Output) Question!

    Guys,
    I have a CS4 composition which is 921 x 290 pixels and yet when I render it to an H.264 file, the resultant dimensions of the output file are 920 x 290. Oh and I'm not checking the 'stretch' or 'crop' option.
    The video is going on to a website and the missing pixel is causing a problem...
    Chummy

    Thanks. So what do I adjust the comp size to?
    Surely, if I want an H.264 file that is 921 pixels wide, that's impossible, right?
    Chummy

  • Help export the graphic with transparent background and not braking the quality

    hi I'd like some help please if its possible.
    I've created a monitor graphic in Fireworks that looks like iMac and I would like to export it with transparent background.
    the jpeg format looks great with no damage to the graphic at all but I can't have transparent background, although I changed the canvas fill to none. the png-8 format can apply transparent background, but damages the graphic.
    Here are the previews
    1st - the png-8 format
    2nd - thejpeg format
    A ny ideas on how I can export the graphic with transparent background and not braking the quality??

    Fireworks questions are best answered at this link:
    <http://forums.adobe.com/community/fireworks/fireworks_general>
    Good luck.

  • My iphoto has a transparent question mark over it and will not open. How do I fix this?

    My iphoto on my imac will not open. It has a transparent question mark over it...how do I fix it?

    Is the question mark on the Dock at the bottom of your screen? Then it means that the Dock can't find the application.
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store you can find it in your Purchases List.

  • Question about composite index and index skip scan

    Hi,
    I have a confusion.
    I have read Burleson's post on composite index column ordering (http://www.dba-oracle.com/t_composite_index_multi_column_ordering.htm) where he writes that
    "......for composite indexes the most restrictive column value(the column with the highest unique values) should be put first to trim down the result set..."
    But 10g performance tuning book tells this about INDEX SKIP SCAN ::
    "... Index Skip scanning lets a composite index be split logically into smaller subindexes. In skip
    scanning, the initial column of the composite index is not specified in the query. In other words, it is skipped.
    The number of logical subindexes is determined by the number of distinct values in the initial column.
    Skip scanning is advantageous if there are few distinct values in the leading column of the composite index and many distinct values in the non-leading key of the index......."
    So if we design Composite indexes acc. to what Burleson said then how can we take advantage of index skip scanning. These two staements oppose each other,don't they ?
    Can anybody explain this ?

    Dear,
    For the moment forget the distinct values and the compressibility. I've tried to reproduce your case here below (using jonathan lewis table script)
    create table t1
    as
    with generator as (
        select    --+ materialize
            rownum id
        from dual
        connect by
            rownum <= 10000
    select
        rownum              c1,
        mod(rownum,1000)    c2,
        mod(rownum,5000)    c3,
        mod(rownum,10000)   c4,
        lpad(rownum,10,'0') c5,
        rpad('x',5)         c6
    from
        generator    v1,
        generator    v2
    where
        rownum <= 1000
    alter table t1 add constraint t1_pk primary key (c3,c4,c5,C6);
    create index idx_1 on t1 (c1,c2);
    begin
         dbms_stats.gather_table_stats(
              ownname           => user,
              tabname           =>'T1',
              estimate_percent => 100,
              method_opt       => 'for all columns size 1'
    end;
    /and here are what I got with your two selects
    mho.sql>> SELECT c1,c2
      2  FROM t1
      3  WHERE c2 = 3;
            C1         C2
             3          3
    Elapsed: 00:00:00.00
    mho.sql>> start dispcursor
    PLAN_TABLE_OUTPUT
    SQL_ID  4dbgq3m2utd9f, child number 0
    SELECT c1,c2 FROM t1 WHERE c2 = 3
    Plan hash value: 3723378319
    | Id  | Operation            | Name  | Starts | E-Rows | A-Rows |   A-Time   | Buffers |
    |*  1 |  INDEX FAST FULL SCAN| IDX_1 |      1 |      1 |      1 |00:00:00.01 |       7 |
    Predicate Information (identified by operation id):
       1 - filter("C2"=3)
    17 rows selected.
    Elapsed: 00:00:00.34
    mho.sql>> SELECT c3,c4,c5,c6
      2  FROM t1
      3  WHERE c4 = 3
      4  AND c5 = '0000000003'
      5  AND c6 = 'x    ';
            C3         C4 C5         C6
             3          3 0000000003 x
    Elapsed: 00:00:00.00
    mho.sql>> @dispcursor
    PLAN_TABLE_OUTPUT
    SQL_ID  fv62c9uqtktw9, child number 0
    SELECT c3,c4,c5,c6 FROM t1 WHERE c4 = 3 AND c5 = '0000000003' AND c6 = 'x    '
    Plan hash value: 2969533764
    | Id  | Operation            | Name  | Starts | E-Rows | A-Rows |   A-Time   | Buffers |
    |*  1 |  INDEX FAST FULL SCAN| T1_PK |      1 |      1 |      1 |00:00:00.01 |       9 |
    Predicate Information (identified by operation id):
       1 - filter(("C4"=3 AND "C5"='0000000003' AND "C6"='x    '))
    17 rows selected.I didn't succeed to reproduce your index skip scan situation.
    Best Regards
    Mohamed Houri

  • Composite photo and background layer question

    I would appreciate some help with a workflow problem when dealing with a composite, selection and background layer. My normal workflow is to start of in LR4, and if need be do an "edit in, CS6". I am relatively new to CS6, so bear with me.
    I have some portraits I want to put different backgrounds on. I am using Matt Kloskowski's Layers book and Composites books written for CS5. I also have Martin Evening's book on CS6 and the workflow for doing a composite is pretty much the same. The catch is that none of them start off in LR with the original photo. They all describe the following basic workflow pattern:
    1. Bring up the main photo in CS using "edit in CS6"
    2. Change the photo from a background layer to a regular layer
    3. Make a selection.
    4. Make a layer mask
    5. Refine the edge
    6. open the background photo you want to place the selection in (steps 4 and 5 are sometimes reversed so you are refining the edge on the new background)
    7. copy and paste the original photo onto the new background
    8. Refine the edge if not already done
    9. Save and exit back to LR with the composite
    If I follow this procedure I run into a couple of problems:
    1. My backgrounds are in a separate folder on my computer and not cataloged in LR. So, if I open them in photoshop and paste the original photo onto that image, LR will not know that I want to take the new composite back to the original folder along with the protrait. If I go to save the image, CS want to take the composite back to the folder on my computer where I got the background from. I tried playing around and tried renaming the composite similar to the naming convention I use for my photos in LR and then importing it into that folder after I have saved it in the background folder. This had some unintended consequences. First, I had trouble renaming the composite photo. For some reason Windows kept plugging in an old photo file name from one of my photos taken two years ago. After I discovered that  I could work around it. But after the first composite finally got into LR, when I tried to do it again, the import button on the left side of my LR went dark and I couldn't import the second composite photo I was working on. This could have been a coincident and unconnected LR glitch, but I have never had that problem before.
    So...I was thinking of modifying the workflow to the following:
    1. Bring up the main photo in CS using "edit in CS6"
    2. Change the photo from a background layer to a regular layer
    3. Make a selection.
    4. Make a layer mask
    5. Refine the edge
    6. open the background photo you want to place the selection in
    7. copy and paste the new BACKGROUND onto the original photo
    8. Move or make the new background layer THE "Background" layer
    10. Refine the edge
    11. Save and exit back to LR with the composite
    I am envisioning this will ensure that my composite will wind up back in LR because it is still keeping track of the original photo which now has gotten the new background, regardless of what the file name of the new background was.
    Does any of this make sense? Does any one know a better way of handling this?
    Thanks for any help,
    Jim

    Yes, it makes sense and I think you should go ahead and try it.

  • Quick question: what is the difference between graphic and movie clips?

    What is the difference between the two symbols: graphic and movie clips? They both contain frames..?

    movie clips can have
    instance names : so they can be controlled via actionscript
    filters applied : drop shadow, glow, blur, color adjust etc
    blend modes applied : difference, screen, lighten, darken, etc.
    3d transformations
    graphics:
    none of the above
    the only real practical reason to use a graphic is the reason jdehaan stated. a graphics internal animation can be scrubbed via the main timeline. graphics will only advance when the main timeline advances. when the main timeline stops.. graphics stops.
    movieclips on the otherhand are said to run independent of the main timeline. so you can have a MAIN timeline with one frame only and the movieclip's interior animation will run constantly.
    also via the properties panel you can tell a graphic to stay stuck on a certain frame or loop a set number of times.
    always use movieclips unless you have a reason not too. as kglad said it will save you and others a lot of hurt in the future.

  • Account with an icon of a face and a question mark

    Same issue of other user in Yosemite Apple Support.
    Following advises on that thread I also installed the ETRECHECK software tool, report is as follows:
    Problem description:
    At the login screen I find an icon with a face and a question mark in it - with a message it needs an update.
    EtreCheck version: 2.1.5 (108)
    Report generated 02 gennaio 2015 12:37:26 CET
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,2
      1 2.5 GHz Intel Core i5 CPU: 2-core
      16 GB RAM Upgradeable
      BANK 0/DIMM0
      8 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      8 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 4000
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 1:22:54
    Disk Information: ℹ️
      APPLE HDD HTS545050A7E362 disk0 : (500,11 GB)
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) / : 498.89 GB (467.03 GB free)
      Encrypted AES-XTS Unlocked
      Core Storage: disk0s2 499.25 GB Online
      MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Computer, Inc. IR Receiver
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
    User Login Items: ℹ️
      iTunesHelper Applicazione (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Dropbox ApplicazioneHidden (/Applications/Dropbox.app)
    Internet Plug-ins: ℹ️
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      QuickTime Plugin: Version: 7.7.3
      Default Browser: Version: 600 - SDK 10.10
    Safari Extensions: ℹ️
      Pin It Button [Installed]
      Save to Pocket [Installed]
      Add To Amazon Wish List [Installed]
    3rd Party Preference Panes: ℹ️
      Flash Player  [Support]
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          14% WindowServer
          3% hidd
          2% Safari
          1% Dock
          0% fontd
    Top Processes by Memory: ℹ️
      333 MB com.apple.WebKit.WebContent
      155 MB mds_stores
      137 MB Safari
      137 MB Finder
      86 MB Dropbox
    Virtual Memory Information: ℹ️
      7.76 GB Free RAM
      4.88 GB Active RAM
      3.28 GB Inactive RAM
      1.26 GB Wired RAM
      4.73 GB Page-ins
      0 B Page-outs
    Diagnostics Information: ℹ️
      Jan 2, 2015, 11:15:06 AM Self test - passed
      Jan 2, 2015, 12:06:57 AM /Library/Logs/DiagnosticReports/Dropbox109_2015-01-02-000657_[redacted].cpu_res ource.diag [Details]
    ---------- is there any troubleshooting for delete that fake account every time I start my Macbook Pro?
    thanks and regards
    Edoardo

    Smiley face with a ? means a bootable system is not found.
    There maybe  a problem with either system software or hard drive itself.
    Try this.
    Repair Disk
    Steps 2 through 8
    http://support.apple.com/kb/PH5836
    Best.

  • MacBook Pro with Retina display in game graphics and SMC

    I recently bought a MacBook Pro with retina display and started playing STC2 on it. I experienced  great gameplay with maxed out graphics and 30fps, however recently the fps was down and as part of my trobleshooting I reset the SMC and that seemed to correct the issue. However the computer heats up much faster now and the fans seem to labor to keep it cool. When the fps was lower before i reset the SMC the computer did not get nearly as hot. My question is; is this the OS trying to protect the hardware from overheating or just a glitch?

    Well unless you want to go through the hassle of waiting for a replacement unit you can try a few things on your own.
    Make sure it is plugged in and charging (Orange LED light will indicate it is charging Green means it is fully charged)
    Once it is plugged in make sure everything else is unplugged
    The only thing plugged in should be the power adapter
    On the left hand side of your keyboard press down and hold the Control Shift and Option Keys
    While you are holding down those three keys hold down the power button as well
    Hold down all 4 of these for 10 seconds
    After 10 seconds let go
    Try turning your mac on
    If this works problem fixed!
    If this does not work try calling 1-800-MYAPPLE (You get 90 days of free complimentary phone support on your product)
    If you purchased AppleCare you have 3 years of it and you should have this number on hand it can really help you out
    I always advise friends and family to purchase applecare if they plan on having their product longer than a year
    You will get 3 years of phone support as well as hardware support
    That means if you have any questions or anything goes wrong just call Apple
    It also means if your computer breaks it is covered! Meaning no out of pocket expenses unless it is water or accidental damage
    You may really want to look into purchasing applecare

  • Creating PDFs from documents with graphics having transparent background

    I came across this problem when making PDFs of PowerPoint presentations but I have found that the same thing happens in Word.
    PDFs created from documents containing graphics having transparent backgrounds end up being very large (usually much larger than the source documents) and rendering slowly on the screen. The graphics are either JPGs with background set as transparent using the Set Transparent Color tool on the picture toolbar in MS Office applicatons, or PNGs that already have transparent backgrounds when inserted in the document. PDFs made from the same documents in which the graphics do not have transparent backgrounds are much smaller and render more quickly.
    When I try to select the graphics in the resulting PDFs using the Touch-up Object tool, I find that each graphic is actually made up of many individual graphic lines. Graphics without a transparent background select as a single object.
    I have tried several PDF creation tools and all kinds of settings but nothing seems to make much of a difference. The only way I can get a reasonable file size is to reduce resolution in the PDF creation settings to the point that they are unacceptable.
    This happens to me in the following applications:
    * MS Word 2003
    * MS PowerPoint 2003
    I have tried these PDF creation tools:
    * Acrobat 7 Pro
    * JAWS PDF Creator 3.60
    * Bullzip PDF Printer 6.0
    Has anyone else experienced this? Is there a solution?
    Thanks.

    Well we can color this one solved. What I figured out I can do is have the application tell Word to print-to-file using an Apple LaserWriter (or other PostScript) printer, and put the resulting file in a folder that is being watched by Distiller. Distiller then converts the PS document to PDF and I'm in business.
    So no change in the user process, and no need to crack open a new API and add it to the existing application. Works for me.
    Thanks to all for the suggestions and specific links and other information of interest...

  • Why is my Hardware Accelerate Composition, Layer, and Footage Panels check box disabled

    Hello anyone!
    I have all the requirements to meet Adobe's standards for GPU requirements, but this check box (Hardware Accelerate Composition, Layer, and Footage Panels)[Edit>Preferences>Display] is disabled for me, why? Do I need to worry about this setting? Does it really matter? Any information on this topic would be helpful. Thanks in adavance for your feedback.
    GPU Information:
    Fast Draft:
    Available
    Texture Memory:
    924.00 MB
    Ray-tracing:
    GPU
    OpenGL
    Vendor:
    NVIDIA Corporation
    Device:
    GeForce GTX 470/PCIe/SSE2
    Version:
    3.0.0
    Total Memory:
    1.20 GB
    Shader Model:
    4.0 or later
    CUDA
    Driver Version:
    4.2
    Devices:
    1 (GeForce GTX 470)
    Current Usable Memory:
    608.00 MB (at application launch)
    Maximum Usable Memory:
    1.25 GB
    Computer:
    Windows 7 64bit SP1
    24GB MEM
    i7 intel
    Feature support levels
    There are three tiers or levels, from lowest to highest requirements, of support:
    Level 1: For OpenGL SwapBuffer:
    This level simply requires a GPU that can do OpenGL 1.5, or greater, with Shader Model 3.0, or greater. Most ATI and NVIDIA cards, and the Intel HD Graphics 3000 chipset (available in the MacBook Air, Mac Mini, various Windows machines, etc.) and 4000 (Windows only at this time) are supported. If your GPU does not support these requirements, software OS blitting like CS5.5 occurs, and there are improvements for software blitting in After Effects CS6, as well.
    Level 2: For Fast Draft previews, Hardware BlitPipe, and Cartoon GPU acceleration:
    Includes Level 1 features. This level requires OpenGL 2.0, or greater (with Shader Model 4.0, or greater, on Windows), and 256 MB, or greater, of texture memory. Most ATI and NVIDIA cards released in the past five years, plus the Intel HD Graphics 3000/4000, support this level.
    If your GPU does not support these requirements, these features will be disabled:
    Fast Draft mode
    The "Hardware Accelerate Composition, Layer, and Footage Panels" preference.
    The Cartoon effect's "Use OpenGL When Available" option (the Cartoon effect then runs on the CPU).
    Level 3: For Ray-traced 3D rendering on the GPU:
    Includes Level 1 & 2 features (for machines with attached monitors). This level requires a supported NVIDIA GPU and 512 MB, or greater, of texture memory. For a current list of supported GPUs, see the Adobe website.

    Well, you should be concerned that it isn't available  - there is still some configuration issue with your graphics card - but you can live without it most of the time.
    Mylenium

  • Export Graphic w/Transparency, CS6 Server, Fail

    I have a script that loops through all graphics inside an adobe indesign document. The script senses what type of graphic file it is (JPEG, TIFF, EPS, PSD, etc), and, based on some simple rules, the graphic will get exported as either a JPEG, or a PNG.
    For source graphics that have the POTENTIAL to have transparent pixels in them (TIFF, EPS, et al), the export format is set to PNG. For all others, the export format is set to JPEG.
    This has been running quite well for some time now, until I switched over a development server to CS6. It was just discovered, this morning, that graphics w/transparent pixies get exported as a PNG, but, where my transparency USED TO BE, I now see a big ugly piece of white. It's terrible.
    I've scoured the documentation looking for an answer. Suprisingly, I see a new batch of PNGExportPreferences that I didn't have available to me in CS5.5, but, none of these seems to do the trick. The one that stands out to me is app.pngExportPreference.transparentBackground = true. The documentation for this property is a bit ambiguous in my particular use-case, and, sadly, doesn't seem to do the trick. I'm still seeing a big ol' white blob where I would expect to see transparency.
    The basic syntax for what I'm doing is:
    d.allGraphics.each(function(graphic){
      graphic.exportFile(ExportFormat.PNG_FORMAT, "graphic.png");
    Ideas?

    NEVERMIND. I am an idiot. The script is running fine. the .transparentBackground setting IS the trick. I just completely FAILED to remember, until now, that MS's paint program cannot handle transparency. I was viewing the exported graphic in Paint. SUCH an idiot.

  • Why do some graphics only have question marks on my iPad?

    Why do some graphics only have question marks on my iPad?

    On web pages and in the ap store.  In place of the graphic there's a little box with a question mark in it.
    I can't even connect to a web page right now.  I've got three bars on the wifi icon but safari just keeps trying until it says it can't connect to the server.  Same with the ap store, I've been trying all afternoon to download a new ap with no success.  It came right through on my iphone on the same wifi network.  Had the same problem on my home network.   I'm new to apple and I've only had the iphone and the ipad for a little over a week, but all this seems to have started after the most recent software update.
    Is this all related?

  • A transparent question mark on iTunes icon in dock/ iTunes won't open

    Thanks for reading this and helping me--I have an iMac and a transparent question mark is in the middle of iTunes symbol in my dock. iTunes will not open at all when I try to open and there are no error messages.
    Thanks

    Open your Applications folder and locate iTunes. Drag it's icon to the doc. Drag the other icon out of the dock and it will disappear.
    If you can't locate iTunes in your applications folder, download a fresh copy here: http://www.apple.com/itunes/download/

  • Knockout with Transparency Question

    Hi,
    I'm on a Mac, OSX 10.6.8, IDCS4. I'm trying to put a grayscale watermark of an image over a red background, with text above.
    Three separate layers. Top=text, middle=grayscale PSD image with some totally transparent areas, bottom=solid red background.
    The problem I am having is that if I lower the opacity of the grayscale image, it picks up the color of the red background. I want to keep it grayscale, but dimmed down. Is there an easy way to do this? I tried grouping the grayscale graphic and the red background, and clicking the "Knockout Group" box in the Effects panel. That didn't do it, besides it knocked out the entire square outline (much of which is transparent). I just want to knock out background behind the visible portion of the image.
    I could use the pen tool and create an outline of the image, then put pure white copy of this over the red, then make a black duplicate and place it above the white copy....lowering the opacity as needed to act as a background for the image, but what a pain. There is probably an easier way to do this with native IDCS4 tools. I just don't know what it is.
    Thanks,
    Lou Dina

    Thanks, Tman.
    When placing a grayscale TIF, I can lower the tint after selecting the image with the Direct Selection Tool. It does fade, as you say. If I lower the Tint to zero, the image fades to pure white and I end up with a solid white rectangle. Much of this rectangle in my original is transparent. I tried saving the TIF as a single layer (not a background) with transparency, as two layers (bottom layer with a white background, turned off), as a transparent layer on top of a white "background" (also turned off), with and without alpha channels, etc. As you said, if I use an alpha channel or CMYK when placing the image into ID, the tint feature does not work at all.
    Interestingly, if I place the TIF first, and THEN selecting Object > Clipping Path > Options, I can then select an alpha channel, it hides the transparent rectangle, but the slider works fine on the remaining image. If I invoke the alpha channel option when placing the image into ID, it doesn't work. So, that seems to be the key.
    I appreciate the help. I learned something.
    Lou

Maybe you are looking for

  • Request forward with a PDF file is not working in 8.1 SP2?

              Hi,           I have a servlet that forwards the request to a pdf file. The code works fine           in WL61. However when I ran the servlet in WL8.1SP2, all I get is a blank page.           However, instead of PDF I forward the request to

  • IMAC 27 - attached a second monitor - mouse tracking problem

    After attaching a 19 inch lcd via the mini display port and a dvi adapter my mouse tracking has gone bad, not just from one screen to the other even just on the main screen if you move the mouse around it jumps several inches and is very inaccurate.

  • Missing Print Templates Folder

    I have recently purchased some blog templates and I can not install them because I have no print templates folder. I go edit-preferences-show lightroom folder- lightroom- and there is no print templates folder to drop the templates into. Please help!

  • Getting back original image

    Hello. I am using Labview 2010 version to develop a program to load an image and process them using threshold.  I would like to compare the original image with the threshold image. Can anybody help me to show me some guides how to find back the origi

  • TNS: Protocol Adpater Error on installation of AS 10.1.2 on MS Vista home

    Hi, I am trying to install for personal learning purposes, Oracle AS10g (10.1.2) on MS Vista home premium. While installing Infrastructure, when it goes to Configuration Assistants, I get a consistent error on the Database Configuration Assistant whi