How to print a picture in the middle of the paper.

我想把图片打印到纸的中间即上下左右均居中。但是每次打印都是在左上角。

Can you work out what the actual HTML is to do
"Whatever it was that you wanted to do" ? { I couldn't understand that }
I.e If you make up a Test table, with Your Text editor can you get a sample output that looks like you want?
But the problem is i am able to change the background of the full cell. But i don't need to change the background of the full cell always. For example if Nextti value is 15/1/2005 & Duration is 30 then the shade should start from the middle of January Cell (because of the date 15th)end in the middle of next cell (February). If the duration is 15 then it should end in the (January) same end of cell.
Is this something that can be done in HTML?
If your question is 'amenable' to HTML, figure out conditions for which you want to Set a certain color....
If the color in one cell for instance depends on the Next Cell, then you're going to have to buffer the whole Table ROW....
Set which ones should be RED for instance, then output that ROW in HTML...
If you are using Java for this, then also be aware that you might need to escape certain characters like use "\\" to get "\"
You'd also probaly have an easier time, however you are doing this if you used some sort of CSS .......

Similar Messages

  • CS6 does not support the picture package plug in.  How to print like picture package in CS6?

    CS6 does not support the picture package plug in.  How to print like picture package in CS6?

    If I recall, the picture package is in Bridge. Which was removed in CC and newer.
    In bridge change the workspace to see the output options.

  • Manual print prints a picture of the printer after printing

    Recently installed LaserJet 1606dn on an XP SP3 machine as shared printer.  When printing manually the requested manual print document prints just fine but its also prints a picture of the printer after each manual print request.  Is this a feature that I can turnoff? Is there a glitch with the drivers?  I can't seem to figure how to turn this off.  Any ideas?

    Hello, 
    Thanks for the post.  With this one, (strange indeed) does it print the unexpected page from ANY application that you print from?  I've included some steps below and also some links to a couple of documents that I would suggest.  If the steps below do not resolve, I would suggest following the steps in document one (first link)  Good Luck!
    Step four: Perform a power reset on the HP product and wireless router, and then restart the computer Follow these steps to reset your HP product and your wireless router, and then restart your computer.
    Press the Power button ( ) on the HP product to turn it off.
    Disconnect the power cord from the rear of the HP product.
    Wait 30 seconds.
    Reconnect the power cord to the rear of the HP product.
    Disconnect the power cord from the wireless router.
    Wait 30 seconds.
    Reconnect the power cord to the wireless router.
    Restart your computer.
    Step five: Reconnect your printer to the wireless networkFor general information on reconnecting your HP product to a wireless network, refer to these steps for preparing your wireless printer . Or, for instructions to install your HP product on a wireless network, visit HP Customer Care . On HP Customer Care, type your product number in the search field, and then browse for the appropriate support document for installing your HP product on a wireless network.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02817031&cc=us&dlc=en&lc=en&product=4110410&tmp...
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02205132&tmp_task=solveCategory&cc=us&dlc=en&la...
    I worked for HP but my posts and replies are my own....Thank you!
    *Say thanks by clicking the *Kudos!* which is on the left*
    *Make it easier for other people to find solutions, by marking my answer with (Accept as Solution) if it solves your issue.*

  • How to print Integrity sql in the preparedstatement?

    How to print Integrity sql in the preparedstatement?
    Connection conn = null;
    String sql = "select * from person where name=?";
    PreparedStatement ps = conn.prepareStatement(sql);
    ps.setObject(1, "robin");
    ps.executeQuery();
    i'm wants print Integrity sql.
    For example:select * from person where name='robin'
    How should I do?
    thanks a lot!

    PreparedStatement doesn't offer methods for that. You can write your own implementation of PreparedStatement which wraps the originating PreparedStatement and saves the set* values and writes it to the toString().
    If needed, myself I just print the sql as well as the values-being-set to the debug statement.Logger.debug(query + " " + values);

  • How to print/store in file the ref cursor in pl/sql block ?

    How to print/store in file the ref cursor in pl/sql block ?.

    How to print/store in file the ref cursor in pl/sql block ?.You question is quite confusing?
    So, i'm providing link in this manner.
    For RefCursor,
    http://www.oracle-base.com/articles/misc/UsingRefCursorsToReturnRecordsets.php
    http://www.oracle.com/technology/oramag/code/tips2003/042003.html
    For UTL_FILE,
    http://www.morganslibrary.org/reference/utl_file.html
    Regards.
    Satyaki De.
    Updated with new morgan library link.
    Edited by: Satyaki_De on Feb 24, 2010 9:03 PM

  • How do I remove pictures in the photo library from my iphone 5? I have a MacBook Air and have transferred pictures to iphoto.

    How do I remove pictures in the photo library on my iphone 5?  I need the space to download iOS 7.0.2. I have a MacBook Air and have transferred  pictures from my iphone to iphoto.

    Photos in the ?Camera Roll can be deleted by tapping on Select, then selecting the photos to be deleted and finally tapping on Trash.
    Photos in albums that were copied to the device by syncing with your computer running iTunes are deleted by syncing again. But before clicking on Apply or Sync deselect the no long wanted albums in iTunes. Finally click on Apply.

  • Adobe Connect: how to display a picture in the WebCam pod when not sharing video

    Adobe Connect: how to display a picture in the WebCam pod when not sharing video

    The WebCam pod can pause a live video showing a static image. However, I believe that you are looking to use a Share pod, where you can upload a JPG or PNG image. Just place the share pod with the image where you would have the Camera pod.

  • Please help : How to print a matrix from the console...

    Hi..
    Please help:
    How to print a matrix on the console , but i want to take all the input from the console.. like...
    if the matrix is of size...
    mxn
    where
    m : row
    n : column
    and the all the elements of the matrix from the console it self... .
    Please help...

    Thanks...
    I am able to print the elements of the array but i am not able to assign those values to the array ....
    How to do that...
    I just did a little change in my code...
    import java.util.Scanner;
    public class CreatingAMatrix {
        public static void main(String[] args) {
         // TODO Auto-generated method stub
         System.out.print("Enter the number of rows: ");
         Scanner scanner1 = new Scanner(System.in);
         int m = scanner1.nextInt();
         System.out.print("Enter the number of coulmns:");
         Scanner scanner2 = new Scanner(System.in);
         int n = scanner2.nextInt();
         System.out.println("The size of the matrix is : " +m+" x "+n );
         int[][] a = new int[100][100];
         for(int i=0;i<=m;i++)
             for(int j =0; j <= n; j++)
              Scanner scanner3 = new Scanner(System.in);
              int o = scanner3.nextInt();
             System.out.println();
         for(int i=0;i<=m;i++)
             for(int j =0; j <= n; j++)
              System.out.print(a[i][j] + "\t");
             System.out.println();
    }I am getting an output as this
    output:
    Enter the number of rows: 2
    Enter the number of coulmns:1
    The size of the matrix is : 2 x 1
    1
    2
    1
    2
    3
    5
    0     0     
    0     0     
    0     0     
    how should i assig those input values to my array..
    Please help

  • HT4236 how can i move pictures from the photo tab on my ipad to my computer (not the photo stream)?

    How can I move pictures from the photo tab  (not photo stream) on my ipad to my computer.  There are some photos that were taken with my ipad, that i want to delete but i can only edit them (straignten, crop, enhance etc)  any suggestions?

    How to Transfer Photos from an iPad to a Computer
    http://www.wikihow.com/Transfer-Photos-from-an-iPad-to-a-Computer
    Importing Personal Photos and videos from your iOS device to your computer.
    http://support.apple.com/kb/HT4083
     Cheers, Tom

  • HELP - how do you save pictures through the recovery mode?

    How do you save pictures through the recovery mode.  I have the black screen with cursor and despite trying all the tips noted here nothing seems to fix the issue.  These have included using Utility disk to re-install OS-X, repairing the disks.  Also tried the holding shift on start up and entering username and password.  Also tried internet recovery and then repair and re-install.  Nothing works!
    Happy to restore from a back up, but I have been rubbish and not backed up for a long time.  Also happy to delete and re-install completely but don't want to loose pics.
    Please let me know any suggestions!!

    bemsley wrote:
    Is it possible to attach an external drive and copy across files through the utility function?
    That requires that you can boot the MBP. 
    Or to boot the mac using the time machine back up?
    You can try using startup manager:
    http://support.apple.com/kb/ht1310
    But you still need a working volume where you can install the backed up data.
    The good news is that since you have a Time machine backup, you can transfer that data to another Mac or clone:
    http://pondini.org/OSX/Setup.html
    Ciao.

  • How do I download pictures from the computer to the ipad

    how do I download pictures from the computer to the ipad?
    I want to temporarily put pictures that I took from another camera that's on my desktop into my IPAD so I can carry it to another location and show off my pictures to friends and family?

    Connect and select your iPad on the left-hand side of your computer's iTunes, and on the right-hand side there should be a series of tabs, one of which should be Photos - if you select that tab you can then select which photo folders to sync to the iPad. There is a bit more info on this page. You will need to sync all the photos that you want on the iPad together in one go as only the most recent photo sync remains on the iPad - synced photos can't be deleted directly on the iPad, instead they are deleted by not including them in the next photo sync.
    If you want more control over your photos (e.g. being able to sort them directly on the iPad and delete synced photos) then there are third-party photo apps such as Photo Manager Pro.

  • How would i put pictures on the songs??

    How would i put pictures on the songs??

    Album artwork?
    In iTunes, on the bottom left is a box with an arrow up (if it's an arrow down, don't click), click on that and the icon will change with a box and an arrow down.
    Find the file on Safari/FireFox/IE/whatever internet browser you use, and click and hold the picture. Now drag it to the iTunes window, and release on the empty box in the low left pane. (You can also copy/paste the image from the internet, and onto the song.
    For multiple songs, select the songs you want to modify, right click (apple click for Mac), and select "Get Info". Copy and paste the image into the Album artwork box, and make the sure the tick box is checked. Apply (and select ok to the message that appears, warning you of changing multiple songs). Let it process and in less than a minute, you'll have album art.

  • How do I transfer pictures from the trophy to the Iphone 4 ?

    How do I transfer pictures from the trophy to the Iphone 4 ?

    There are a couple ways to transfer photos from an Alias 2 to an iPhone. If your photos are saved to the phone's SD card, you can use an adapter to put the media card in your computer port and transfer the photos to your computer. Or you can connect the Alias to your computer via cable; however, the Alias uses a proprietary port, so you have to have a cable made for the phone.
    Once the photos are saved on your computer, open iTunes, connect the iPhone and sync the photos you want. If you go to Help in iTunes, there's a tutorial on moving photos to the iPhone.
    If you want to transfer photos from a computer to an Alias, you can do it using one of the two methods in the first paragraph -- either via SD card or Samsung cable.

  • How do you delete pictures from the cloud?

    How do you delete pictures from the cloud?

    Welcome to the Apple Community.
    I assume you mean from photostream, AFAIK you can't.

  • Have C4795 Photosmart printer. When printing 4X6 photos , the print starts halfway across the paper

    When printing 4 X 6 photos on C4795, printing starts halfway across the paper, leaving
    a half-page of blank.  How do I realign to correct this?
    Thanks, John

    Binary Zen - thanks for your reply.  I'm using iPhoto on a brand new iMac.  Just upgraded from an iMac G5 that I've been using
    for 6 years.  So, new software.  Also new printer, to me, just set up on wireless network.  I had successfully printed photos on this printer using my old iMac, but the new iPhoto software is different, and doesn't seem to give me some of the print options I'm used to, such as selecting 'draft' for quick and dirty printing, etc. 
    One interesting note: I reread the printer manual, which said to slide the left slider against the paper.  That moved the start point on the print to about 1" in from the leading edge instead of half-way across the page.  Now all I have to do is figure out how to move it over another inch.  I'm starting the photo paper exactly on the marks on the paper tray.
    Suggestions welcome!  Thanks, John

Maybe you are looking for

  • ITunes 7.3.1 Totally Stinks!!!!!

    Ever since i upgraded to the new iTunes I have a ton of problems. Mainly video podcasts not playing and no content! Apple, PLEASE FIX THESE PROBLEMS!!!!!

  • Problem may be with saaj.jar and AXIS,WAS,WSAD

    Hi, I have successfully developed and deployed an EJB using WSAD 5.1.2's WebSphere 5.0 Test Environment. I have even able to access the EJB using UTC(Universal Test Client) in WSAD and by launching the j2ee client module using WebSphere lauchClient p

  • How do I stop a bone joint form circling randomly when I add a pose?

    So I have an armature, and every time I add a new pose two of the bone joints randomly circle and I can't work out how to stop it!!! I don't even move anything and it decides to make two of the joints go around in a circle.

  • Outlook 2013 keeps closing.

    Hi, Outlook 2013 keeps closing on me. I've read some info from this site. I've also created an Event File in Word an uploaded it to One Drive as suggested. Can someone advise me on what to do next please? Regards, Martin Allen.

  • No sound using quicktime 7 and 10

    Hi guys, I've got 2 MBP, on my old one I run Snow Leopard, on my new one (just bought 2 weeks ago) 2.5Ghz 4Gb ram (high-end product) the "freakin" Lion. I just can't believe so many issues happened to me... Furious!!! I experiences several problems t