Blog posting weirdness (text copying as image file)

so i posted a review of the new iPhoto as part of a series of reviews for the MacAddict forums i visit.
here's the original review- http://web.mac.com/lukelucas/iWeb/sha/s.%20h.%20a./CEA15C3B-E8CB-4FA9-9548-4802E 0A06FC8.html
when someone tried to copy a portion of the text to quote something i said, they couldn't copy text: when they tried to drag their mouse over it, it pulled the entire article as an image file. i thought it was maybe because of the background i used.
so i tried this, with a plain background- http://web.mac.com/lukelucas/iWeb/sha/s.%20h.%20a./63BC3BDD-BBF8-4A71-A56C-14A13 B30F6BB.html
same results.
in this test, you can copy the text- http://web.mac.com/lukelucas/iWeb/sha/s.%20h.%20a./728C72BF-AF82-4C5C-AC4D-0B74D 1BEFC66.html
same thing here, with a decently long post- http://web.mac.com/lukelucas/iWeb/sha/s.%20h.%20a./D1F6FE5D-1F3F-40FA-86D9-4E08F 89CD154.html
what gives here?
1.43 GHZ G4 mac mini   Mac OS X (10.4.4)  

This might be true for some but not me: I have two text boxes one that shows as an Image and one that does not. They both have the exact same Web friendly font. They even have the same exact text. They both do not overlap any other images and no images overlaps them. Next I created a new box with the same text in the same place and it is now text not a picture. So to me it seemed like the box that turned the text to an image had a setting that made it do that. So I copying and pasting the box and changing the text but now the box would no longer display the font as a picture but as text. This is strange behavior. I really wouldnt be that annoyed by it but if you look at the page on a PC it looks horrible.
Power Mac G4 500mghz   Mac OS X (10.4.2)  

