Pattern background overlap

I'm having problems creating pattern swatches in cs6, because I can't seem to solve the problem of  the background overlapping and hiding foreground shapes. I can make patterns without a background and I think I've worked out how to prevent the problem with a simple grid, but when I make a brick tile pattern, whichever overlap options I choose, at least one of the foreground shapes gets partly obscured by the overlapping background. I'm used to making seamless patterns in previous versions of Illustrator, by using guides and grids, then defining the pattern using a background rectangle but this option doesn't seem to be available in CS6, so if I can't solve the problem, it's back to CS5 :-(
Anyone else overcome this problem?

Hi. I seem to have solved this problem, but thought I'd post screenshots anyway in case anyone else is struggling with it. Above are two screenshots of a pattern with a brick by column tile type. I've exaggerated the colours to try and show the problem. The first one shows how the pink background rectangle, if it's placed in the centre of the tile, cuts off the left edge of the black motif (shown as a grey motif in the dimmed area). If you change the overlap options, the other side gets cut off. I found that if you move the background rectangle so that it covers just one quarter of the tile, as shown in the second screenshot, with the overlap on the same edges as any overlap of the motifs, the problem is solved. Any overlap of the motifs also need to be confined to either the top edge, or the bottom edge, and the left edge or the right edge. It can't overlap both (at least I don't think so). I also made the background rectangle the same size as the tile (which is defined in the pattern options panel). I know this sounds complicated, believe me, I've wracked my brains over it for ages, but once I was able to visualize what was going on, it all gradually became clearer. I think once I've got the hang of it, it will be easier than using guides and defining the pattern. It's certainly easy to use for creating simple patterns, but the more complicated patterns take a bit of thinking about. I can't say I've had a problem with blends or symbols. What happens if you try to save a pattern with a blend or symbol?

Similar Messages

  • HOW TO CREATE A REPEATING LOGO PATTERN-BACKGROUND

    In Aperture, how can I create a repeating logo pattern/background?  I will then use this pattern/background with other editing software (ps6 CC).

    What kind of repeating pattern do you want? If you just need to tile an image you could print it to pdf and save the pdf as jpeg to a folder, for example:
    Or arrange multiple copies of your image on a Light Table and print the Light Table to pdf as jpg.

  • How to create a transparent custom shape on a patterned background?

    Hello,
    I've searched the forums and google and cannot seem to find a tutorial for what it is I want to do. I have a document with guides (card template) and I want to create the same design on each grid. I want the grids to have a patterened background and I want a custom shape within it. But, I want the custom shape to be transparent, not to the background, but going through the background. Like a cookie cutter. I want the custom shape to make a hole through the patterend background, leaving nothing in its place. I'm working with CS6 and can't seem to find a tutorial on how to do this. When I create the shape and make it transparent, I can see the background which isn't what I want. I want to go through the background layer and I'm being prompted to rasterize the layer when I've tried doing so. Help is much appreciated!!!

    You've gone two hours without a reply, and I suspect that is because you are not specific enough with your description of what you want to achieve.  I'll try but I will be guessing some of it...
    Make the shape you need to produce the pattern, with transparency for the area you need to 'punch through' as you put it, the background.
    Define that shape as a pattern, and fill a layer with it using the Piant buck set to pattern.
    Now control click the pattern layer to load it as a selection > Invert the selection, and add a layer mask to the underlying layer.  This should show throw to the lower layer(s)
    If I am not there, try uploading the Shape image you want to use as a pattern, and a screen grab of your image showing the layers panel.

  • Remove patterned background

    I have PSE 10, how do I remove a background that has multi colors and patterns?

    I just spent the last week figuring out how to remove hexagon patterns from older B&W photos. The best way is using
    FFT transform to remove the pattern frequencies and inverse FFT to convert back the image. I could not get the FFT freeware
    I found for PSE 11 to work so end up using searching the net to found GIMP with FFT plugin.
    fourier (new) | GIMP Plugin Registry

  • Using a PC; converting a Word 2010 document to PDF; upon completion the PDF document has a dark and/or patterned background; I have tried "removing" the background but that has not worked.

    Can someone help me remove what appears to be a 'background' that is created when converting a Word 2010 doc to a PDF format.  I am using the 'save as' method and selecting PDF as the file type.  I have used this method for over a year and have just had this "background" problem today.  It is not happening on all documents; so far it's just happened on 2 resumes but not on the accompanying cover letters which I think is very odd.
    Thanks for any help you can provide!

    Sara –
    I’ve attached the converted documents so you can see what I mean.  The Word document was not shaded in these ways; it was just a white background…or no background at all.
    I don’t know if these were created from scanned documents.
    Thanks!
    Sue Carline
    Operations Assistant
    [email protected]
    Telephone: 217.241.5400
    Fax: 217.241.5401
    3901 Wood Duck Dr., Ste. E / Springfield, IL 62711
    Web<http://www.paulygroup.com/>  / Twitter<https://twitter.com/PaulyGroupInc>  /  LinkedIn<http://www.linkedin.com/pub/pauly-group-inc/66/229/a73>

  • Lines appear where svg and other backgrounds overlap

    I am preparing PDFs via XSL-FO, using RenderX.  One construct in the PDF is produced from an SVG graphic that is placed side-by-side with a table cell.  Both the SVG and the table cell have identical background shading.  In Acrobat Reader X and Acrobat Pro 9.0, at 200% zoom or smaller, small horizontal and vertical lines appear where the SVG and cell backgrounds adjoin; at larger magnifications, these lines do not appear.
    Why do these lines appear, and can anyone suggest how to prevent them from appearing?
    Thank you,
    David Kelly

    You could poll some web developer types on the unofficial forum here: [http://forums.mozillazine.org/viewforum.php?f=25 mozillaZine Web Development board]. (Separate forum, separate registration.) They likely will want a test case to play with.

  • CQL Overlapping Pattern Matching

    Hi,
    I need to match the pattern "A" followed by "B" in a series of events but the pattern may overlap so if I have the sequence "A","A","A","B","B","B" the pattern should match 3 times. I've tried this with and without the ALL MATCHES clause but cannot get the desired behaviour. Is this possible in CQL?
    My event is
    <wlevs:event-type type-name="simpleEvent">
              <wlevs:properties>
                   <wlevs:property name="DataField" type="char" />
                   <wlevs:property name="Id" type="int" />
              </wlevs:properties>
    </wlevs:event-type>
    and my pattern matching CQL is:
    select T.Id1 as Id1, T.Id2 as Id2
    from
    EventChannel
    MATCH_RECOGNIZE (
    MEASURES A.Id as Id1, C.Id as Id2
    ALL MATCHES
    PATTERN (A B*? C)
    DEFINE A as A.DataField = 'A',
    B as B.DataField != 'B',
    C as C.DataField = 'B'
    ) as T
    Thanks
    Mike

    As per your requirement, it looks like the requirement is to match Nth occurrence of A with Nth occurrence of B(counted after at least one A has been seen), in a stream of inputs containing A's and B's in any order.
    Here the pattern matching is done in two steps as follows:
    1. An intermediate view helloWorldView is created. It has an additional field numOccur. Corresponding to every input on helloWorldInputChannel, the view has one output and the value of numOccur field in that output is the number of events seen so far, whose DataField value is the same as the DataField value of the current input. Leading B's (prior to any A) will have numOccur as 0. So effectively, for each occurrence of 'A' and 'B' we have a number representing which occurrence it is i.e. if it is the 1st occurrence or 2nd occurrence etc.
    2. One more pattern-matching query is applied on top of the output of helloWorldView. Here we start a match whenever we encounter an 'A' and end the match whenever we get a B, whose numOccur field is equal to that of A.
    The input stream helloworldInputChannel has the schema - (eid int, DataField char).
    <view id="helloWorldView">
    <![CDATA[
    select T.eid as eid, T.DataField as DataField, T.numOccur as numOccur
    from helloworldInputChannel MATCH_RECOGNIZE (
    MEASURES
    eid as eid,
    DataField as DataField,
    (case
    when((DataField = 'A') and (firstOccur.DataField = 'A')) then count(A.*) + 1
    when((DataField = 'A') and (firstOccur.DataField != 'A')) then count(A.*)
    when(DataField = 'B') then count(B.*)
    when(firstOccur.DataField = 'A') then 1
    end) as numOccur
    ALL MATCHES
    PATTERN(firstOccur ignoreB* (A | B)*)
    DEFINE
    firstOccur as prev(firstOccur.DataField) is null,
    ignoreB as (ignoreB.DataField = 'B' and (firstOccur.DataField = 'B') and (count(A.*) = 0)),
    A as A.DataField = 'A',
    B as(B.DataField = 'B' and ((firstOccur.DataField = 'A') or (count(A.*) > 0)))
    ) as T
    ]]>
    </view>
    <query id="helloworldRule">
    <![CDATA[
                select
                       T.Id1 as Id1,
                       T.Id2 as Id2
                from
                        helloWorldView MATCH_RECOGNIZE (
                            MEASURES
                                     A.eid as Id1, 
                                     C.eid as Id2
                            ALL MATCHES
                            PATTERN (A  B* C)
                            DEFINE 
                                   A as A.DataField = 'A',
                                   C as (C.DataField = 'B' and C.numOccur = A.numOccur)
                        ) as T
            ]]>
    </query>
    Hopefully this will address your requirement.
    Regards
    Unmesh

  • Animation of multiple background image positions via keyframes works in Chrome & Safari, not Firefox.

    The goal is to create an infinitely scrolling, two-layer parallax, patterned background. The effect works perfectly in Mac Chrome 35.0.1916.153, Mac Safari 7.0.4, iOS Chrome 35.0.1916.41, and iOS Safari 7.1.2, but it stutters in Mac Firefox 30.0 (haven't tested on iOS FF).
    My code is visible at http://jsbin.com/cifig/2 and is basically modeled after http://davidwalsh.name/multiple-background-css-animations (demo http://davidwalsh.name/demo/multiple-background-css-animations.php).
    If I make either one of the following changes, the stutter in FF resolves:
    • Limit `background-repeat` to `repeat-x` or to `repeat-y`.
    • Remove one of the two animated backgrounds.
    So it seems FF can't handle the continuous animation of two backgrounds that each have background-repeat, whereas Chrome and Safari can.
    Any tips? Thanks!

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • Repeating pattern question

    I’m trying to make a repeating pattern that includes a teapot image that I filled with a repeating rose pattern background. After everything has been reflected evenly on all axis, I then try to drag into the swatches panel. However, for some reason when I try to drag this pattern into the swatches panel, illustrator won’t do it. It will do it if I remove the tea pots and tea cups that have that repeating background pattern, but not when it’s there. Any idea what’s going on?
    It seems like ai is confused that I’m trying to make a repeating pattern with an image (the teapot)  that has a repeating pattern for the background.

    Select the teapot and cup and go to Object>Expand before you drag back into the swatches panel.

  • Pattern brush with negative spacing?

    I'm trying to create a pattern brush where the pattern elements overlap eachother, so i tried to set the brush spacing to -5%, but AI won't let me. Why not? is there a work-around to achieve this?
    thanks

    All Pattern Brushes have the unfilled, unstroked rectangular path that controls the spacing of the tiles. If you don't create one as part of the original artwork, it is created automatically when you define the Brush.
    So for existing Pattern Brushes, you can:
    1. Drag the Brush out of the Brushes palette and drop it onto the Artboard.
    2. White pointer: Mouse around the bounds of the artwork, and you can detect the invisible rectangle.
    3. Select and drag the side(s) of the rectangle to alter the spacing. You can also scale it, or move it off center from the artwork to cause the artwork be offset from the path to which the Brush will be applied.
    4. Black pointer: Deselect. Then select the whole Brush artwork Group. AltDrag it and drop it back into its slot in the Brushes palette. A dialog will ask you if you want to apply the change to existing paths that already have the Brush applied.
    I seldom ever actually draw the invisible rectangle when creating the artwork for the Brush. I just draw the artwork, drag it to the Brushes palette to store it as a Brush. Then I drag it right out again and proceed as described above to alter the invisible rectangle. Having SmartGuides on makes it easier to detect the invisible rectangle at the bottom of the object stack.
    JET

  • Clearing a Background

    I have a map that was printed on a patterned background.  Can I clear the background only?  If so, how?

    Its possible. Probably would help to see the image, but generally you need to select what you don't want and hit the delete key. What happens next depends on if that layer is lock or not. Look at the layers panel and see if it says background layer and an icon of a padlock. If so, just drag the padlock to the trash can before hitting the delete key. If no icon, then your set to delete.
    With the padlock removed, that means what ever you delete will end up transparent, hence no background since it is not locked.
    Once your areas are removed, you can add a background later by creating a new layer and drag that layer below the image layer. With the new layer selected you can fill that layer with any color. That color will show through anywhere you had deleted part of the image.
    If you prefer you can also use the eraser tool to do the same as the above to remove parts of the image, just make sure that image layer is not locked or the same issue will apply.
    And now for the third way, using masks. This is the preferred way as it is non-destructive. In that none of the image is removed permanently. You are able to come back a week later and change your mind.
    This requires one of two things, the use of the selection tools or the quick mask tool (lowercase q on keyboard), either will work, selection tools can be more precise, but the quickmask is painting with a brush. The latter can be easier for beginners, but in the end its up to you.
    Once the area is selected all that is left is clicking on the icon at the bottom of the layers panel that looks like a circle inside of a square. What ever was selected is now transparent on the selected layer (so make sure the correct layer is selected before clicking on that icon) Don't worry if the marching ants (represents what was selected) is now gone, thats normal and is easily brought back if needed, but ctrl clicking on the thumnail of that new mask icon.
    Well I have thrown quite a bit at you, so I will leave it here for now, if you have any problems don't hesitate to respond, someone will help. And remember for a more details explanation, it helps to see what your screen looks like.
    Good luck.

  • Pages to ePub observations and hints

    I've been experimenting with exporting ePubs. Here are some things I have have found that may help others.
    These observations are based on Pages v4.1 and iBooks v2.0.1
    These truths might be invalidated when new versions of Pages and/or iBooks appear.
    There may be subtle distinctions and/or situations where these observations don't work as described. Or maybe for some of them, I have gotten close to the truth but not fully realized it completely yet. Experiment with them at your will.
    1. Pages does not and will not insert any "page breaks" (or css causing that effect) in an ePub file per se. When exporting to ePub, Pages ignores any and all page breaks or section breaks you insert into a Pages document. Instead, it splits what it considers to be chapters each into separate xhtml files within the created ePub container. It seems that iBooks is hardcoded to automatically display each xhtml file beginning on a new "page."
    2. According to Apple's "ePub Best Practices" document, Pages considers chapters to be delimited by instances of text of the style "Chapter Name". I have found that changing the name of that style does not effect the resulting ePub. Therefore, it is not the style's name that informs pages to use it as the chapter delimiter. Instead, I have found that Pages will look at all the styles you have marked as to be included in the TOC (hereafter called "TOC-included-styles"). Whichever one of these happens to be used first in the document, will be the style that Pages will use to parse chapters, unless the first TOC-included-style used is named "Chapter Number". In this case, that instance of "Chapter Number" is skipped over when considering the style to use as chapter delimiter, and the next TOC-included-style found will be used.
    3. Unlike "Chapter Name", the style named "Chapter Number" is required be to named "Chapter Number". This style further affects the splitting of the xhtml files, and therefore, iBook's rendering of "page breaks". An exported ePub will normally be split into xhtml files at the first character of all instances of "Chapter Name". A document that also includes any "Chapter Number" instances will be split at the first character of those instances. The rule, in plain english, would be: split into xhtml files at instances of 'Chapter Name', but if any particular 'Chapter Name' instance has a 'Chapter Number' instance before it, back up and make the split immediately before that 'Chapter Number'. If a "Chapter Name" instance has more than one instance of "Chapter Number" before it, the split will happen at the earliest instance of "Chapter Number" until a previous "Chapter Name" is found. If the last "Chapter Name" instance in a document has any "Chapter Number" instances after it, there will be no split at those "Chapter Number" instances. Any other styles in between any of these instances are preserved, so you could have a new page in iBooks with a chapter number, followed by some text, then the chapter's name.  If you rename the  "Chapter Number" style to something else, it is then considered like any other style and has no affect on resulting ePub structure.
    4. If you insert a TOC into your Pages document, it is ignored for ePub export. The TOC created in an ePub will include whatever styles are checked in the Document->TOC inspector. The ePub TOCs as generated by Pages seem to have only two levels of indentation. The high level is the chapter level, as described above, whatever TOC-included-style appears first in the document will be the chapter delimiter and be the least indented level of the TOC. All other TOC-included-styles, no matter what they are named or how they are configured in Pages, will be placed at indent level two in the resulting ePub's TOC. So, a style does not need to be named "Heading" to be included in the ePub TOC, it just needs to be a TOC-included-style.
    5. You can add however many images you want to a chapter, but if the combined file size of the images in that chapter add to more than 1Mb, then the resulting ePub will not display any of the images which cause the size of that chapter to surpass 1Mb.
    6. There is talk that a "magic" resolution for images is 600x860 in order to have them occupy a full "page" in the resulting ePub. I have found that any image whose pixel resolution fills the iBooks page viewport will do that, if the image is also set to cause wrap-with-clear-space on the left and/or right. The iBooks viewport seems to be 368x569 pixels when the iPad is held in landscape orientation. So in other words, no matter how large your image is, when viewing on the iPad in landscape mode, it will be at the most 368x569 physical iPad pixels. Therefore it seems to me, if you only wanted to view a book in landscape mode, you could make all your images exactly 368x569, and not larger, making the resultant ePub file as small as possible. But you'd probably want to design the book for portrait mode as well. In portrait mode, the viewport seems to be 547x???. Where I have not taken the time to deduce the exact vertical viewport dimension, but I know it is close to 780px, either way, the image can be smaller than 600x860. iBooks will shrink any image larger than the viewport at hand (portrait or landscape) to fit the viewport. If the aspect ratio of the image differs greatly from the viewport, the image will appear "letterboxed" because the aspect ratio of the image is maintained as it is shrunk to fit the page's viewport.
    7. The margins of your Pages document, whether they be document-wide margins, or margins within a section, don't seem to affect the resulting ePub. The document-wide-margins and the layout-margins (in a section) can be set to zero. The on-the-ruler margins can be at the edges of the "paper." Extranious tabs on the rulers can affect things. I find it is best to drag all tab stops off the rulers.
    8. Tables are problematic. They are not good constructs to put in ePubs. Pages will dimension tables/columns width based on percentages. So if the overall width of your table drawn in Pages happens to be 50% the width of the "paper", then in iBooks on the iPad, the table will be 50% of the width of iPad's page viewport. An 8.5x11 "sheet" of paper shown in Pages is typically defined as 612 pixels wide* (change your Pages ruler units preferences to Points to verify, the Document inspector will show the page size in pixels). So if you draw your table half the width of that sheet, you get a table 306px wide in Pages. That's pretty good, you can fit a bit of text in a table that wide. But now you export to ePub, and since the iPad's (landscape) viewport is only 368 pixels wide, your resulting table is 50% of that, or 184px wide. Since the size of the text hasn't changed much, now everything is wrapping and going crazy. Column widths are also generated as percentages of the table's width, so a column that fits its content nicely in Pages is now too narrow in the ePub. Confusion ensues. Incidentally, the above assumes your document left and right margins are set to zero, if not, the percentage of width is calculated between the margins, not the edges of the page. What you can do is make the table 100% of the width of the page, in that case the resulting table in the ePub will always be 100% of the width of the page viewport on the iPad. For a bit of left and right margin, you can throw in an empty column to the left and an empty column to the right of your table's content, then shut off the border lines for those side columns so they aren't seen. This won't solve your problems, but might take some of the pain away. If a user cranks the font size up as high as it will go on the iPad, no table remains standing.
    * if you do any measuring with on-screen rulers, make sure you set Page's zoom to 100% first, as it defaults to 125%!
    9. If you want to get a clue as to how your book will flow on the iPad (in landscape mode for example), you can temporarily set your document's Page Size to be 368x569 pixels (will all margins set to zero). You set Page Size and Margins in pixels (in inspector) by first changing the ruler units to Points in Page's settings. Be careful though, it's an approximate result, not exact WYSIWYG, the words won't end up exactly where you see them.
    10. If you have read thus far, you probably already know that the first (on-screen) page of a Pages document can be used to automatically create the ePub's cover image upon export. As mentioned elsewhere on the 'net, floating images can be used on this first page (if they are used elsewhere they are ignored). I have found that shapes, specifically floating shapes can be used on the first page as well. You can even use background shapes! This unlocks the door to creating some truly nice covers with a minimum of work. I have here attached an image of a cover I created in just a couple of minutes without using Photoshop or any other image editor, just Pages. I will describe below how it is done
    All the objects on the first page (shown above) is set to floating or background, therefore, you need to move the inline text to the next page. You can do this by inserting a section break. You can see it in the upper left corner. That forces all the text to be shuttled off to next page, out of the way.
    First I created the swirly pattern background. To do so, create a box shape on the page and immediately set its Placement properties to "in background". Keep "background objects selectable" and resize it to cover the entire page. Remove any border or shadow from it. Then set its Fill to any seamless pattern you like. Keep the pattern pixel dimensions small so as not to create a large ePub. This particular swirly pattern I created very quickly for free at patterncooler dot com. Set the fill properties to "Tile" so that your pattern is tiled throughout the whole box shape. Now you can uncheck "background objects selectable" so that you can work on top of it without disturbing it.
    The size of the pattern repeat itself is important to consider. The book cover will be seen in two places: on iBook's bookshelf (small), and opposite the table of contents in the book itself if the iPad is held in landscape mode. If the size of the repeat is too small, then you cant really make out the pattern in the bookshelf icon because the whole cover has been shrunk down, if the repeat is too large, it might look nice on the bookshelf but funny opposite the TOC. You'll have to experiment, but the repeat used in this example is a good compromise.
    Next the brown spine down the left hand side is another box shape. This one's placement is set to "floating". Stretch it to the edges of the page. I filled this one with a subtle gradient to give it a slightly 3 dimensional look. Remember that iBooks will overlay shade an indentation along the left edge to appear as a crease. So dont make it too dark. Remove any border from this box, but give it a shadow on the right, just enought to make it appear affixed on the book. I used shadow settings of Offset 1pt, Blur 6pt, Opacity 75% at an angle of 323. Too much offset or blur ruins the effect. You want it to appear as a very thin layer adhesed to the "book". As for colors, use the eyedropper on the color inspector to pick colors from the background pattern, this will make it "work together" if you are color challenged.
    The stitching on the right edge of the spine shape is a simple line shape 2 pts wide. Properties are: dotted, with a very slight shadow (2,4,85%,315). You can use the "bring forward" or "send backward" commands if the stack order gets mixed up.
    Next add the Title and Author boxes. They are simple floating box shapes with color fill, and simple black border of 3px. Page's pop-up alignment guides will help you center them in the page. There is no shadow for these boxes as they (here) are supposed to mimic a printed and not a physical adhesion. Instead of a line border, you can also apply Page's "picture frame borders. I went crazy with those, but ultimately came back to the simple line border.
    If you want to make these "adhesions" there are lots of nice paper textures on the 'net you can use as fill.
    Finally you see there is a slight highlight on the top edge of the book and slight shadow along the right and bottom edge. These make the cover seem to have rounded edges, they give it a 3D appearance. To create the right hand "round over" draw a line-shape the height of the page. Make it 5px wide, and give it shadow properties of 5,4,50%,142. Next you have to move it so that it is slightly off the paper and thus not seen, but close enough that it's shadow is still seen. To move it, you can use a combination of the mouse, the arrow buttons on the keyboard, and/or the position inspector pane. In my example, the page is 600px wide, and the line sits at the 601px location. Be careful about moving shapes off the page, as you can "lose" them. Oddly enough, there is no way to see and/or find shapes that are "off page" (that I know of anyway). If you lose a shape off the page, you have to draw selection boxes blindly, until you stumble upon the shape again. It seems a way to hide content if one so desired.
    For the bottom edge of the book, do the same thing with a horizontal line. Shadow angle in my example is the same 142 degrees.
    For the top edge, do the same except make the shadow color white. (5,5,50%,270). This shape is hard to select once you have it offscreen. If you want to select it, you might have to move the background and right edge shadow out of the way first. Then draw a small box at the top right corner of the page until you hit it.
    And one last detail, you might notice my page size is 600x860px (8.333in x 11.944in). This is because I think this aspect ratio is shaped more like a novel than than 8.5x11in (612x792px). The latter is squarer, and more the shape of a text book.
    I hope this stuff has been useful to you.
    Dave

    Thank you for sharing such an informative post! I'd like to offer one small correction.
    My company publishes children's picture storybooks in print. These are edge to edge full color pages for those who may not be familiar with this format. Our early ePub's were always disappointing in that we could not duplicate the print format without showing considerable white margins on an e-reader. We have since solved that problem in order to achieve the maximum image size. There will always be some amount of white margin in ePub format, but our image output now nearly fills the screen of any e-reader.
    The 600X860 resolution is correct in order to achieve a wall to wall ePub image. The image must be created at that resolution for insertion into the document, and the page setup must also be set at the same dimension, which in inches is 8.333X11.944. You cannot, for example, use a smaller size image and drag it with constrained proportions to fill the viewport at the 600X860 resolution. The exported ePub file recognizes the portion of the image that is beyond the margins of the viewport and it will show up in an e-reader with a large white bottom margin.
    Dragging a smaller image than the 600X860 resolution to fill the viewport with unconstrained proportions will work, but of course distorts the image. So, create your images at 600X860, insert them into your doc, export to ePub and you will be happy, happy, happy!

  • Indesign CS6 transparency problem

    Hi all,
    Problem:
    A placed TIFF with a transparent background overlaps an indesign partially transparent graphic shape and where the two transparencies overlap text appears heavier, opacity is darker and sometimes there is an outline at the edge of the TIFF frame when printed.
    The PDF however does not show these effects on screen, it's only in the print.
    I've tried exporting with a variety of PDF types and settings, I've used the page window transparency settings, but I always see the same result in print.
    Likely, I will apply clipping paths in photoshop to 'trim' the transparent area of the image to reduce the effect and avoid text. But this isn't a solution really.
    Question:
    Are there settings to deal with overlapping transparent images and objects?
    I've seen this discussed elsewhere a little, but haven't found a solution yet. Also, I can't post screen shots due to privacy concerns.
    Thanks in advance,
    eu.

    Actually, here's a flattener preview with transparent objects highlighted. You can see how the text that appears where the two transparencies overlap is treated differently.

  • PLEASE HELP! - Printing Yellow on Brown Kraft Paper

    Please, please help!! I am sooooo frustrated right now! For starters, I'm a bit beyond intermediate Photoshop user (10yrs of habitual use). I NEED to print yellow on brown kraft paper. There's no alternative. I have to or I'm going to have one VERY upset client. Really hoping someone out there can help me very soon or it's going to cost me lots of $$$ when I have to fake it and print the entire brown kraft-pattern background on white paper just to get the yellow to show (picture one, small yellow key on a full sheet of brown kraft paper)
    Here's the skinny..... I obviously have chosen to have photoshop control the color management. The closest I have come is to use the printing profile: Japan Color 2002 Newspaper without black point compensation (I think I used Relative Compensation). The only way I can get the yellow to show on the brown is to actually PRINT a brown paper background ON TOP of the brown colored paper. Obviously, this is causing the brown paper to look quite dark. The yellow is perfect and I've now lost every other color (Navy & 3 shades of Gray). They're all dull against the multi-layered brown. I have tried manipulating the yellow to be more green or more orange and sure enough, they turn out looking green or orange. Should I switch to CMYK instead of RGB? If orange is a variation of brown, why does orange show up on brown so much easier than yellow?
    Is there a way to manipulate the newspaper profiles to adjust for browner paper rather than grayer paper?
    I am sooo close but I literally cannot figure this out!! Please tell me there's a color profile combination I'm not aware of..... and please don't tell me that printing yellow on brown is impossible After all, we're photoshop users. It's possible; just have to figure out how.
    Sincerely, One Desperate Designer

    You may ask your printer whether he can use opaque yellow ink:
    https://www.google.de/search?hl=de&as_q=&as_epq=opaque+yellow+ink&as_oq=&as_eq=&as_nlo=&as _nhi=&lr=&cr=&as_qdr=all&as_sitesearch=&as_occt=any&safe=images&as_filetype=&as_rights=
    Standard offset ink is transparent. The reflected light is always darker than the substrate.
    Best regards --Gernot Hoffmann

  • ONE page not rendering in I.E. 6, others fine.

    I just finished my website, and all was well. Except now just
    one page is having issues in I.E. 6. the main content is dropping
    down to the bottom of the right column, and the background overlaps
    the right side of the page by about 1". Have no idea why just in
    this one page. Also having a general problem that this page and one
    other have youtube video player(s) on them that won't show up at
    all in I.E. 6. ( also a flash ad on the page won't show up) The
    page that has the video players on the other page doesn't have this
    rendering problem where the main content drops out of sight.
    Hope someone can help. Just went live 2 days ago. Was hoping
    wouldn't have any immediate issues.
    Thanks

    On Sun, 30 Mar 2008 21:31:16 +0000 (UTC), "kidcoconut"
    <[email protected]> wrote:
    >I just finished my website, and all was well. Except now
    just one page is
    >having issues in I.E. 6. the main content is dropping
    down to the bottom of the
    >right column, and the background overlaps the right side
    of the page by about
    >1". Have no idea why just in this one page. Also having a
    general problem that
    >this page and one other have youtube video player(s) on
    them that won't show up
    >at all in I.E. 6. ( also a flash ad on the page won't
    show up) The page that
    >has the video players on the other page doesn't have this
    rendering problem
    >where the main content drops out of sight.
    File is incomplete and we need the css file(s) as well - or
    better
    still the url
    ~Malcolm~*...
    ~*

Maybe you are looking for

  • Why does photoshop cs6 show two camera raw plugins?

    I'm running CS6 on a Mac Pro 1,1 version 10.6.8. I installed the most recent update from adobe (8.4). I did the full install and apparently it's only meant for version 10.7 and higher, but my CS6 still works. I did remove that camera raw file and ins

  • Acrobat Reader DC - won't print

    I upgraded Acrobat Reader DC from Adobe Reader XI last week. When I tried to print any PDF. document, I get the error message "The document could not be printed. There were no pages selected to print". What went wrong? I did Repair installation, but

  • Is there a way to distribute new versions of iOS to all Enterprise iphone users?

    I see that with Mobile Device Management (MDM) we can configure iphones with various policies and restrictions, and also deploy applications to the users.  But is there a way to centrally distribute new versions of the iOS to the phones, so that they

  • HTTP 500 - Internal Server Error from Discoverer Viewer to Portal

    HI, I created a tab with a list of workbooks created with Discoverer Viewer and published with Discoverer Portliest Provider (List of Database Workbooks). Another tab contains four Discoverer Worksheets created with the same account. Everything works

  • Linksys Router

    My Linksys Cable/DSL Router doesn't work. In the middle of the wizard setup an error appears saying the router can't connect to the internet. I can access the internet without the router.