How to Shift Multiline Text in a Picture ??

Hi All,
I have written a MultiLine Text in a Picture using "Draw Text at Point" Function. How can I shift (right and left) my first line of the text in the picture without shifting other text lines in the picture ???
Please help it is very IMPORTANT.
I am using LabVIEW 2011.
Thank you so much.

You can use the Picture to Pixmap VI followed by the Unflatten Pixmap VI to convert the picture to a 2D array. You can now use the array primitives (Array Subset, Replace Array Subset) to move the pixels to where you want them and then convert back to the picture.
The other alternative, if the picture is newly created, is to just recreate it with the new values.
Try to take over the world!

Similar Messages

  • How do i put text in the picture

    how do i put text in the picture ?

    In addition to the apps already mentioned here are some that can add text to a photo:
    Some Image Editors That Support layers:
    Photoshop Elements 11 for Mac - $79
    GraphicConverter - $40
    Rainbow Painter - $30
    Imagerie - $38
    Acorn - $50
    Pixelmator - $60
    Seashore - Free
    GIMP for Mac - Free
    Xee 2.1 - free

  • How do I wrap text around a picture in Pages 5.5?

    Using Yosemite, MacBook Pro (late 2009) Pages v. 5.5.  Previous version of Pages let me wrap text around pictures in newsletters.  I can't find this option or how-to anywhere in v. 5.5.  How do I wrap text around one side or another of an inserted picture?

    Assuming your text is in your document, and you insert a picture. While the picture is selected, you will notice that on the right format panel, the Arrange tab has appeared. Select either Stay on Page, or Move with Text — depending on your image goal — and then look at the Text Wrap feature. By default, once you drop a picture into the document, it is set to Automatic. This means you can place your pointer in the image and just move it around, while text flows around it. The smaller the image the better the flow effect. This is a discussion about Pages v5.2.2, but it will work the same in v5.5.
    Let's say you want the image flush aligned to the left margin, but want text to flow above, to the right, and below the image. Change text wrap automatic to Around, select the right icon for Text Fit, and adjust your spacing up or down for the proximity of the text wrap to the image. It looks like this with Text Fit spacing set to 9 pt.

  • In aperture, how can I add text on my picture

    In aperture, I want to add text ,or a messages to  a picture, How can I do this?

    What you seem to be referring to is Watermarking your photos. I offer a series of free PDF's on this issue including how to create watermarks in Pixelmator and add them to Aperture so you can export your images with a protective watermark.
    Daniel J. Cox
    www.naturalexposures.com
    picksme wrote:
    In aperture, I want to add text ,or a messages to  a picture, How can I do this?

  • How to get multiline text on progress bar

    Hi there,
    I have to use Progress Bar and need to show text in multiline.
    can anyone please suggest me how to achieve that.
    Thanks,
    Prashant

    can u guys figure out what really i am missing here?A spoon-fed solution, I suppose. So enjoy:
    // A JProgressBar with two lines of text.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.beans.*;
    public class PB2Lines extends JPanel implements
                             ActionListener, PropertyChangeListener {
        private TwoLinesProgressBar progressBar;
        private JButton startButton;
        private Task task;
        class Task extends SwingWorker<Void, Void> {
            public Void doInBackground() {
                int progress = 0;
                //Initialize progress property.
                setProgress(0);
                while (progress < 100) {
                    progress += 25;
                    setProgress(progress);
              if (progress==25)
                progressBar.setString("Eggs|added");
              else if (progress==50)
                progressBar.setString("Sugar|added");
              else if (progress==75)
                progressBar.setString("Milk|added");
              else
                progressBar.setString("Everything|done");
                    try {
                      Thread.sleep(500);
                    } catch (InterruptedException ignore) {}
                return null;
            public void done() {
                Toolkit.getDefaultToolkit().beep();
                startButton.setEnabled(true);
                setCursor(null); //turn off the wait cursor
        public PB2Lines() {
            super(new BorderLayout());
            //Create the demo's UI.
            startButton = new JButton("Start");
    //        startButton.setActionCommand("start");
            startButton.addActionListener(this);
            progressBar = new TwoLinesProgressBar(0, 100);
            progressBar.setPreferredSize(new Dimension(200,40));
            progressBar.setValue(0);
    //        progressBar.setStringPainted(true);
            progressBar.setString("Progress|Bar");
            JPanel panel = new JPanel();
            panel.add(startButton);
            panel.add(progressBar);
            add(panel, BorderLayout.PAGE_START);
            setBorder(BorderFactory.createEmptyBorder(20, 20, 20, 20));
         * Invoked when the user presses the start button.
        public void actionPerformed(ActionEvent evt) {
            startButton.setEnabled(false);
            setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
            task = new Task();
            task.addPropertyChangeListener(this);
            task.execute();
         * Invoked when task's progress property changes.
        public void propertyChange(PropertyChangeEvent evt) {
            if ("progress" == evt.getPropertyName()) {
                int progress = (Integer) evt.getNewValue();
                progressBar.setValue(progress);
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                   JFrame frame = new JFrame("ProgressBar with 2 lines");
                   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   JComponent newContentPane = new PB2Lines();
                   newContentPane.setOpaque(true); //content panes must be opaque
                   frame.setContentPane(newContentPane);
                   frame.pack();
                   frame.setVisible(true);
      class TwoLinesProgressBar extends JProgressBar {
        public TwoLinesProgressBar(int min, int max) {
          super(min, max);
        private int getXofCenteredString(String s) {
          int ix= getFontMetrics(getFont()).stringWidth(s);
          return (getWidth()-ix)/2;
        protected void paintComponent(Graphics g) {
          super.paintComponent(g);
          int i= getString().indexOf('|');
          String s= getString().substring(0,i);
          int ix= getXofCenteredString(s);
          g.setColor(Color.BLACK);
          g.drawString(s, ix,15);
          s= getString().substring(i+1);
          ix= getXofCenteredString(s);
          g.drawString(s, ix,35);
    }

  • How to put a text into a picture package.

    I want to print a set of 6 pictures onto a single sheet of paper with a heading on the top.  I can do this by exporting all 6 pictures as jpegs, creating a page in my favourite word processor or publishing package and doing it all there.
    However, Lightroom 3 allows me to create a page with the 6 photos, but I can't see any way to put a heading on top.  Is there any way to do this?
    While on the subject, is there any way to put a freeform text label below each picture?
    Thanks
    Tony

    If you put it in a region on page zero, it will be inherited by all pages of the application.. Literally in the upper left corner? Even the login page? You could also modify the template page that your using from your theme, so that all pages would have this attribute, whichever you are more comfortable with..
    Thank you,
    Tony Miller
    Webster, TX

  • How to write multiline text

    Somebody please tell me how do i write a multiline Text2d/3d in java3d.
    Thanks in advance

    Anyone manage to solve this ?
    Regards,
    Oakwd

  • How to scroll down text on UITextField ?

    Hi guys.
    I am trying make multiline text edit field using UITextField.
    When writing a long text, it doesn't scroll down (doesn't move to down next line).
    Just appearing one line.
    Can you help me how to make multiline text editing field ?
    Thanks in advance.

    Is there some reason you're not using UITextView instead of UITextField? UITextView is a subclass of UIScrollView, and supports multi-line text entry as well as vertical and horizontal scrolling. UITextField is not designed to do what you want.
    \- Ray

  • How to set the default text in an input box or a label to be a predefine, multiline text

    how to set the default text in an input box or a label to be a predefine, multiline text. In other words how to break the line in the code of a text box.
    thank you

    There are a couple of ways of doing this:
    If you're editing on the canvas, press Shift + Enter.
    If you're working in Express View (see lower right hand corner of Project Siena), you'll need to copy a hard return from another app such as Notepad.
    I believe a better implementation of hard returns are in the list of requested functionality that you can find here:
    https://social.technet.microsoft.com/Forums/en-US/2e1f9446-56b2-419a-9c17-7037d2cd6146/from-the-community-overview-of-requested-additional-functionality?forum=projectsiena
    Thor

  • How can I send a text with a picture attachment on my new iPhone5c?

    How can I send a text with a picture attachment on my new iPhone5c? It won't send or recieve!!.

    Does your carrier support it?
    Follow the steps in this guide.
    http://www.imore.com/how-send-photo-using-imessage

  • SharePoint 2010 list view - How to filter on a multiline text box field - the view filter does not allow me to select it.

    Hi there,
    Does someone know in SharePoint 2010 list view - How to filter on a multiline text box field - the view filter does not allow me to select it.
    Thanks,

    Hi,
    Per my knowledge,
    it is by design that the data type multiple lines of text can only use “contains” and “begins with” operators.
    You can also filter the list view using SharePoint Designer,
    Open your list AllItem.aspx page in SPD ->click “Filter” > in “Field Name” select your multipe line of text field, in “Comparison” will displayed four choices.
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • In "Previews" when adding text to a picture I can't change the font, even though a few days ago I could.  How do I fix this?

    In "Previews" when adding text to a picture I can't change the font, even though a few days ago I could.  How do I fix this?

    kgwrotethis wrote:
    10.6
    Use Software Update to update your os to 10.6.8 and anything else that needs to be updated.  After the installations go to /Library/Preferences - trash the com.apple.Preview.plist file.  Repair permissions, restart your computer and empty the trash.  Your Preview issue should now be resolved.

  • How to make similar text that's in the picture

    How can I make text similar in design and layout of the below picture.  In PS I was able to crop the camera and make adjustments.
    thanks
    Mike

    Hey Mike, have you tried What the Font yet?
    http://new.myfonts.com/WhatTheFont/
    I found it can help now and again but your design doesn't look like a standard font to me. You might want to think about tracing it with the good old pen tool.
    Jeff

  • How to shift text within an envelope template

    Hello,
    I have created an envelope template to mail out some thank you notes. The envelope size is smaller than the average business envelope (3.75 x 5" vs. the standard business). Naturally, I went in to page setup and created a custom size for this template. I ran into trouble when I saw that the recipient's name and address blocks are too far shifted to the right. They run off the page and forces many other pages to be created as a result.
    How can I shift the text back to the left? I, like many other smart users, have shifted to the iwork suite recently and I am having a little trouble assimilating. I tried to highlight the text and click the downward triangle, but the triangle will only shift right, and not left.
    I skimmed through other posts and couldn't find anything similar to my situation. Thank you for your help.

    Yes, I actually haven't thought of that yet. However, I'm attempting to merge my contacts within address book.
    I feel like it shouldn't take any drastic change in my document. I guess if all else fails, I'll resort to looking for that merge widget.

  • How do you forward a text message with pictures to another mobile user

    How do you forward a text message with pictures to another mobile device?

    Howdy Greg,
    It sounds like you have some texts with images attached you would like to forward to another device. If the it can receive text messages, use these steps:
    Send messages with your iPhone, iPad, or iPod touch
    How do I forward a message?
    To forward a message, tap and hold the message bubble, then tap More.
    Tap to select the message you want to forward, then tap  and select the person to send it to.
    If the receiving device does not have the ability to receive text messages, you can also email them to an account setup on it by first saving the message to your phone:
    How do I save a photo from a message?
    Tap the photo, then tap .
    Then emailing it to an account setup on the device from the Photos app:
    Other ways to share photos and videos - iPhone
    Save or share a photo or video you receive.
    Email:  Tap to download it if necessary, then touch and hold the item to see sharing and other options.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

Maybe you are looking for