Similar Messages

  • How to Copy an Image File from a Folder to another Folder

    i face the problem of copying an image file from a folder to another folder by coding. i not really know which method to use so i need some reference about it. hope to get reply soon, thx :)

    Try this code. Make an object of this class and call
    copyTo method.
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class FileUtil
    extends File {
    public FileUtil(String pathname) throws
    NullPointerException {
    super(pathname);
    public void copyTo(File dest) throws Exception {
    File parent = dest.getParentFile();
    parent.mkdirs();
    FileInputStream in = new FileInputStream(this); //
    Open the source file
    FileOutputStream out = new FileOutputStream(dest); //
    Open the destination file
    byte[] buffer = new byte[4096]; // Create an input
    buffer
    int bytes_read;
    while ( (bytes_read = in.read(buffer)) != -1) { //
    Keep reading until the end
    out.write(buffer, 0, bytes_read);
    in.close(); // Close the file
    out.close(); // Close the file
    This is poor object-oriented design. Use derivation only when you have to override methods -- this is just
    a static utility method hiding here.

  • Save the Overlay Figures and Text in an Image File in cvi

    is possible have an examples "Save the Overlay Figures and Text in an Image
    File"
    thanks
    nicola mirasole

    Nicola,
    I am sorry but we do not have an example for "Save the Overlay Figures and Text in an Image File" for CVI. Currently, you are going to need to use Window's API calls in order to get this functionality.
    Regards,
    Mike

  • Text format + attached image files or Html format + displayed images ?

    Hi, I have this kind of probleme and I need some help.
    (Code : see below)
    I want to send a mail with some attached image files.
    For the message part, I create a MimeBodyPart and add two kinds of message (text or html) and this part is multipart/alternative.
    For the attachment part, I create another MimeBodyPart and I set the Header like this : xxx.setHeader("Content-ID", "<image>").
    When I use outlook (html format) , I receive a mail with the picture displayed at the bottom, it's perfect.
    However the problem is for the mailbox which is in text mode, I receive a mail with message + attachment files, but I also have some image frames generated by xxx.setHeader("Content-ID", "<image>") I guess.
    Who can give me a hand to implement something that able to make difference according to text format or html format.
    I post my code here, thanks a lot :
    //set Message
         msg.setText(pMsgText, DEFAULT_CHARSET);
         // Partie Texte brut
         MimeBodyPart textPart = new MimeBodyPart();
         String header = "";
         textPart.setText(header + pMsgText, DEFAULT_CHARSET);
         textPart.setHeader(
                   "Content-Type",
         "text/plain;charset=\"iso-8859-1\"");
         textPart.setHeader("Content-Transfert-Encoding", "8bit");
         // Partie HTML
         MimeBodyPart htmlPart = new MimeBodyPart();
         String images = BTSBackUtil.generateImgSrc(pictureContainers.length);
         String endPart = "</div>\n</body>\n</html>";
         htmlPart.setText(pMsgTextHTML+images+endPart);
         htmlPart.setHeader("Content-Type", "text/html");
         // create the mail root multipart
         // Multipartie
         Multipart multipart = new MimeMultipart("mixed");
         // create the content miltipart (for text and HTML)
         MimeMultipart mpContent = new MimeMultipart("alternative");
         // create a body part to house the multipart/alternative Part
         MimeBodyPart contentPartRoot = new MimeBodyPart();
         contentPartRoot.setContent(mpContent);
         // add the root body part to the root multipart
         multipart.addBodyPart(contentPartRoot);
         // add text
         mpContent.addBodyPart(textPart);
         // add html
         mpContent.addBodyPart(htmlPart);
         // this part treates attachment
         if (pictureContainers != null){
              PictureContainer pictureContainer = new PictureContainer();
              String fileName = "";
              for(int i = 0; i < pictureContainers.length; i++) {
                   pictureContainer = pictureContainers;
                   byte[] bs = pictureContainer.getImgData();
                   fileName = "image" + i +".jpg";
                   DataSource dataSource = new ByteArrayDataSource(fileName, "image/jpeg", bs);
                   DataHandler dataHandler = new DataHandler(dataSource);
                   MimeBodyPart mbp = new MimeBodyPart();
                   mbp.setDataHandler(dataHandler);
                   mbp.setHeader("Content-ID", "<image"+i+">");
                   mbp.setFileName(fileName);
                   multipart.addBodyPart(mbp);
    // end attachment
    msg.setContent(multipart);

    Hi All!!! I have created this code , i hope this w'll solve u'r problem , this code display u'r html text and display the images below on it, no need to attach the image...... byee.
    package Temp;
    import javax.activation.DataHandler;
    import javax.activation.DataSource;
    import javax.activation.FileDataSource;
    import javax.activation.URLDataSource;
    import javax.mail.Authenticator;
    import javax.mail.BodyPart;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.AddressException;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    public class HtmlImageExample {
    public static void main (String args[]) throws Exception {
    String host = "smtp.techpepstechnology.com";;
    String from = "[email protected]";
    String to = "[email protected]";
    //String to = "[email protected]";
    String dir=null;
    //String file = "C://NRJ/EmailApp/src/java/MailDao//clouds.jpg"];
    //File file = new File("C:\\NRJ\\EmailApp\\src\\java\\Temp
    Sunset.jpg");
    // Get system properties
    //Properties props = System.getProperties();
    HtmlImageExample html1 = new HtmlImageExample();
    html1.postImage(to,from);
    // Setup mail server
    String SMTP_HOST_NAME = "smtp.techpepstechnology.com";//smtp.genuinepagesonline.com"; //techpepstechnology.com";
    String SMTP_AUTH_USER = "[email protected]"; //[email protected]"; //techpeps";
    String SMTP_AUTH_PWD = "demo"; //techpeps2007";
    //my code
    public void postImage(String to, String from) throws MessagingException, FileNotFoundException, IOException
    Properties props = System.getProperties();
    props.put("mail.transport.protocol", "smtp");
    props.put("mail.smtp.host", SMTP_HOST_NAME);
    props.put("mail.smtp.auth", "true");
    // props.load(new FileInputStream(file));
    Authenticator auth = new SMTPAuthenticator();
    Session session = Session.getInstance(props, auth);
    // Create the message
    Message message = new MimeMessage(session);
    // Fill its headers
    message.setSubject("Embedded Image");
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
    message.setContent
    h1. This is a test
    + "<img src=\"http://www.rgagnon.com/images/jht.gif\">",
    "image/jpeg");
    // Create your new message part
    //BodyPart messageBodyPart = new MimeBodyPart();
    //mycode
    MimeMultipart multipart = new MimeMultipart("related");
    MimeBodyPart mbp1 = new MimeBodyPart();
    // Set the HTML content, be sure it references the attachment
    String htmlText = "<html>"+
    "<head><title></title></head>"+
    "<body>"+
    " see the following jpg : it is a car!
    "+
    h1. hello
    "+
    //"<IMG SRC=\"CID:Sunset\" width=100% height=80%>
    "+
    "<img src=\"http://www.yahoo.com//70x50iltA.gif\">"+
    " end of jpg"+
    "</body>"+
    "</html>";
    mbp1.setContent("h1. Hi! From HtmlJavaMail
    <img src=\"cid:Sunset\">","text/html");
    MimeBodyPart mbp2 = new MimeBodyPart();
    mbp2.setText("This is a Second Part ","html");
    // Fetch the image and associate to part
    //DataSource fds=new URLDataSource(new URL("C://NRJ//MyWeb//logo.gif"));
    FileDataSource fds = new FileDataSource("C://NRJ//MyWeb//Sunset.jpg");
    mbp2.setFileName(fds.getName());
    mbp2.setText("A Wonderful Sunset");
    mbp2.setDataHandler(new DataHandler(fds));
    mbp2.setHeader("Content-ID","<Sunset>");
    // Add part to multi-part
    multipart.addBodyPart(mbp1);
    multipart.addBodyPart(mbp2);
    message.setContent(multipart);
    // Send message
    Transport.send(message);
    //mycode
    private class SMTPAuthenticator extends javax.mail.Authenticator
    public PasswordAuthentication getPasswordAuthentication() {
    String username = SMTP_AUTH_USER;
    String password = SMTP_AUTH_PWD;
    return new PasswordAuthentication(username, password);

  • RE: Image file as Text Fill

    Hello All
    If I remember correctly from my PhotoShop 7 Days you could create different parts of your project in seperate layers and make them visible or invisible using the eye tool for the layer. Does anybody know of a way using this tool, or any other that you can think of to fill in text using an image file. For example instead of text with normal black fill colour the text would be filled in with my image file which is maybe lying at the back or something.
    Any help, greatly appreciated.
    Many Thanks
    JayBee

    Make a type layer in Ps as you like. Copy/paste/drag in your image and place as you like, making sure the image layer is above the type layer. You can temporarily reduce the opacity of the image layer for reference. Then with the image layer selected go to layer... create clipping mask (ctrl g).
    J

  • Image files are copied but SAPMMC not started

    Hi All,
          I copied the Image file and paste in the my new server of SR2.after i clicked my ghost icone, selecte the Restore option and selected the Image files are orcale instances and  <b>XI instances but SAPMMC not started</b>.pls sugest me.
    regards,
    ramesh.g

    ????????????????????????????????????????????????????????????????????????????????????

  • Do image files adjusted in Lightroom transfer to another computer if you need to reload the files?

    I'm used to making adjustments in Camera RAW and copying the image files for use on multiple workstations.  In this case, my adjustments go with the image file.  If I make my adjustments using Lightroom and move the image files to another computer will I lose those adjustments?  I wonder if I invest all my adjustment time using Lightroom and my computer crashes will I lose those adjustments even though I am backing up my files to an external drive.

    You wrote: " If I make my adjustments using Lightroom and move the image files to another computer will I lose those adjustments?"
    Yes, you will loose them unless you save to xmp. You save to xmp by either pressing Ctrl / Cmd + letter "S"  or
    a) in the Library Module you go >Metadata >Save Metadata to File, or
    b) in the Develop Module you go >Photo >Save metadata to file.
    Without <Saving metadata to file> Lr writes the edits into the catalog only. And, if you transfer images without the catalog to another computer your edits will be lost on the second computer.
    By <Saving metadata to file> a xmp sidecar file will be created that stores the edits. In case of a DNG the edits are not written into Xmp but into the file header - same effect.
    Note though that not everything can be stored in xmp-files. For instance collections, stacking are stored in the catalog only.
    This is presumably so because the save to xmp was created in order that Lr adjustment can be viewed in other Adobe products (for instance in Bridge). Naturally, only those "features" need to be written into xmp that the other program can display.
    WW

  • Drag and drop image files fom SD-card?

    after upgrading to Lion (10.7.2) in 5 out of 10 times if I select image files from an inserted SD-card and drag them over to a folder on my internal harddisk (using a mouse not the trackpad of my MacBook Pro). I can drag the image files but if I release to mouse to drop them nothing happens.
    The files stay there hovering over the desktop whatever I try to do. It is also not possible to remove the SD-card.
    The only thing that helps is to reboot the MB Pro. Then I can check the folder on the internal harddisk an voila all the image files are there.
    Do I have missed any settings or what do I have to do that drag & drop works like before?

    update:
    the same thing happens if I use the trackpad of the MB Pro to copy the image files with drag & drop .
    Strange enough using keyboard commands cmd+C and cmd+V (cut & paste) everything works smoothly - as it was always and as it should be.
    But hey, Apple brought us one of the best GUI and now with Lion this should be gone! That can't be true.

  • A performance issue when opening report calls image file

    Hi All,
    I use Oracle reports version 10gR2. When the client user press preview button to display the Oracle report it takes an excessive amount of time. This report displays image file (*.tiff), the image file stored in another server not the application server or database server. I copy the image file first from this machine to the client machine then display the report from the client machine. But still takes time.
    Thanks & regards,
    Walid

    Hi All,
    I use Oracle reports version 10gR2. When the client user press preview button to display the Oracle report it takes an excessive amount of time. This report displays image file (*.tiff), the image file stored in another server not the application server or database server. I copy the image file first from this machine to the client machine then display the report from the client machine. But still takes time.
    Thanks & regards,
    Walid

  • How to import image file of OS

    I was give an .img file of a server......I didn't receive a vm.vfg file at all, I the image was just simply copied from the running_pool on the oracle vm server after it was shut down.  Now...can I import this image into another oracle vm server using vm manager or some commands on the oracle vm server itself?  I was also sent the following information...
    more dns
    # Automatically generated xen config file
    name = "dns"
    memory = "256"
    disk = [ 'file:/OVS/running_pool/dns.img,xvda,w', ]
    vif = [ 'mac=00:16:3e:2a:4d:73, bridge=xenbr0', ]
    vfb = ["type=vnc,vncunused=1"]
    uuid = "4f91b207-a6a5-5bec-9ada-d60cc9254ce5"
    bootloader="/usr/bin/pygrub"
    vcpus=1
    on_reboot   = 'restart'
    on_crash    = 'restart'
    This was generated on the original oracle vm server....should I edit that to reflect the uuid of the new oracle vm server and can I create my own vm.cfg file?  The server where this image come from does not have oracle vm manager controlling it, the admin has simply been using the oracle vm server interface itself to mount the domains..is there a way to generate a template from just the oracle vm server and not using the manager?

    I would change the name if the image file to something meaningful and simply copy the image file to the storage repository /OVS/Repositories/[YOUR Repo]/VirtualDisks and then simply rescan the storage repo. That should "import" the new image to your repo and make it available for use.
    The information shown about the VM indicates that the boot loader is pygrub - that would make this guest a PVM one, so you could simply create a new PVM in OVMM and choose the just imported vdisk as its first disk. The info for this guest also suggests that it's MAC-Address is 00:16:3e:2a:4d:73, so you will need to adjust the settings inside the guest once it is running on you new OVMs.
    Hth

  • FM9 Numbering in Hiearchical books (blog post)

    Mayank Gupta from FrameMaker Engineering has posted an article on the new Folders and Groups in FM9's books and how these behave using numbering in FM9.
    See: http://blogs.adobe.com/techcomm/2009/06/numbering_in_hierarchical_books.html

    Hi Shelley,
    The error... "The Application configured for the XML book component is not available."
    is seen when the XML files in your books do not have an Application associated with them. You would will always see this mesaage when you update the Book if the Application is not set.
    To set Application to use for an XML file inside a book in FrameMaker9-
    Select XML File in book > Right Click-Select Properties.
    Select Application in the Use Structured Application dialog.
    Select continue to associate the XML file with an Application.
    You might find this blog post helpful if you use XML files in books- XML Authoring Projects using Hierarchical Books
    Regards,
    Nakshatra

  • Javadoc not copying from doc-files directories

    Until yesterday I used NetBeans 5.5 for my development projects, and then I installed 6.0. I noticed when I wanted to generate documentation for my classes, that it didn't copy the image files I have in the required doc-files directories.
    I know I could copy the files manually, but that would defy the purpose with automated tools. So, can someone please tell how to make NetBeans 6.0 copy these files, so they are visible in the documentation?

    I solved this by overriding the existing javadoc target, and invoking an Ant copy task.
    <target name="javadoc" depends="init,-javadoc-copy-doc-files,-javadoc-build,-javadoc-browse" description="Build Javadoc."/>
    <target name="-javadoc-copy-doc-files">
      <copy todir="${dist.javadoc.dir}">
        <fileset dir="${src.dir}">
          <include name="**/doc-files/**"/>
        </fileset>
      </copy>
    </target>

  • How to start the Toshiba Ghost image files from the HDD

    Hello
    Ok this is a tough one but hopefully some tech/wizz can help me out.
    I have all the necessary CD Recovery disc but my Toshiba laptop CDRom has died and i'm looking for replacement at the moment.
    I have managed to copy the image files and all the other info from these CD's onto the laptop hard drive via a network from my desktop cdrom. I did try to use the desktop cdrom to boot the 2.5" laptop drive but it knew it wasnt a toshiba laptop so wouldn't let me recovery.
    However now I have manage to copy all the ghost image files onto the laptop hdd I'm stuck on how to run installation via dos.
    The laptop hdd is formatted and all i have are the following files
    span.bmp
    setenv.bat --------> batch file contains following lines
    @ECHO OFF
    SET GHOSTPAR=
    SET SWN=01237000
    SET EXT=GHO
    SET VOLLABEL=%SWN%
    SET FILENAME=%SWN%.%EXT%
    01237001.GHS------> PART 2 OF IMAGE
    01237000.GHO -----> GHOST IMAGE MAIN
    01237000.CRC
    A folder called G_INST
    which contains 3 extra folders BMP, DOS and TOOLS and span.bmp
    I cant figure out how i can run ghost to extract and recovery my HDD can someone help me :)
    Thanks in advance
    Simon

    Im really skeptical if you will be start the Toshiba ghost image files from the second partition without using the Symantec Norton Ghost software.
    I have created a ghost image of the C partition and placed it on the D partition.
    To recover the C partition I have to start the Ghost Utility and have to use the image file .gho from D partition
    I have googled a little bit and found the useful instruction how to recover the Portege M3500 without using an CD/DVD drive. Maybe this will run also on the Sat A30.
    http://mobilepcwiki.com/mpc/index.php?title=Toshiba/Portege_M3500/FAQ
    By the way: the internal, compatible ODD can be ordered from the ASP in your country!

  • How can I upload a (image) file through an applet ?

    How can I upload a (image) file through an applet ?

    have a look at http://www.haller-systemservice.net/jupload/
    i'm using Apache Jakarta HTTPClient to create a new HTTP connection to the webserver and sending a new POST request, which holds the image file. (So it's RFC1867 conform)
    there is also an open source implementation of such an applet on sourceforge. it's also called JUpload, but i think it's not maintained any more.

  • Pasting multiple image files

    hi all,
    i want to implement a 'copy of image files from systemclipboard' to 'paste on jList operation on Mac OS x.
    how do is do this.
    kalpana

    I am puzzled about how this problem initially arised, too.
    For the issue with several cameras I recommend the following:
    1. If the camera lets you, specify a unique prefix so that each photo will have a unique name directly from camera.
    E.g. Nikon lets you change their default prefix "DSC" to something else. As I even do not want to have recurring filenames after 10'000 shots I choose "yFL" as prefix, where y=number from 0..9, F=starting letter of ther first name of the camera owner, L=last name. Or other 2 digits that point to the camera model.
    For current decade it is even nice to take y=1 for 2011 and so on. As I do roughly 10'000 shutters per year that fits about nicely. [Ok, as of 2020 I will use letters, too. 2046 I have to devise something else hoping that I will still be shooting photos with my same husband.]
    2. If the camera does not facilitate such, as Canon: rename upon LR-import by putting a short prefix in front of the originial filename, e.g. yS90_, yG12_
    I only want from a filename that it be unique in my household and that I have a rough idea where in sequence of time it may belong.
    So if I get pictures from friends I put a prefix for them, too, while importing. Leaving the rest of their original filename is good for further communication about the pic.
    I think usually LR takes more properties into account than just filename when deciding about duplicate, such as camera serial no., capture time etc.
    Anybody who knows for sure?

Maybe you are looking for