Text Stored as Graphics image

I would like to create a one page website with iWeb. The page itself would contain one image of my logo, my name and an email address, and two short paragraphs of text.
The Apples for Dummies (2008) recommends storing text as a graphics image to prevent nefarious searching of the text. For example, the author advises storing an email address as a graphics image and then hyperlinking it. The authors are short details how to accomplish this. My empirical attempts to store text as a graphics file have failed. Any suggestions would be helpful. I would prefer to use whatever software that came with my Macbook. I am keeping things simple and using only Apple software.
Thank you, macdvm

macdvm:
You can change any number of shape features by using theInspector/Graphics pane.
Also you can change a text box to a graphic by adding a drop shadow to the text and setting the opacity of the shadow to zero.
Click to view full size
OT

Similar Messages

  • Storing graphic images in a laser printer.

    I want to store small graphic images (.gif, .jpeg, etc.) in the laser printer's memory and use PLC to pull the image onto a sheet to print. Has anyone done this? Need some direction.
    Thanks

    You can't store images in the original source format (.gif, .jpg, etc.), but (assuming that the printer model in question supports the PCL5 Page Description Language) you can (using suitable software) convert these images to appropriate PCL-format raster or vector images, and embed these within PCL macros, which can be stored in the printer's RAM (or more permanently on a hard disk or other attached storage on more expensive models). 

  • Is there a way to turn a text character into an image?

    Is it possible to turn a text character into an image/shape...using Pages or any other iLife or iWorks app?
    Reason being - I want to use a certain font and a character in it, but that particular font is not being recognized/shown properly by another computer. I want to make sure the text character shows up as I intend, and I figure the way to do that is by turning the text character into an image/shape (like a jpeg maybe? or a tiff or gif? I don't know too much about the difference between these last two). Then I can paste that image onto any background and have it still look like text laying on top of the background.
    Hope that makes sense, and many thanks in advance for any insights!

    Although it saves the text character as an image, it also saves the background (the white of the page) as part of that image. So when the character is pasted into a document whose background is anything other than white, it doesn't look like a simple text character anymore. It looks like a white box with a text character in it. You know what I mean?
    I'm thinking I might need to use whole 'nother graphics program to do this whole deal...what do you think?
    Rather than using Preview, create the new image from the clipboard in GraphicConverter & use the transparency wand to make the background transparent. Then use ⌘ E to select just the image & save, choosing to save just the selection.

  • How to import many large graphic images to fit into column width?

    I have a 2-column layout and about 150 large graphic images which must be imported so that they fit exactly into the column width. These are bitmaps which have all the same dimensions. All of them will need a border (stroke). And they should be inline graphics because they belong to exact positions in the text flow.
    What would be the sensible approach to that (apart from scripting which I have not done yet)? I tried to define an object style which has the attribute "Fit content to frame", but this does not scale the image to the column size. How can I avoid to format 150 those images manually?

    It may be easier to change the ppi in photoshop so the image can be placed at the exact size.
    so if the image is 10 inches and the file is 300 ppi
    with resample image unchecked change the width to whatever you want it say 2 inches no the ppi will automatically change to 1500 ppi. Save. If you are creating a PDF make sure these images are not downsampled if you need the resolution.
    another way if all images are the same size would be to size one and place it where all the images go and relink to the other pics, when you relink it should retain the properties of the previous pic.

  • How to create a plugin to stamp texts and not an image into a pdf document

    How to create plugin to stamp texts and not an image.. i just want it to work like the stamper plugin found in sdk sample but here i need text to be stamped instead of an image.. Is it possible? kindly give me some ideas?how to go about it.. can this be done by modfying the stamper sample code?
    Thank you

    This is possible, but it is a serious project, not something to be cut around from sample code. You will need to study the "graphics" and "text" chapters of the PDF specification in some detail to understand the PDF graphics model, including colour spaces, graphics state, and transformation matrixes; if working with annotations understand them and the requirement for appearance stream. There are various ways to add content to a PDF, but the PDFEdit API is probably the most accessible.

  • Adding Text to a Buffered Image

    Hey
    I am trying to add text to a bufferedimage image and have tried a couple of ways.
    I cannot seem to get it to work propely though. Everytime i try, the text appears but the image appears inside the lettering of the text and not under it like i want it to.
    Could someone please explain the best way of place text on TOP of an image as i am really stuck now :(
    Thanks in advanced for any help

    Basically paint your buffered image into a new BufferedImage and then paint in the new text on top.
    Here's a demo.
    import java.awt.*;
    import java.awt.font.*;
    import java.awt.geom.*;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    public class BufferedImageTest
        public static void main(String[] args)
            ImageGenerator ig = new ImageGenerator();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(ig.getOriginalImagePanel(), "North");
            f.getContentPane().add(ig.getTextPanel(), "South");
            f.setSize(400,640);
            f.setLocation(200,50);
            f.setVisible(true);
            f.getContentPane().add(ig.getNewImagePanel());
            f.validate();
            f.repaint();
    class ImageGenerator
        JPanel originalPanel = new JPanel()
            public void paintComponent(Graphics g)
                super.paintComponent(g);
                Graphics2D g2 = (Graphics2D)g;
                g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                    RenderingHints.VALUE_ANTIALIAS_ON);
                int w = getWidth();
                int h = getHeight();
                g2.setPaint(Color.blue);
                g2.fill(new Rectangle2D.Double(w/16, h/16, w*7/8, h*7/8));
                g2.setPaint(Color.yellow);
                g2.fill(new Rectangle2D.Double(w/8, h/8, w*3/4, h*3/4));
                g2.setPaint(Color.red);
                g2.fill(new Ellipse2D.Double(w/6, h/6, w*2/3, h*2/3));
                g2.setPaint(Color.green);
                g2.draw(new Line2D.Double(w/16, h/16, w*15/16, h*15/16));
        JPanel textPanel = new JPanel()
            Font font = new Font("lucida sans regular", Font.PLAIN, 32);
            String text = "A New Label";
            public void paintComponent(Graphics g)
                super.paintComponent(g);
                Graphics2D g2 = (Graphics2D)g;
                g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                    RenderingHints.VALUE_ANTIALIAS_ON);
                g2.setFont(font);
                FontRenderContext frc = g2.getFontRenderContext();
                LineMetrics lm = font.getLineMetrics(text, frc);
                float textWidth = (float)font.getStringBounds(text, frc).getWidth();
                int w = getWidth();
                int h = getHeight();
                float x = (w - textWidth)/2;
                float y = (h + lm.getHeight())/2 - lm.getDescent();
                g2.drawString(text, x, y);
        public ImageGenerator()
            originalPanel.setBackground(Color.white);
            originalPanel.setPreferredSize(new Dimension(300,200));
            textPanel.setOpaque(false);
            textPanel.setPreferredSize(new Dimension(300,200));
        private BufferedImage createNewImage()
            BufferedImage image = new BufferedImage(originalPanel.getWidth(),
                                                    originalPanel.getHeight(),
                                                    BufferedImage.TYPE_INT_RGB);
            Graphics2D g2 = image.createGraphics();
            originalPanel.paint(g2);
            textPanel.paint(g2);
            g2.dispose();
            return image;
        public JPanel getOriginalImagePanel()
            return originalPanel;
        public JPanel getTextPanel()
            return textPanel;
        public JPanel getNewImagePanel()
            JPanel panel = new JPanel()
                BufferedImage image = createNewImage();
                public void paintComponent(Graphics g)
                    super.paintComponent(g);
                    Graphics2D g2 = (Graphics2D)g;
                    g2.drawImage(image, null, 0, 0);
            return panel;
    }

  • Text converted to graphics when using shapes from iWork

    I'm in the process of constructing a web site and want to have a site directory along the right side of each page. I started off using square text boxes and making room for the directory by using iWeb's text wrap, adding an inline transparent square to a conveniently located paragraph and resizing it as necessary. However, I found that sometimes depending on which object was selected when I uploaded the site the square seemed to cover up my link box - possibly even when it was sent to the back.
    Then I learned that I could use shapes from Pages and edit them in iWeb, so I created a polygon with an opening for the site directory, and used it for my text box on each page. That worked great in that the directory was no longer behind the text box. However when I uploaded the web site, I eventually realized that my text boxes were all converted to graphics.
    As a test I created a page identical to an existing page with a square used as a text box, and it reverts to being text.
    Here's my web site if anyone wants to check it out - look at the main page and also at the Test Page reachable from the directory on the right.
    http://web.mac.com/peterynh
    A couple questions:
    1. Does this mean that shapes created using the drawing tool in Pages that are made editable and then modified in iWeb will always produce graphics when used as text boxes? Is there any way around this?
    2. Is the same a problem if shapes are created in other programs (e.g. Illustrator)?
    3. Is there any other way I haven't thought of to create the same basic design which would preserve the text boxes as text?
    Thanks for any help!,
    Peter
    PowerMac Dual G5, 2.3 GHz   Mac OS X (10.4.5)  

    James - Thanks for the suggestions and ideas.
    You know, I think it's possible to put a textbox
    inside another text box......and in that fashion
    still be able to wrap text in the main text box
    around the interior text box. However, I am not sure
    whether that will necessarily make all the text
    converted into an image.
    I tried that with interesting results. I couldn't resize the text box except through the Inspector for some reason. Once I pasted in the text, the box moved down below the site directory box to where there was room for a full-width text box; so it didn't accomplish the purpose.
    About using iWeb's built-in text-wrap through adding an inline graphic:
    This would work too...just make sure to select your
    text box and click on the "Backward" button in order
    to make sure that your main text box with the
    transparent "placeholder" image is behind your
    directory box that you want displayed. The same
    thing can be achieved by selecting your directory box
    and clicking "forward" so that it becomes the
    frontmost element.
    That makes sense. I tried that originally; maybe I wasn't careful about sending things to the front/back. The biggest problem is that if paragraphs don't line up with the site directory box, or if I edit text on the page, the text doesn't wrap very neatly around where I want it to. Otherwise this would be a good solution. I may end up doing this unless a better idea materializes, if such is even possible ...
    Thanks for the suggestions. I'll be interested to see if any better ideas appear; if none do in the next couple days I may just declare the problem solved as well as possible until iWeb 2.0 appears.
    Peter
    PowerMac Dual G5, 2.3 GHz   Mac OS X (10.4.5)  

  • Adobe InDesign, Text Colour and Graphic Overlay

    Greetings everyone!
    I am using Adobe InDesign to construct a portfolio and I am having a few small issues with my cover of the portfolio. I have integrated several graphics that are JPEG images into the cover and I added some transparency onto them. I am not sure how I can make it so that the text box is over the graphic. I am unable to press the text frame and instead, it seems like the frame for the graphic only ever appears as seen here in the top portion of my cover.
    I am not sure how I can get the text frames to show here. What is weird is that I can physically put the text over the graphic by moving the graphic but still the text frames do not appear. This is related, I think, to my other issue in that the graphics appear to change the colour of my text somewhat when the text frame intersects the graphic. It is not very noticeable but you can see it better in the photo below. Above, what is really strange is how my name is black (Michal Laszczuk) while the word portfolio is grey(affected by the white background?) though it should be the same colour since the white background intersects both words. If I am working from the premise regarding the colour alteration due to the graphic, then the colour should be faded for both "Michal Laszczuk" and "Portfolio". Does anyone know what is up here?
    On a side note, Im not sure why the graphics appear pixelated when not viewed in overprint preview.
    As seen above, I am assuming that the text gets faded since the background colour of the graphic is white as seen below.
    Does anyone know a way to eliminate this fading effect? I thought that if I put the text over the graphic, the colour of the text would not be impacted.This is clearly not the case as seen below. It seems like the darker elements of the graphic make the text darker while the white background fades the text.
    It is a subtle difference but it is noticeable when you look at the screen long enough. Does this have to do with the transparency effect that I introduced to the graphic or is it the nature of the jpeg graphic? It seems like the white background and colour of the graphic affect the text. Is there an easy way to make it so that the text is not affected? I would be happy to clarify anything or give more detail if this situation appears too confusing.
    Cheers!

    I don't 'hope' for anything...the OP doesn't seem to understand 'frames'--am just trying to walk someone thru the process of moving text to another layer.
    It also appears that a common mistake was made that allowed transparency settings to be applied to all elements.
    my explanation/solution will get the OP partially where they need to be and they might realize the error that was made and actually learn how to use the program

  • How do I display Canvas Graphic image (Not Iconic button) from jar file

    Hi all,
    I am currently using Forms 10g.
    I have gone through the tutorials on how to add Button Icons into Jar files for web enables forms .....so far so good
    This however does not explain what I actually want to do... since "graphic images are by nature embeded in the for rather than referenced ......so here goes ..
    I have a forms 10g application where all the individual form modules/canvases display a big banner (covering top 20% of the screen). This was done by importing the image straight unto the content canvases. As you know this now becomes a "graphic Image" now embeded(& not referenced by file name) on the canvas. Also bear in mind that this is actually different from an "Image Item" which is a block object.
    I dont know if this is possible, but what steps do i follow to make the image part of a jar file as opposed to my current situation. Please let me know if possible or not so I stop waisting development time looking for answers :)
    Another question is how do i make this jar file a library object so that we can vary the image as we wish
    NB: one other trick which i can think of is to create a giant push button across the screen to display the image and then stick it in a jar file !
    Cheers
    css_jay99

    I don't know about embedded images imported in from the builder, but there is a way to use READ_IMAGE_FILE into a BLOCK.IMAGE_ITEM where the images are all in a jar file stored on the OAS.
    Metalink Note:137397.1 explains it in details.
    Tony

  • Anyway to turn text into a graphic?

    Is there any way to turn text into a graphic like iweb 07 could do?

    The first version of iWeb was really bad at converting text to images, even the "good" text. The latest version seems to be a bit too lenient and at least for me, has let fonts that are DEFINITELY not on the "good" list stay text.
    I've taken to inserting a rounded rectangle, changing it's fill and opacity to "None" and altering the "corner" control so that it looks just like a sharp edged rectangle. You type into it like it's a text box, it fills and flows like it's a text box, but it ALWAYS renders as an image without fail. This has the added benefit of being able to easily edit in iWeb (without having to create a new text object, and copying through Preview each time you make a change).
    To see what text is going to render as an image before you publish, go into iWeb's preferences and turn on "Show text imaging indicator". Here's one of my pages that had stubborn "didn't want to render as an image" text that I used this on.
    http://www.makentosh.com/tipsfromtheiceberg/Blog/Entries/2006/2/14Day_of_hearts_and_heart-likeshapes.html
    For some reason, the "I Love Deadlines", which rendered fine with iWeb 1, had to be coerced to become an image with iWeb 2.
    Message was edited by: Kyn Drake

  • Mail 3.6 Adding Link to Graphic Image

    In the Edit menu of Mail 3.6, there is an option to add a link to text or a graphic. I've assigned a link to a graphic, however when I click the graphic, the link has been modified and the URL is incorrect. Is this a bug?

    You cannot add a link to an image. It's for text only.

  • I created a signature ID and customized the signature; however, when I go to sign it only shows the name layout or graphic image? How do I go back to using the certificate?

    Dear Forum
    I was using Adobe version XI and the signature feature disappeared from the menu. Now I downloaded Acrobat Reader DC. Using the menu and instructions I created a signature ID and customized the signature; however, when I go to sign a document it only shows the name layout or graphic image? How do I go back to using the certificate that I created?
    Any help would be greatly appreciated.
    Regards
    Carlos

    Firefox works fine on Windows 2000 SP4 for me.
    Any chance you have a dial-up connection that uses a web accelerator to speed the loading of content?

  • I cannot insert a graphic image in a new composition: win 7, tb 24

    At times when composing a new e-mail I cannot insert a graphic image in the message. I have tried both the Insert button and the Insert icon. This does not happen all the time; but, when it does happen I can't seem to make it work. My system is a Win 7 with Thunderbird 24.3.0.5. I have tried inserting different graphic images and have tried all combinations in the Image Properties pop-up window.
    I have closed and reopened Thunderbird. I have restarted my system. I have closed all windows except Thunderbird. Nothing helps. Help! Thank you, Bill Gray

    Bill Gray here again. I find that if I open another Write window, then copy/paste my entire e-mail from the initial window -- I can insert graphics into the new window.
    What happens in Thunderbird to make this happen? This has happened a number of times. But, at least now I know that I can open a new Write window and get around the problem. Yet, I am still stuck with the nagging question: Why does this happen?
    Thank you and God bless, Bill Gray

  • Problem with Alt Text output from thumbnail image of Lightbox widget

    I’m having a problem with the Lightbox widget not producing alternative text based on the image properties.  I’ve set ALT text for the image properties on both the larger Ligtbox image as well as the thumbnail.  But the HTML output from Muse does not include the ALT text on the thumbnail version of the image.  Here’s an example:
        <div class="popup_anchor">
           <div class="Thumb popup_element clearfix" id="u4409"><!-- group -->
            <a class="anchor_item grpelem" id="untitled"></a>
            <div class="grpelem" id="u4433"><!-- image -->
             <img id="u4433_img" src="/images/n0060292x292.jpg" alt="" width="292" height="292" />
    This may be a problem that came in a previous release of Muse.  I have a few older examples where ALT text is produced, but it’s no longer updated if I update the Image Properties.

    I'm seeing the same problem. Looks like a bug to me. Any ideas as to how we can get this on Adobe's bug fix list?

  • How can I add a title and ALT text to a JPEG image in Elements 11 for MAC?

    Does anyone know if there is an easy way I can add a title and ALT text to a JPEG image in Elements 11 for MAC?
    Very grateful for any help here.

    Hello
    The Arrange menu is your friend.
    You may select the arrow then "Bring to Front".
    Yvan KOENIG (from FRANCE vendredi 19 septembre 2008 17:49:50)

Maybe you are looking for

  • How can I remove email account from an iphone but leave it on another?

    Hi Can anyone advise me if I delete an email account from one iPhone will it still be available on another iPhone.  I've upgraded my phone but am giving my old iPhone to my husband but want to remove as many emails to save on memory for him, but when

  • How to find the Navigation in peoplesoft using SQL

    Hi All , I would like to know what are the possiblilites ways to find the navigation in peoplesoft. Is it possible to find using only RUN_CONTROL_ID same like Process name , component name ? . Please provide the SQL to find the possible ways. Advance

  • User Control Settings in Windows 7

    I want to change the user control settings in Windows 7. I can move the control setting, but when I click OK, the change isn't implemented. It doesn't matter what user account I'm in. Is this a simple fix? Thank you. Dan

  • Imp and Oracle 8i LITE

    iH: There was another post on this topic, but the answer was vague. I have an Oracle 8 database dump file (a DMP). I would like to import (a subset of) this dump file into my Oracle 8i LITE database. Is this possible? I don't have access right now to

  • Crystal Designer Automation

    Hello, There are some features which are available in the Crystal Designer and not available in the RAS SDK. (eg: delete datasource to create a new one, 'setSuppressEmbeddedFieldBlank' function...) Since this is something I really need to automate, I