CS5 only defining a strip of an image as a pattern

When I define a pattern from an ordinary colour image there is no problem - the full image is available as a pattern.  But when I try to define an image which is black and white only a strip of the BW image is available as a pattern.  When I add a strip of colour to a BW image and define a pattern from it, only the area of the colour is available as a pattern. How can I create a full pattern from a low contrast BW image?
I must be doing something wrong.  Grateful for advice, please.

Thanks.  I am trying to define a pattern from an image of watercolour paper texture.  It is already rgb.  The source image was created in another program - a matter of applying a native (to that program) surface texture to an image filled with white. Below is the source image substantially reduced in size:
Here is what the strip of pattern looks like:
I want to use it (and others that I make) to supplement Photoshops available artists' textures.  The problem may well be somthing to do with repeated patterns as Chris has speculated, but I have found that so far, 20" at 72ppi gives me a full image, whereas 23" at 72ppi doesn't.

Similar Messages

  • InDesign CS5 only prints one page at a time.

    InDesign CS5 only prints one page at a time. No multiple copies. Each page in a document has to be printed one at a time. I didn't have this problem with any version before this. No matter what I do, change settings, etc. I still have the same outcome. How do I work around this problem so I can print a 5 copies of a 3 page document without having to do each copy of each page one at a time.

    Sounds like a printer driver issue. Can you export to PDF and print that correctly?

  • How to define the query condition of Image Theme in MapBuilder?

    Hi,
    I'm trying to add an dynamic Image Theme in OracleMap, but there's a problem.I defined the query condition of Image Theme like this:
    select scanimage,shap from image where scanimgid=467
    The shap column is the MBR column
    And the XML CODE:
    <?xml version="1.0" standalone="yes"?>
    <styling_rules theme_type="image" image_column="SCANIMAGE" image_format="JPEG" image_unit="M" image_resolution="1.0">
    <rule>
    <features> select scanimage,shap from image where scanimgid=467 </features>
    </rule>
    </styling_rules>
    When i preview this Image Theme ,there is an ORA-00936 error means lack of expression.
    Is there any problem with my definition?Or can query an image from an Image Theme?
    Thanks a lot for your help!
    Message was edited by:
    N.Mars
    null

    Hi Mars,
    predefined image theme definition does not support a "select" statement in the <features> tag. You should just define a query condition in the <features> tag.
    It seems that you are trying to use an image theme in Oracle Maps, but it currently does not support a FOI image theme. You should add a predefined image theme as part of the basemap, and maybe add scales values to set the visibility range of this image theme.
    Joao

  • I have one iPhone 8GB. after making upgrade of iTunes and software of iPhone, it's impossible to use the iPhone. There's no service! doesn't acept the code PIN! it only make emergency calls and the image in the phone is to conect to iTunes.What can i do?

    I have one iPhone 8GB. After making un upgrade of iTunes and software of iPhone, it's impossible to use it. There's no service! doesn't acept PIN code! it only makes emergency calls and the image in the iPhone is the sign to connect to iTunes. What can i do to solve it?

    Where are you and where did you get the phone.  This sounds like a classic symptom of someone who bought an iPhone that originated in the U.S. which was then hacked so it would run on a carrier network other than AT&T... Then, when updating the phone, it becare re-locked to AT&T.
    If that's what happened, you now own a paperweight. AT&T will NOT unlock them for any reason.
    If this isn't the case, please clarify where you are, what carrier you have and where you got the phone so we can begin troubleshooting.

  • I recently purchased a Canon 7D. I own Adobe Photoshop/Bridge CS5. I cannot open my raw images in Bridge. I have tried to download the plug in but does not seem to work. Please Help, I need to be able to open my raw images in Bridge ASAP. I do not want to

    I recently purchased a Canon 7D. I own Adobe Photoshop/Bridge CS5. I cannot open my raw images in Bridge. I have tried to download the plug in but does not seem to work. Please Help, I need to be able to open my raw images in Bridge ASAP. I do not want to upgrade to CS6 at this time.

    If you had given us sensible information, I could look it up for you if your efforts fail.
    Right now, I don't even know if you are on a Mac or on a Windows box.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Just got a Nikon D610 and CS5 for Mac can't open the images -- message says installed version of camera raw doesn't support the camera.  Downloaded the Raw 6.2 update for Mac, but installation failed. Now what?

    just got a Nikon D610 and CS5 for Mac can't open the images -- message says installed version of camera raw doesn't support the camera.  Downloaded the Raw 6.2 update for Mac, but installation failed. Now what?

    The D610 didn't get out-of-the-box RAW support until Photoshop CC.
    You can either upgrade to CC or use the DNG Converter to convert and open your DNGs in CS5.

  • Only the development computer can print Images

    OK, now this is strange. I create a Book of Printable Objects (PrintableImageIcon - which is simply a Printable class that has an ImageIcon as a private data memeber). When I load up the applet in my browser (IE 5.0) the book of Printable Objecets (ImageIcons) with with borders around them are created and they print fine from my computer (Win98 with IE 5.0). When I try the same thing from any other computer (also running win98 and IE 5.0), the only thing that is printed is the rectangle margin border that goes around the image. I have no idea why this is happening. Only my computer can print the images while others cant!! My code resides on a Linux machine running the jdk1.3. I telnet to this machine from my win98 computer to do the development.
    Here's the code from the main program that builds the Book:
            public void printPlats() {
                    Book book = new Book();
                    PrinterJob printJob = PrinterJob.getPrinterJob();
                    // Set up the PageFormat for these images.
                    PageFormat platPageFormat = printJob.defaultPage();
                    // Set up the size and margins for the paper.
                    Paper paper = new Paper();
                    paper.setSize(612.0, 1008.0);  // Set paper size to 8.5" x 14".
                    paper.setImageableArea(36, 36, 540, 936);
                    platPageFormat.setPaper(paper);
                    // Add the Printable Objects to the book to be printed.
                    for (int i = 0; i < platImages.size(); i++) {
                            book.append(new PrintableImageIcon(
                              (ImageIcon)platImages.get(i)), platPageFormat);
                    printJob.setPageable(book);
                    if (DEBUG) System.out.println("The book contains: " +
                        book.getNumberOfPages() + " page(s)");
                    // Show the printer dialog.
                    if (printJob.printDialog()) {
                            try {
                                    printJob.print();
                            } catch (Exception ex) { }
            } // end printPlats()And the PrintableImageIcon class' constructor and print method are as follows:
    public class PrintableImageIcon implements Printable {
            private ImageIcon image;
            private double imageablePageWidth, imageablePageHeight;
            public PrintableImageIcon(ImageIcon i) {
                    image = i;
            public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException {
                    Graphics2D g2 = (Graphics2D)g;
                    g2.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
                    // Calculate the dimensions of the page.       
                    imageablePageHeight = pageFormat.getImageableHeight();
                    imageablePageWidth = pageFormat.getImageableWidth();
                    g2.setColor(Color.black);
                    g2.drawImage(image.getImage(),1,1,(int)imageablePageWidth-2, (int)imageablePageHeight-2, image.getImageObserver());
                    g2.drawRect(1, 1, ((int)imageablePageWidth)-2, ((int)imageablePageHeight)-2);
                    return PAGE_EXISTS;
    } // end class PrintableImageNow, does anyone see a fix to this strange problem???
    What could be on my computer that only allows it to print the images? They get loaded up into the Applet just fine but don't print!

    OK, I checked the versions of the different machines running IE and they are all 5.00.2614.3500. Also, for the time being, my policy file consists of:
    grant {
            // Allow everything for now
            permission java.security.AllPermission;
    };What other security issues to I need to investigate? Thanks so much for your responses!

  • In putting together a book I can move photos onto a page and enlarge the picture but is there a way to reduce the picture size? some cases I want a smaller picture and if I change the size of the picture box I only get a portion of the image. I wnt to red

    picture size...in putting together a book I can move photos onto a page and enlarge the picture but is there a way to reduce the picture size? some cases I want a smaller picture and if I change the size of the picture box I only get a portion of the image. I want to reduce the image to fit the size of the box.

    If you right click on the image on the page in the context menu select photo box alignment and then select one of scale to fit {centered, Left-aligned, Right-aligned}
    That should do what you are loking for.

  • Photos in album are only a hash-marked outline the image only shows when scrolling how can I see the image and open the photo?

    Photos in iPhoto album are only a hash-marked outline the image only shows when scrolling how can I see the image and open the photo?

    Make a temporary, backup copy (if you don't already have a backup copy) of the library and apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Select the options identified in the screenshot. 
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Question When I do a search for an image I only have a limited number of images. There used to be a ton of pictures on my screen and an unlimited amount of pictures to look through. Is there a way of changing this back to the way it used to be???

    Question
    When I do a search for an image I only have a limited number of images. There used to be a ton of pictures on my screen and an unlimited amount of pictures to look through. Is there a way of changing this back to the way it used to be???

    Thanks.  So there's no means of knowing whether a text message has been delivered, not to mention time of delivery.  Perhaps I've gone for the wrong phone.  It might do a lot but seems to miss out on some basics.

  • Error msg: Partner Function SH already exists (only defined once)

    hi,
    when i am trying to enter two ship to parties for a sold-to party, i am getting this error
    Partner function SH already exists (only defined once)
    Message no. F2188
    Please advise why i am unable to add ONLY a ship-to party more than once, but i am able to add payer and bill-to party more than once.
    I have also defined customer hierarchy. Could it be a reason?
    Thanks in advance.

    Check the following note
    Note 1415987 - CMD_API: check for unicity of partner function
    G. Lakshmipathi

  • ActionScript 2.0 class scripts may only define class or interface constructs.

    This is driving me nuts. I have an old AS1 project which I
    upgraded to AS2. It uses an include file, settings.as, which has
    stuff like this:
    settings = new Object();
    settings.property = 'some value';
    Then I include it on the main timeline like this:
    #include "settings.as"
    Every time I render, I get a million and one Compile Errors
    stating:
    "ActionScript 2.0 class scripts may only define class or
    interface constructs."
    But it isn't an ActionScript 2.0 class! It's just a regular
    include. How do I avoid the bogus Compile Errors?

    Okay, I found why the compiler is getting confused.
    In my settings.as file I create an object named 'settings' as
    mentioned. Later in my code elsewhere on the timeline, I refer to
    settings.property. When Flash sees that, I guess it sees that I
    refer to an object 'settings' and that there's a .as file called
    'settings' and it erroneously assumes it should be a class or
    something. I concluded this because if I change the object or .as
    name so that they do not match, the compile errors go away. As far
    as I know there's no way to tell the compiler that settings.as is
    not a class, despite the fact I'm not telling Flash that it is a
    class.

  • I'm using ver 4.0.1.: every search yields only 4 rows (2 pages) of images. Is this a settings or design problem?

    I'm using version 4.0.1.: every search yields only 4 rows (2 pages) of images. Is this a settings or design problem? Its not a computer problem, as I get many screens of image rows when I use Internet Explorer.

    You may want to ask this in the Dreamweaver Extensions forum or the Extension Developer's own support forum. You will likely get faster answers there.
    Brad Lawryk
    Adobe Community Professional: Dreamweaver
    Northern British Columbia Adobe Usergroup: Manager
    Thompson Rivers University: Dreamweaver Instructor
    My Adobe Blog: http://blog.lawryk.com

  • Error "You may only define methods within "CLASS class IMPLEMENTATION"

    We have code in LMIGOSMC so that the vendor batch number appears in the MIGO transaction for certain movement types.  We have created another, custom movement type in which this functionality should be available so I need to add it to LMIGOSMC.  When I go in and try to make the modification I am getting the following error:
    "You may only define methods within "CLASS class IMPLEMENTATION ...ENDCLASS".
    What am I doing wrong?

    Hi,
    You are not doing anything wrong with regard to the syntax error you are getting.  During the syntax check of include program LMIGOSMC, the system is not aware of the CLASS... ENDCLASS statements within the program LMIGOSM4.  Try the syntax check at the LMIGOSM4 program level (or even better, at the SAPLMIGO level) and you will see that the error is not given.
    Regards,
    Jamie

  • I have CS5 and when I opened up a particular folder in Bridge, I see only a few thumbnails of my images.  The rest are this small blue icon.  How do I get my thumbnails back?

    In bridge on CS5 there is one folder I opened up today and in that folder I can only see a small percentage of thumbnail previews of the images.  The rest are this small blue icon.  How do I get my thumbnail previews back?  If I click on this icon it will open the image up okay in photoshop but I would like to see my thumbnail image to see what picture I am opening up.  Can anyone help?

    Well ... i purged my cache and the previews came back.  Thank you for looking.

Maybe you are looking for