Creating a horizontal line image

I'd like to know how I can convert a photograph into a horizontal line image like this  http://australiandesignreview.com/news/18737-Flythrough-ARM-s-Portrait-tower-Melbourne

Thanks Jongware
My printer is non post script and it overrides the settings, I suppose I'll have to go to a commercial printer to resolve this?
Andy Jarman
City of Cockburn
9 Coleville Crescent
Spearwood
WA 6163
V 9411 3674
F 9411 3333
E [email protected]
W www.cockburn.wa.gov.au
  cid:3366089636_350580

Similar Messages

  • How can I create a horizontal line under a line of text?

    Hi,
    I have FM 12.0.3.424.
    Does anyone know how to create a horizontal line under heading text that is the width of the page?  Similar to creating a border but without the top and sides.
    Is it even possible?
    thank you in advance!

    Use the "Frame Below" attribute in the Advanced tab of the Paragraph Designer for your heading tag to use a named Reference Frame from your Reference page. If you're using the default templates for your documents, you could try the Single Line selection (or make your own).

  • Get rid of BarChart Legend and create a Horizontal Line on a specific value

    Hey,
    i'm working with BarCharts.
    1st Screen: I want to disable the Legend of my Barchart.
    http://imgur.com/wMo6Tfv,DRiNA9C
    Second Screen: I want to create a Line in my Barchart on a specific Value like 700 as seen on the screen.
    http://imgur.com/wMo6Tfv,DRiNA9C#1
    Is this Possible ? Also: For what object do i need to set the ID to change the bar's color. i've tried
    Chart barchart;
    barchart.setId("Chart");
    css:
    #barchart
    -fx-background-color: red;
    But it didn't work. Thanks!

    No, you're not missing anything; I had a temporary brain freeze. You can't add Nodes directly to an arbitrary region.
    So this makes it a bit harder. You need to add the line to the container in which your Chart is held, and of course that means you have to figure out the coordinates of the line relative to that container. To simplify it a bit, the axis has a scale property for converting from axis units to screen units, and also according to the css docs, the chart has a child with css class "chart-horizontal-zero-line". So one possible strategy is to grab that line and figure the change in coordinates needed from it. There's still work to do to figure the correct coordinates relative to the container, and if you want it to work with things moving around (such as when the user resizes the window), you need to do a bunch of binding.
    This seems to work:
    import java.util.Arrays;
    import java.util.List;
    import javafx.application.Application;
    import javafx.beans.binding.DoubleBinding;
    import javafx.beans.property.DoubleProperty;
    import javafx.beans.property.SimpleDoubleProperty;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.chart.CategoryAxis;
    import javafx.scene.chart.LineChart;
    import javafx.scene.chart.NumberAxis;
    import javafx.scene.chart.XYChart;
    import javafx.scene.control.Button;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.Region;
    import javafx.scene.shape.Line;
    import javafx.stage.Stage;
    import javafx.util.StringConverter;
    public class LineChartSample extends Application {
      @Override
      public void start(Stage stage) {
        stage.setTitle("Line Chart Sample");
        final CategoryAxis xAxis = new CategoryAxis();
        final NumberAxis yAxis = new NumberAxis();
        yAxis.setTickLabelFormatter(new StringConverter<Number>() {
          @Override
          public Number fromString(String string) {
            return Double.parseDouble(string);
          @Override
          public String toString(Number value) {
            return String.format("%2.2f", value);
        xAxis.setLabel("Month");
        final LineChart<String, Number> lineChart = new LineChart<String, Number>(
            xAxis, yAxis);
        lineChart.setTitle("Stock Monitoring, 2010");
        lineChart.setAnimated(false);
        final XYChart.Series<String, Number> series = new XYChart.Series<>();
        series.setName("My portfolio");
        final List<XYChart.Data<String, Number>> data = Arrays.asList(
        new XYChart.Data<String, Number>("Jan", 23),
            new XYChart.Data<String, Number>("Feb", 14),
            new XYChart.Data<String, Number>("Mar", 15),
            new XYChart.Data<String, Number>("Apr", 24),
            new XYChart.Data<String, Number>("May", 34),
            new XYChart.Data<String, Number>("Jun", 36),
            new XYChart.Data<String, Number>("Jul", 22),
            new XYChart.Data<String, Number>("Aug", 45),
            new XYChart.Data<String, Number>("Sep", 43),
            new XYChart.Data<String, Number>("Oct", 17),
            new XYChart.Data<String, Number>("Nov", 29),
            new XYChart.Data<String, Number>("Dec", 25));
        series.getData().addAll(data);
        final AnchorPane chartContainer = new AnchorPane();
        AnchorPane.setTopAnchor(lineChart, 0.0);
        AnchorPane.setBottomAnchor(lineChart, 0.0);
        AnchorPane.setLeftAnchor(lineChart, 0.0);
        AnchorPane.setRightAnchor(lineChart, 0.0);
        chartContainer.getChildren().add(lineChart);
        Button button = new Button("Show line");
        button.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            final double lineLevel = 35;
            final Region chartRegion = (Region) lineChart
                .lookup(".chart-plot-background");
            final Line zeroLine = (Line) lineChart
                .lookup(".chart-horizontal-zero-line");
            final DoubleProperty startX = new SimpleDoubleProperty(0);
            final DoubleProperty endX = new SimpleDoubleProperty(0);
            final DoubleProperty y = new SimpleDoubleProperty(0);
            startX.bind(new DoubleBinding() {
                super.bind(chartRegion.boundsInParentProperty());
              @Override
              protected double computeValue() {
                double x = chartRegion.getBoundsInParent().getMinX();
                for (Node n = zeroLine.getParent().getParent(); n != chartContainer && n.getParent() != null; n = n.getParent()) {
                  x += n.getBoundsInParent().getMinX();
                return x;
            endX.bind(new DoubleBinding() {
                super.bind(chartRegion.boundsInParentProperty());
              @Override
              protected double computeValue() {
                double x = chartRegion.getBoundsInParent().getMaxX();
                for (Node n = zeroLine.getParent().getParent(); n != chartContainer && n.getParent() != null; n = n.getParent()) {
                  x += n.getBoundsInParent().getMinX();
                return x;
            y.bind(new DoubleBinding() {
                super.bind(chartRegion.boundsInParentProperty(),
                    yAxis.scaleProperty(), zeroLine.startYProperty());
              @Override
              protected double computeValue() {
                double y = zeroLine.getStartY() + lineLevel * yAxis.getScale();
                for (Node n = zeroLine.getParent().getParent(); n != chartContainer && n.getParent() != null; n = n.getParent()) {
                  y += n.getBoundsInParent().getMinY();
                return y;
            Line line = new Line();
            line.startXProperty().bind(startX);
            line.endXProperty().bind(endX);
            line.startYProperty().bind(y);
            line.endYProperty().bind(y);
            chartContainer.getChildren().add(line);
        BorderPane root = new BorderPane();
        root.setCenter(chartContainer);
        root.setTop(button);
        Scene scene = new Scene(root, 800, 600);
        lineChart.getData().add(series);
        stage.setScene(scene);
        stage.show();
      public static void main(String[] args) {
        launch(args);
    }

  • Create a horizontal line

    I want a line to appear between copy in a paragraph. How do I
    do this?

    Heh - 3 different replies, each with a different
    interpretation of the
    question!
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:eln07l$faj$[email protected]..
    > You mean you want a line to appear between each line, as
    if the entire
    > paragraph were underlined?
    >
    > You could use the <u> tag....
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "misterexper" <[email protected]> wrote
    in message
    > news:elmvs1$eva$[email protected]..
    >>I want a line to appear between copy in a paragraph.
    How do I do this?
    >
    >

  • Omni lighting creating horizontal lines on image

    when applying an omni lighting effect to an image it creates horizontal lines, why does it do it and how do i get it to stop.

    Hi Benjamin
    Thanks for replying. Hope theres something you know that could help, its such a little thing but so annoying!!

  • Creating PDF in Word 2007 creates horizontal line

    Hello,
    This is my first post in this forum. In general, I have not had problems creating PDFs from Word 2003, or from Word 2007 - from either .doc or .docx documents.
    Yesterday, with one document, when I created a PDF, a centered horizontal line kept appearing near the top of the first 2 pages. These 2 pages
    have no header content. This line is NOT in the Word document. The rest of the PDF appears normal - with its normal header content.
    I think the problem is within Word 2007 (what a surprise!) because I can eliminate the problem by printing a .ps file of the Word doc and then
    distilling it.  The only problems with that method are that (1) It's more time-consuming, and - more important -  (2) the bookmarks are not
    automatically created. So, to create bookmarks manually takes even more time, and I don't know how to create the hyperlinks from the TOC
    (or even if that's possible).
    Any idea what's going on?  I tried making PDFs of some other user
    guides (same doc template), and they are fine.
    Many thanks!

    Hi again Raechel,
    It's such fun dealing with Word and "Microsloth", isn't it?!  IMHO, they
    should have left Office alone at the 2003 (or 2002?) versions.... Even at
    2000, styles were easier to deal with!
    Especially after using Madcap Flare for a few years, going back to Word is
    especially torturous.  I go back and forth from one to the other,
    depending on what I'm working on - product-wise or document-wise.
    Your Word certainly may have gotten corrupted, but even if that's not the
    case -- Word is still buggy as hell (forgive the minor expletive)!!
    Glad you made your printing deadline!!
    Regards,
    Melanie
    Melanie Blank
    Product Documentation Specialist
    Rochester Software Associates (RSA)
    (585) 987-6972
    [email protected]
    From:
    Raechel02 <[email protected]>
    To:
    Melanie Blank <[email protected]>
    Date:
    06/15/2011 09:34 AM
    Subject:
    Creating PDF in Word 2007 creates horizontal line
    Melanie,
    I read your post, and decided to spend my evening figuring out what was
    going on.  You are right about it being related to the lines in the header
    and footers, but as my document had no headers and footers, I found that
    odd.  I tried to edit the styles without success.  Now isn't that odd,
    too?
    I had to delete the header and footer styles from my document in order
    to
    get rid of the lines.  I suspect my copy of Word became corrupted as I
    madly
    edited several documents, all with photos.  As my adult son pointed out,
    "well, they don't put their top programmers on Word, after all."  I
    checked
    my memory utilization, and it appears that Word isn't cleaning up after
    itself very well, so it loses track of some of its objects, and things get
    out of synch.
    Well, in the end I managed to re-produce my document, which is good,
    because
    it had to go to the printer last night before midnight, and it got there
    at
    11:40.
    Thanks for your help,
    Raechel

  • Scan to PDF creates jagged or stepped horizontal lines

    I recently upgraded to Acrobat 9 standard from Acrobat 5.
    I removed Acrobat 5 and installed Acrobat 9 on my Windows XP Pro. desktop.
    I have a scanner which I use to scan in documents and create PDF files. After changing versions, when I scan a document with a horizontal line, weather from the document feeder or from the flatbed, the line appears jagged and seems to step or be broken.
    If I use the Microsoft Office Document Scanner, which seems to only create .tiff files, I do not have trouble with horizontal lines.
    It seems to be a setting in Acrobat Standard which I may have mis-configured?

    Hi dbghouse,
    Since the cleanings and alignments did not resolve the issue, the printer may require servicing; please call or email us using one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Horizontal line across image

    Can anyone help me get rid of the horizontal line that runs all the way across the middle of the image from the camera. I have just installed a Live Pro and the line is on both a still image and a video image. I have updated the drivers from the website but I still have the line. Running on Windows XP

    <IMG alt=3265.jpg src="http://64.4.56.250/cgi-bin/getmsg/3265.jpg?&msg=960760B6-5AD-4B7D-BA6F-0CDDEEBC728&start=0&len=34486&mimepart=3&curmbox=0 0000000-0000-0000-0000-00000000000&b=650de2d4270bd3808d0b385fdbfc6&disk=0 ..06.203_d275&login=mdurbin47&domain=hotmail%2ecom &hm___sig=23a97f7a0c5d80e93b676fc8a98de287ab57c7c5 6805">
    The line is visible through the "NO SCHOOL" squares.

  • How I do I create a horizontal menu with images as background?

    Apple OSX.6.7
    Dreamweaver CS 5.5
    Template: 2 column fixed, left sidebar, header and footer
    I have tried the spry horizontal  menu available through the Insert panel in Dreamweaver 5.5. I thought I could set background images on the li elements, attaching via CSS and using IDs on each li. So far nothing is working especially well, and I'm fried.
    What is the best way to create a horizontal menu when you want to use a background image? At this point, I'd be fine with using one image background and relying on the anchor pseudo classes for hover and active. The menu doesn't have to be an image rollover. It just has to enable me to keep the part of the banner image that descends into the menu area.
    My goal is to do everything using CSS instead of resorting to a table for positioning the menu elements.
    Thanks for your input.

    Customizing Spry Menus
    http://foundationphp.com/tutorials/sprymenu/customize1.php
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Getting waved-horizontal lines running through my photos...Happens not during time of working image in photoshop...but appears when sending to files or other applications, such as after printing back to files...?  Mac checked out OK.

    Getting waved-horizontal lines in my imagery just after working in photoshop...sending to files as with after completing some applications, such as printing. Nothing is wrong with my Mac...Issue does not occur every time I go into using Photoshop?

    Doesn't matter what kind of file...size, jpeg or tiff, black and white as color, etc...Something is in the software issue for my upgraded CS 5 Photoshop, running on a Mac OSX with Leopard version. The CS 5 Adobe software was in an up-grade from CS 3. Best I can do and I thank you for any suggestions based on your experienced background as I can only offer a general interpretation with the waved-horizontal lines that run across some of my images from being in the Photoshop mode from Bridge.

  • Small horizontal lines next to some images?

    Sometimes some pics after being imported, have short horizontal lines next to keywords before I do anything with the photos. Is Lightroom somehow suggesting keywords that I should apply to these images?
    Thanks.

    Short horizontal lines - like these?
    If so, check if a sub-keyword is already assigned - perhaps you added them in another program.

  • Hp 7612: New printer I get horizontal lines on image

    hp 7612: New printer I get horizontal lines on image

    Hi @judith100 ,
    I see that you are getting horizontal lines on the images. I can help you with this.
    I have provided a document with some steps to try to see if that will resolve the issue.
    Fixing Print Quality Problems for the HP Officejet 7610 Wide Format e-All-in-One Printer Series.
    What operating system are you using? How to Find the Windows Edition and Version on Your Computer.
    How is the printer connected? (USB/Ethernet/Wireless)
    What were the results of the Diagnostics Page?
    If you need further assistance, just let me know.
    Have a wonderful day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Strange horizontal lines in images after render

    Hard to explain but after I rendered, many of my photos which have motion have horizontal lines in them like those hologram toys from the old crackerjacks boxes. The images moves like commanded but there are lines in it.

    Yes when I play it or burn to DVD they are still there but not when I am watching it on the timeline. If I render all then sometimes this happens. I've rendered, seen the change, clicked undue and they look good again. Strange. It's not on all of them but some are really really bad. Wish I could show you. I'll think on that and maybe post it to utube or something.

  • Return key not creating a new line when using the horizontal text tool

    Going through the adobe after effects 'classroom in a book' examples - when writing a line of single line using the horizontal text tool pressing return does not create the next line underneath, the cursor stays on the same line?
    Anybody out there had this problem?

    Hi Bill
    Thanks for replying!
    My OS is windows 7. I think it is the first time I have needed to put more than one line of text in an after effects layer. I am new to CS5.5 - after effects and I'm going through an adobe tutorial  'classroom in a book' series book.
    I thought about using a paragraph text box as you suggest but could not find the function in the tools menu.
    I have since tried clearing the cache out and restoring default layout but with no joy.
    I have used the return key for multiple line text in premier pro and it works perfectly ok.
    Cheers,
    Alan

  • Photoshop Images displaying a horizontal line

    Framemaker 10 - Photoshop files (PSD) that I import (File -> Import -> File -> Copy into document) into my master pages are all displaying a horizontal line on the right side of the image. The line is not in the original image. Does anyone know what is causing this anomoly?  Thanks Chris.

    Hello Everyone,
    I'm having the same issue with the vertical line appearing on the right side of my .psd image in FrameMaker, but only when it is printed to .PDF.
    Here are some of the things I've tried:
    Checked the .psd image for layers and found none. Therefore, it can't be flattened.
    Zoomed in on the right side to see if I have any phantom pixels, but have found none.
    Used the trim tool (Image>Trim). Sometimes it works, sometimes it doesn't.
    Tried saving as a pdf instead of printing to .pdf, but it still has the line.
    The line reminds me of the "track edits" line that appears in the left margin of the text when tracking edits in FrameMaker. If I save the Photoshop image as an .eps file with Tiff preview and then print to .pdf from FrameMaker, the line isn't there. Has anyone figured out if it's a FrameMaker, Photoshop, or Acrobat thing?
    Thanks,
    Peg

Maybe you are looking for

  • Lr keeps crashing in Mac 10.7.5

    Joined Creative Cloud a few months ago. Ps working fine but Lr keeps crashing. Have to re-install to get back. What's up? What am i doing wrong? thanks.

  • Rounding the aggregate function in a pivot table

    How do I round the avg(GRADE) when I tried just wrapping it around the avg function I get an error message saying expect aggregate function inside pivot operation pivot ( avg(GRADE) for Column in ('1012222','2221112','333113' ); Thanks for the help.

  • Xcelcius is not working properly under both Windows 8 (64 bit) and Windows 7 (32 bit)

    Hi all, I use Xcelcius ver 4.0 under Windows 8 (64 bit), but it cannot load canvas and data query. I tried to use Windows 7 (32 bit) but got the same result. What should I do to solve it? Here is the design captured: When I run, it's the result (noth

  • Software update for mac

    Why there is no possibility to update my nokia with Mac. the best os system for computer.

  • Photoshop Actions Help

    I am using CS4 with Windows XP and lately when I try and use my actions I have to manually click on each step of the action to complete it. Some steps fail to work and the action is useless. I don't know what happened, they worked great before and I