Two layers with "dissolve"

I'm on CS3 with OS10.4.11
I have a photoshop document where I had two layers each with a shape of solid colour. In the top layer I had blend mode "Dissolve" and then reduced its opacity to get the speckled/distressed look.
If I merge the two layers or flatten the document the end result is softer and blurry; it loses the sharpness which is visible in the original format.
Is there any way I can flatten it and keep the sharpness?

View at 100% (View>Actual Pixels) to see how the Dissolve Blend Mode will look when flattened.

Similar Messages

  • Dynamically parent two layers together with expressions

    In AECS6, I have an Image Layer that is using the layer directly above as a Alpha Matte. I want both layers to scale at the same time, unless a certain condition is setup where I only want the matte to scale - leaving the image at original size. Normally I'd just make a new pair of layers and only scale that, but ALL my layers are dynamically linked to eachother for another more complex effect.
    I wrote a simple expression to get the current scale of the matte layer (index-1), and then calculate what this particular layer's scale should be. But the scales don't match up just right because we are dealing with percentages... not absolute values. However, if I simply parent the two layers together, it of course works.
    So, I either need to find a way to turn the parenting on/off with code, like if THIS, then ParentTo(index-1), or I need to write my scaling script correctly.
    Fwiw- here's that script:
    if (index != 15)) {
      // get the original and current scale value of the layer just above, and calculate an offset
              sOrig = thisComp.layer(index-1).transform.scale.valueAtTime(0)[0];
              sNow = thisComp.layer(index-1).transform.scale[0];
              sOffset = value[0] + (sNow - sOrig);
              [sOffset,sOffset]
    } else {
    // this is layer index 15, don't do anything with it
              value;
    Appreciate the help!

    Not sure what you are getting at, but the actual value ranges do not really matter in an expression. It's more likely you are eitehr having an anchor point issue or your keyframes are simply not linear. in the latter case of course a simple subtraction would not give the correct result because values would be exponential/logarithmic/whatever. You'd have to use much more complex code then to accumulate all values over time such as the great Dan Ebberts explains on his website:
    http://www.motionscript.com/articles/speed-control.html
    Anyway, I suppose you could always use effects rather than native transforms to scale your matte while still leaving it parented. Y' know, there is a Transform effect... That would be much simpler and also avoid the expression evaluation bogging down your system...
    Mylenium

  • Synchronizing movement of two layers

    I have a feeling I'm using the hard way to accomplish something simple, so I hope someone here can straighten me out.
    What I'm doing is drawing an "indiana jones" type line over a moving 'map' layer (approx. 18" x 36") — moving generally left to right, but also some ups & downs. So, the line, as it's being drawn, and after it's drawn, has to move precisely in sync with the layer below.
    I have no problem creating the line. Been there, done that before. But, never tried syncing a line with another layer that's in motion. As I'm currently doing it, it's very time consuming.
    I tried a copy & paste of the keyframes from the 'map' layer to the line layer but that didn't work out too well. What I'm currently doing is manually keyframing the line about every 30 frames, but I'm thinking there has to be a faster/easier way to do this. So far I've keyframed about 1 minute, and have about 8 minutes & 12,000 more keyframes to go.

    Problem solved.
    I decided to trash the project file that I've been struggling with, sending a lot of hours down the drain, but it felt like the right thing to do. Then:
    First, I opened a new project.
    Second, I imported the large image file.
    Third, I opened a new layer.
    Fourth, I grouped the two layers.
    Fifth, I drew my line on the grouped layer
    Sixth, I keyframed the group with the desired motion.
    Now the movement of both layers are in sync. It was quick & easy.
    Where I went wrong, which lead to starting this thread, is that after I imported the large layer, I keyframed the motion I wanted.
    Next I opened line layer, drew the line, and keyframed it.
    Then I grouped the two layers. So, even tho the layers were grouped, each was separately keyed, which caused the undesired result.
    So, Kyriakos, I did in fact have a grouping problem. Not that I didn't group as you supposed, but that I grouped too late in the process -- which in turn lead to my keying the two layers individually, rather than as a group. Anyway, that's close enough for me. I'll give you credit for the solution.

  • Intersecting Layers with alpha problem

    Hi,
    I have a problem with Motion when two layers intersect. On layer is totally opaque, and the second layer has transparent areas. The problem occurs in areas when the transparent areas intersect with opaque areas. In those regions I get a dark gray line appearing.
    Check out this image and you will see what I mean.
    http://jack.fxhome.com/MotionLine.jpg
    Note: I get this unwanted line in the exported frame as well.
    Why does motion do this?
    Is there anyway around this?
    Thanks

    1) Try setting your Render Quality to Best (under the View pop-up menu)
    2) Try changing the alpha interpretation of the layer with transparency - select it, press Shift-F, and try the different options in the Inspector's Media tab.

  • Sequence Layers with Transition

    Because when I do a sequence of layers, with the transition "Cross Dissolve Front and Back Layers", the first layer is "0" in opacity and no have keyframes like others layers?
    System Windows 8.1.
    After Effects CC 2014.2.

    Could be some bug, but nothing stops you to do a little copy&paste of the keyframes...
    Mylenium

  • Show two trees with same context structure

    Hi,
    I'm having problems showing two trees using the same context structure but different data simultaneously.
    Here is my context structure:
    tree (value node)
    - expanded (boolean)
    - label (string)
    - leaf (boolean)
    - recursion (recursion node with ref on tree)
    I fill the first two layers of this tree in wdDoInit, the rest is loaded dynamically triggered by the onLoadChildren event.
    This setting works fine for one tree. But I have the requirement to set up a second tree using the context structure of the first tree with different data. The problem is both should be shown simultaneously.
    What I expected to work is:
    1. to wrap the above mentioned structure into a container
    2. make the tree a prototype (singleton=false) and
    3. instantiate two tree nodes
    4. fill both nodes with data
    5. bind each with its corresponding ui elements manually
    So the "shared" context structure would be:
    treeContainer (value node)
    - tree (value node, singleton=false)
    -- expanded (boolean)
    -- label (string)
    -- leaf (boolean)
    -- recursion (recursion node with ref on tree)
    My data mapping code begins with these lines
    ITreeContainerElement treeContainerElement =
    treeContainerNode.createTreeContainerElement();
    treeContainerNode.addElement(treeContainerElement);
    ITreeNode treeFactory = wdContext.nodeTree();
    which is then called one time for each tree. What happens is that both trees show the aggregated data, so each tree shows the data for both trees. When I use the factory of the element instead
    ITreeContainerElement treeContainerElement =
    treeContainerNode.createTreeContainerElement();
    treeContainerNode.addElement(treeContainerElement);
    ITreeNode treeFactory = treeContainerElement.nodeTree();
    both trees show the data for the first tree.
    I am aware that when I copy the context tree to a different location and rename every value node, e.h. tree2, recursion2 that this will work. But the problem is that the two trees will interact together, e.g. copy branches, and I want to use the typed API since the tree will get quite complex and they have absolutely the same structure.
    I guess I'm getting sth. terribly wrong here with my understanding of the context, so any help is appreciated.
    Best regards,
    Fabian

    Hi,
    It seems to be that my understanding of the context was terribly wrong. After I traced the behaviour in the debugger I realized that I made one important fault. The datasource of the UI elements should have been bound to the first and second instance of the recursion node container. Therefore the parent node should not be singleton since I access two instances simultaneously.
    However, I now separated both trees in the context for the sake of maintainability. I work now with the generic API In order to reuse the functionality.
    To determine the correct container I introduced the convention that the tree value node should only contain the recursion node. Then I use the following code to determine the right container:
         private IWDNode getContainer(IWDNodeElement parentElement) {
              IWDNode parentContainer = parentElement.node();
              IWDNodeInfo parentContainerInfo = parentContainer.getNodeInfo();
              boolean isRecursive = parentContainerInfo.isRecursive();
              String childName = null;
              if (isRecursive)
                   childName = parentContainerInfo.getName();
              else {
                   IWDNodeInfo recursiveNodeInfo =
                        (IWDNodeInfo) parentContainer
                             .getNodeInfo()
                             .iterateChildren()
                             .next();
                   childName = recursiveNodeInfo.getName();
              return parentContainer.getChildNode(childName, parentElement.index());
    I'm sorry if my question was somehow imprecise and lead into the wrong direction. With the code now working I reckon the question as answered and give you both points for good answers!
    Best regards,
    Fabian

  • Merging/Flattening Layers with different blending modes and maintaining the visual appearance

    Hello,
    I see there are many others that are having the same problem as me. And alas, it doesn't seem like the problem has been solved or very understood for that matter.
    I want to be able to take a document, that has multiple layers, inside of multiple groups with various layers having various blending modes applied to them and from within that document, select simply two of those layers, one with a Divide blending mode and the other layer Normal, merge those two layers, but have the visual appearance of the merged layer maintain the visual appearance of what the layers looked like before I merged them.
    Everytime I attempt this, Ps takes my Divide layer, reverts it back to Normal and then merges the layers, thus changing the appearance of what it was before the merge. This is not the desired result.
    I understand that when you flatten an entire series of layers, it applies all the blending modes and maintains the visual appearance. Is there a way to do this with just two layers instead of all the layers? If so, that would be great information. If not, why not?
    Thank you
    Jake

    Short answer:  No. 
    A "layer" with a specific blending mode implies a sequence of math operations on a given pixel.  Think of the visible pixel R, G, and B values as the result of a potentially complex math formula that combines numbers from each layer in complex ways (those ways being defined by the blending mode you've chosen).  You can't always simplify particular factors of your choosing in a given math formula.
    The next step is to examine why you would want to do so.  Perhaps there's a more direct way to achieve your goal that would avert the need entirely.
    Another possibility, if the effect of several layers together is something you'd like to manipulate as a unit, is to Group the layers.
    -Noel

  • Is it possible to perform Clone Stamping on two layers simultaneously?

    Hi,
    I have two layers, one is a colour stone texture, another is a black and white heightmap of the same image.
    I want to repair a few areas, but it's essential that the two layers stay in sync, i.e. whatever cloning is done to the colour layer must be the same on the heightmap layer.
    Neither layer contains any transparency.
    If not is there any other way I can achieve the same end result?
    Thanks
    Steve

    I don’t think this is easily achieved as Clone Stamping does not record as an Action.
    One rather clumsy work-around would be to work with Smart Objects –
    • convert one Layer to a SO
    • copy, move and mask that to cover a blemish
    • repeat as necessary
    Then
    • duplicate the file and
    • replace the SO’s content with the other Layer and update
    This would be reasonable only with a very small number of corrections and/or smallish files, though.

  • Issues with merging layers with layer styles

    Just downloaded CS6 Photoshop off the creative cloud and the merge layer command does not work. What is happening is there is one layer with a layer style then a shape layer and when I hit Cmd E it merges the layers but the layer style will not merge with it. I was chatting it up and everything they recommended did not work. It works on all my other co-workers computers and we are all on the cloud. I tried renaming pref. folder, settings folder, re-installing, holding down shft+option+cmd on start up. I also created a test account but that turned out to be a major inconvenience. Once logged into the account there is nothing there. The suggestions just started getting more ridiculous as chat proceeded. Nothing.
    Has anyone experienced this issue?
    Does anyone have a solution where I don't have to create a whole new admin account just to see if CS6 Photoshop works correctly?
    P.S.
    Adobe customer portal is about worthless.

    Get Rich or Die Tryin wrote:
    Just downloaded CS6 Photoshop off the creative cloud and the merge layer command does not work. What is happening is there is one layer with a layer style then a shape layer and when I hit Cmd E it merges the layers but the layer style will not merge with it. I was chatting it up and everything they recommended did not work. It works on all my other co-workers computers and we are all on the cloud. I tried renaming pref. folder, settings folder, re-installing, holding down shft+option+cmd on start up. I also created a test account but that turned out to be a major inconvenience. Once logged into the account there is nothing there. The suggestions just started getting more ridiculous as chat proceeded. Nothing.
    There are two merge layers type commands  one is merge down involves only two layers and another that is merge visible layers.  In my opinion there is a problem with the way merge down is implemented. When you use merge down if the bottom layer in the merge down has a layer style the merged layer also has this layer style attached.  This means that pixels from the layer merged into it will be effected by this layer style.  The result may well not look like the composite looked before the merge. The will also happen in CS5. Merge visibile layer works the correct way in my view as the merge progresses the top two layers are merge by applying any layer masks and layer styles first and merging the two layers the resulting layer has no layer masks and no layer style. This result is then merged with the next lower layer with its masks and style applied first. The result is a single layer without mask and style that looks like the original composite view.  If your having the problem with CMD|CTRL+E and the result has a layer style try turning  the layer style visibility off see if that helps.  If it helps some  backup to before the merge down  use merge visible or first rasterzise the bottom layer to be merged.

  • To move an image behind a part of our "first picture", as if two layers are overlapped !

    Hello,
    I'm french, and I already posted a question a few times ago, on this forum and I was very satisfied with your quick answers, so I come ask again a little question...
    It's about Photoshop CS6 and I would like to know if it's possible to move an image behind a part of our "first picture", as if two layers are overlapped (the first picture and the picture that I add !) and one layer was partially hidden by the first !
    It's quite complicated to understand and explain... I know ... and I'm very sorry ...
    Example: If I want to move a book behind furniture (which is located in the center of my "background" or "first picture", surrounded by a nonuniform setting !), so to see only part of the book and the other part is hidden by the furniture ! Like the picture below (where we see that the "Coraya" is behind the desk !!) :
    I thank you in advance for all your quick responses and I congratulate you in advance to your understanding and your professionalism about Photoshop !
    Makarsh

    Makarsh,
    One easy way to accomplish that look is to add a Layer Mask to the "book" Layer, in the shape of the furniture, that you wish to hide part of the book behind.
    That would probably be easier by creating a Selection for that part of the furniture, with the Selection Tool of your choice. I personally like to do such work with the Pen Tool (creates a Path), as it is very exact. However, if one is not comfortable with the Pen Tool and Paths, then the Lasso (perhaps constraining it for straight lines) might be easier. If you do use the Pen Tool, when complete, go to the Paths Panel, and from the little arrow in the top-right, choose Make Selection.
    Then, with that Selection still active, go to the book Layer, and click on the Create Layer Mask icon, at the bottom of the Layers Panel.
    If necessary, you can do touchup to that Layer Mask, after it has been created.
    Good luck, and hope that helps.
    Hunt

  • Synchronizing motion for two layers

    Ok. I'm more than a little frustrated trying to get this to work. Any help would be most appreciated.
    I've got two clips. One is a still image serving as my background. the other is an illustration of a man standing stationary in the foreground. The layer of the man is on top of the background layer.
    My problem occurs when I zoom in on the standing man. It is extremely difficult to get the scale and key frames for both layers to sync up. That is it is proving difficult to make both the man and background appear to be inhabiting the same "space" rather than independent layers.
    Is there a way to lock the two layers together so that changes made to the motion tabs in the scale and center of one layer are the same for both? I'm sure there is but just can't seen to figure it out on my own.
    Thanks,
    Greg

    Hi -
    On the bottom left corner of the timeline, press Toggle Clip Keyframes or type Option-T.
    This will display the keyframes for a clip on the timeline. The blue line is the motion keyframes, the green is any keyframes you have applied to filters.
    With those keyframes now displaying on the timeline, the Playhead will snap to them if you have snapping turned on (type "n") and it should make it easy for you to place you keyframes to match keyframes you have placed on other clips.
    MtD

  • Speed up intersection of two layers

    Hi,
    I'm trying to make an intersection of two layers work faster. First I create an empty table:
    create table shptmp as
    select sdo_geom.sdo_intersection(t1.geom, t2.geom, 0.005) intersect_geom,
    t1.id, t2.id from SHPTABLE1 t1, SHPTABLE t2
    where rownum < 1;
    Then I fill this table with intersection-polygons:
    insert into shptmp2
    select c.intersect_geom, id1, id2 FROM
    (SELECT /*+ ORDERED */ sdo_geom.sdo_intersection(t1.geom, t2.geom, 0.005) intersect_geom, t1.id id1, t2.id id2 from SHPTABLE1 t1, SHPTABLE2 t2
    where SDO_RELATE(t2.geom, t1.geom, 'mask=ANYINTERACT querytype=JOIN') = 'TRUE') c
    WHERE SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(c.intersect_geom, 0.005) = 'TRUE';
    SHPTABLE1 and SHPTABLE2 both contain about 2000 polygons and multipolygons, and they have R-tree indexes. My resulting table shptmp contains about 9000 records when the query has finished. Anyway, it takes more than an hour to run the intersect-query. Is this a normal response-time for a spatial overlay of two layers? When I do something like a Union in ESRI ArcMap it only takes seconds or maybe minutes. Any ideas how to speed up this query? By the way my Oracle version is 9.2.0.1.0.
    Thanks,
    Anja

    Anja,
    An hour seems too long. Is there a spatial index defined on the temp table?
    Could you share your dataset so we can try to recreate the issue?
    I tried the following on a Linux server running Oracle 10.1.0.4
    SQL> select count(1) from map_airports_us ;
    COUNT(1)
    2346
    Elapsed: 00:00:00.01
    SQL> select count(1) from MAP_ADMIN_AREA4_US ;
    COUNT(1)
    28835
    Elapsed: 00:00:00.02
    SQL> select distinct t.geometry.sdo_gtype from map_airports_us t ;
    GEOMETRY.SDO_GTYPE
    2003
    2007
    SQL>
    1 select count(1) from
    2 (
    3 select /*+ ORDERED */ sdo_geom.sdo_intersection(a.geometry, b.geometry, 0.05) from
    4 table (sdo_join('MAP_AIRPORTS_US', 'GEOMETRY', 'MAP_ADMIN_AREA4_US',
    5 'GEOMETRY', 'mask=ANYINTERACT')) c, map_airports_us b, MAP_ADMIN_AREA4_US a
    6 where b.rowid = c.rowid1 and a.rowid = c.rowid2
    7* )
    SQL> /
    COUNT(1)
    2097
    Elapsed: 00:01:33.17
    SQL>
    1 select count(1) from
    2 (
    3 select /*+ ORDERED */ sdo_geom.sdo_intersection(a.geometry, b.geometry, 0.05) from
    4 map_airports_us b, MAP_ADMIN_AREA4_US a
    5 where sdo_relate(a.geometry, b.geometry, 'mask=anyinteract querytype=window')='TRUE'
    6* )
    SQL>
    SQL> /
    COUNT(1)
    2097
    Elapsed: 00:02:00.64
    SQL> SQL> create table tempint (id1 number, id2 number,
    2 geometry sdo_geometry);
    Table created.
    Elapsed: 00:00:01.01
    SQL>
    SQL> insert into tempint
    2 select /*+ ORDERED */ b.polygon_id, a.polygon_id,
    3 sdo_geom.sdo_intersection(a.geometry, b.geometry, 0.05) geometry
    4 from table (sdo_join('MAP_AIRPORTS_US', 'GEOMETRY', 'MAP_ADMIN_AREA4_US',
    5 'GEOMETRY', 'mask=ANYINTERACT')) c, map_airports_us b, MAP_ADMIN_AREA4_US a
    6 where b.rowid = c.rowid1 and a.rowid = c.rowid2 ;
    2097 rows created.
    Elapsed: 00:02:22.63
    SQL>
    So 2 minutes seems more like the right figure.
    Jayant

  • Mask the difference between two layers

    Hello everyone. I have a problem that I feel should be solvable, but I just can't figure it out.
    I have three elements:
    Static image of the background of a gym
    Full-body video of a person doing an exercise (they take up the center 1/5th of the frame) with the same background
    Title text
    The effect I'd like is so that the title text (large, bold font that spans the width of the window) is masked out by the person, in a manner similar to how magazines' titles will be masked (examples here, here, and here).
    When I put the two layers on top of each other and set the top's blend mode to Difference, I do indeed only see the person (albeit in psychedelic colors). I just can't figure out how to use that as a mask to hide those parts of the title.
    Exercising person:
    Background:

    The image is a combination of a few slight movements
    When there is movement, the two images can't easily be used with a difference matte. I suppose if you could match them up perfectly, you could crop out the edges.
    I'm not sure what you mean by different format - surely a still image and video are going to be different formats?
    One is a JPG and one is a PNG. It looks like the tripod moved.
    In any case, if it works OK for you, then great.
    If you set it up right, then you could probably use levels to crush the blacks and lighten up anything else, turning it in to a matte. But since his hair looks black, it complicates things a bit.

  • HT1423 I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

    I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

    I am adding more memory, should I replace the top two slots with the 4g memory modules, then place 2g memory modules on bottom slots. Does it even matter?

  • HT4910 Have two phones with same apple id as I got one for my hubbie .he tried to back up his numbers in I cloud . Our contacts have now merged and neither can delete from our phone without it coming off the other . Any ideas how we can stop this

    Have two iPhones with the same id as I got hubbie one in week and when I got it they asked for email address so I gave the one we use, so when my husband started phone up he just put my password in. When he tried to back his numbers on iCloud they all appeared on my phone and now I can't delete his numbers without them deleting on his phone as well . Any help would be appreciated.

    You'll have to migrate one of the phones to a different account, then delete the other person's data from each account (you can continue to share the same Apple ID for purchasing from the iTunes and app stores). 
    Decide which iPhone will be keeping the current iCloud account.  On the one that will be changing accounts, if you have any photos in photo stream that are not in your camera roll or backed up somewhere else save these to your camera roll by opening the photo stream album in the thumbnail view, tapping Edit, then tap all the photos you want to save, tap Share and tap Save to Camera Roll. 
    Once this is done, go to Settings>iCloud, scroll to the bottom and tap Delete Account.  (This will only delete the account from this phone, not from iCloud.  The phone that will be keeping the account will not be effected by this.)  When prompted about what to do with the iCloud data, be sure to select Keep On My iPhone.  Next, set up a new iCloud account using a different Apple ID (if you don't have one, tap Get a Free Apple ID at the bottom).  Then turn iCloud data syncing for contacts, etc. back to On, and when prompted about merging with iCloud, choose Merge.  This will upload the data to the new account.
    Finally, go to icloud.com on your computer and sign into each iCloud account separately and manually delete the data you don't from each account.

Maybe you are looking for

  • How to clear Google Maps History on iPhone 3G?

    My wife and I have been looking for a house and we have been using my iPhone as a GPS to get from one address to the next. There are alot of address stored in my history now on Google Maps (for instance if I press 1 about 10 different addresses I hav

  • How can I get rid of the mighty magoo textlinks add-on?

    An add-on was added and now I can't get rid of it. It's called mighty magoo textlinks.

  • Avoid messages to keep ringing

    In fact I have two questions about Messages. When receiving a new message with screen locked, I shows a banner. No problem, it is what I set in Notifications Settings.If my phone is on my desk, for instance, and I receive a new text, I can read it in

  • 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

  • FICACMP_ACC -- How the bar graph is coming

    Experts, I need ur help in changing the bar graph criteria in this component. I am not even able to find out from where this graph is getting displayed where the code is ? Guyz please help me. I am stuck here. I need your support. I want to hide the