Digital watermarking gif images

I ve writed a program which watermarks png and non-animated gif images .But there is a problem because we started to use animated gif images. How can we watermark animated gif images without corrupting animation of the image?
Regards
Murat

I haven't done much with gif animation, but here's an example that extracts the series of BufferedImages
from a gif file. Good luck!
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import java.io.*;
import java.net.*;
import java.net.URL;
import java.util.*;
import javax.imageio.*;
import javax.imageio.metadata.*;
import javax.imageio.stream.*;
import javax.swing.*;
import org.w3c.dom.*;
public class ViewGif extends JPanel {
    private BufferedImage[] images;
    private Point[] offsets;
    private BufferedImage composite;
    public static void main(String[] args) throws IOException {
        JPanel app = new ViewGif();
        app.setBackground(Color.RED);
        JFrame frame = new JFrame("ViewGif");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(new JScrollPane(app));
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    public ViewGif() throws IOException {
        URL url = new URL("http://members.aol.com/royalef/sunglass.gif");
        Iterator readers = ImageIO.getImageReadersBySuffix("gif");
        if (!readers.hasNext())
            throw new IOException("no gif readers");
        ImageReader reader = (ImageReader) readers.next();
        if (readers.hasNext())
            System.out.println("(there were oither readers)");
        ImageInputStream iis = ImageIO.createImageInputStream(url.openStream());
        reader.setInput(iis);
        final int numImages = reader.getNumImages(true);
        images = new BufferedImage[numImages];
        offsets = new Point[numImages];
        for(int i=0; i<numImages; ++i) {
            images[i] =  reader.read(i);
            offsets[i] = getPixelOffsets(reader, i);
        composite = new BufferedImage(images[0].getWidth(), images[0].getHeight(),
            BufferedImage.TYPE_INT_ARGB);
        final Graphics2D g2 = composite.createGraphics();
        g2.drawImage(images[0], offsets[0].x, offsets[0].y, null);
        new javax.swing.Timer(100, new ActionListener(){
            int j = 1;
            public void actionPerformed(ActionEvent evt) {
                g2.drawImage(images[j], offsets[j].x, offsets[j].y, null);
                j = (j+1) % numImages;
                repaint();
        }).start();
    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        Insets insets = getInsets();
        g.drawImage(composite, insets.left, insets.top, null);
    public Dimension getPreferredSize() {
        Insets insets = getInsets();
        int w = insets.left + insets.right + composite.getWidth();
        int h = insets.top + insets.bottom + composite.getHeight();
        return new Dimension(w,h);
    static Point getPixelOffsets(ImageReader reader, int num) throws IOException {
        IIOMetadata meta = reader.getImageMetadata(num);
        Point point = new Point(-1,-1);
        Node root = meta.getAsTree("javax_imageio_1.0");
        for (Node c = root.getFirstChild(); c != null; c = c.getNextSibling()) {
            String name = c.getNodeName();
            if ("Dimension".equals(name)) {
                for (c = c.getFirstChild(); c != null; c = c.getNextSibling()) {
                    name = c.getNodeName();
                    if ("HorizontalPixelOffset".equals(name))
                        point.x = getValueAttribute(c);
                    else if ("VerticalPixelOffset".equals(name))
                        point.y = getValueAttribute(c);
                return point;
        return point;
    static int getValueAttribute(Node node) {
        try {
            return Integer.parseInt(node.getAttributes().getNamedItem("value").getNodeValue());
        } catch (NumberFormatException e) {
            return -2;

Similar Messages

  • Digital Watermarking on image in frequency domain

    I am working on a Project which aims at studying the digital watermarking on image, with both spatial domain and frequency domain.
    I have finished the spatial domain but is frustrated with the frequency domain right now. I have no idea on how I can possess the frequency domain of a image. Is there a built-in function which can help us to do so?
    Thank you for your help.

    Also posted and crossposted:
    http://forums.sun.com/thread.jspa?threadID=5433169&messageID=10958328#10958328
    http://forums.sun.com/thread.jspa?threadID=5433180&messageID=10958329#10958329
    http://forums.sun.com/thread.jspa?threadID=5433412&messageID=10959648#10959648
    http://forums.sun.com/thread.jspa?threadID=5433693&messageID=10961065#10961065
    http://forums.sun.com/thread.jspa?threadID=5433694&messageID=10961066#10961066

  • Anyone know how to do invisible digital watermarking?

    Does anyone know or have code to do invisible digital watermarking on TIFF, BMP or GIF images?
    Thank you!!

    Hello!
    i just begin to conduct a research on digital watermarking technology.
    i found some algorithm on the web but i meet difficulties in understanding part on the algorithm, i hope i can get some helps from here.
    can you provide me some sample java watermarking code so that i can understand how watermarking works.
    thank you!

  • body background="watermark.gif" not working!!!

    hi,
    i am new to JSF.i have a code(Login)
    but when i put <body> tag with a bg image, i am not able to view that picture. Y?
    here is my code.
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:loadBundle basename="bundle.Messages" var="Message"/>
    <HTML>
    <HEAD> <title>Input Name Page</title> </HEAD>
    <body background="watermark.gif" bgproperties="fixed">
    <f:view>
        <h:form id="helloForm">
            <h:messages style="color: blue"/>
            <%@include file="head.jsp"%>
             <center>
                <h3><h:outputText value="#{Message.login_header}"/></h3>
            </center>
            <table bgcolor="orange" align="center">
            <tr>
            <td>
            <table align="center">
            <tr>
            <td>
            <table align="center">
            <tr>
            <td>
            <h:outputText value="#{Message.ask_uname}"/>
            </td>
            <td>
            <h:inputText id="userName" value="#{PersonBean.userName}" required="true">
                <f:validateLength minimum="2" maximum="10"/>
            </h:inputText>
            </td>
            <tr>
            <td>
            <h:outputText value="#{Message.ask_pword}"/>
            </td>
            <td>
            <h:inputText id="password" value="#{PersonBean.password}" required="true"/>
            </td>
            </tr>
            </table>
            </td></tr>
            <tr align="right">
            <td>
            <h:commandButton id="submit" action="sayhello" value="Say Hello" /> 
            </td>
            </tr>
            <tr>
            <td>
            Forgot Password?     <a href="http://sipl58:8080/web2/forget.jsp">Click Here to retrieve</a>
            </td>
            </tr>
            </table>
            </td>
            </tr>
            </table>
        </h:form>
    </f:view>
    </body>
    </HTML>Pls... help.
    Ganesh

    Have you tried by using the style attribute like that:
    <body style="background-image:url(watermark.gif);background-attachment : fixed;
    background-position : center;)">
    If it does not work, have you seen some errors in the log file of the applciation server?

  • Free invisible digital watermark?

    Does Lightroom or Photoshop has some form of invisible watermarking tools? I am looking for a free digital watermark app that doesn't involve visible text or images being placed on the image. I used to use Digimarc when it is free (years ago), but now there are subscription prices, although there is a free plug-in download for Photoshop.
    I only want to use it on 2 photos that I am emailing to someone. Does anyone know whether Lightroom can do it? Or know of any such apps?
    Thanks!

    If such a plug-in exists for Lr the developer is keeping very quiet about it.
    This is a link to a earlier thread asking the same question http://forums.adobe.com/message/1396376;jsessionid=FD45A6F5A4EC61B35FC14DFBA586C07B.node0 As you can see there wasn't much help back then either.

  • Getting a watermark background image to underlay box lines and lines.

    I've added a page header to my report with a watermark that underlays following sections.  My box lines aren't showing up because the image covers them. Everything else displays above the image.  Is there any way to solve this problem without using text boxes with borders?

    I tried this and it didn't turn out very well. My image is really light gray in colour (with a white background) and I'm having a rough time making the transparency show up in Crystal since it won't support .GIF images. When I do it in .JPG or .PNG it corrupts the image so bad you can barely see it after its been made transparent. I'm using GIMP 2.0 as my editor. I don't know if there is an easier way to do this. You would think the program would have a simpler way to add a background image into reports.  -.-
    Edited by: MarcieHennessy on Jan 9, 2010 12:12 AM

  • Custom Digital Watermark

    Is there a way to add a custom digital watermark to a labview front panel?  Thanks.

    There is a way, but it won't be easy...
    You can put a picture control (or a decoration) as top most object. Now,
    there is your watermark! Problem is that this watermark will block all mouse
    clicks, so everything behind it will be useless.
    You'll have to catch mouse clicks on the picture control, and make the
    controls behind it behave like they would if you'd clicked them directly.
    This will be very difficult, unless you only have one or two boolean buttons
    beneath it. For a numeric, you have to give it key focus when click in it,
    but also calculate the text position of the cursor, increment and decrement
    if that is where the user clicked, and don't forget about dragging the mouse
    to select text!
    Then you have the transparency problem... You can apply a mask to an image
    in the picture control, but it is either on or off. So you have to make it
    look transparent, by alpha blending everything behind the VI with the
    picture... A hole new set of problems...
    You might try to use GDI functions to draw a picture above the VI. In
    general, this works poorly, since the objects disappear when LV updates it's
    panel. But in this case, it could work. but if it doesn't, you're lost.
    I'm not shy about hacking stuff like this, but in this case, I'll pass.
    Perhaps if you explain more about your mmi, we could figure out another
    clever scheme. For instance, a watermark over a graph area is a lot
    easier...
    Regards,
    Wiebe.

  • Error while loading a logo .gif image to the banner

    Hi all,
    I'm running Portalea on NT platform and I receive the following error, trying to load a gif image as a logo to the banner (this is in spanish but I hope you can understand it):
    Wed, 27 Dec 2000 07:03:25 GMT
    ORA-06510: PL/SQL: excepcisn definida por el usuario no tratada
    ORA-06512: en "PORTAL30.WWDOC_DOCU_BRI_TRG", lmnea 60
    ORA-06510: PL/SQL: excepcisn definida por el usuario no tratada
    ORA-04088: error durante la ejecucisn del disparador 'PORTAL30.WWDOC_DOCU_BRI_TRG'
    DAD name: portal30
    PROCEDURE : PORTAL30.wwptl_banner.savecustom
    URL : http://ORACLE1:80/pls/portal30/PORTAL30.wwptl_banner.savecustom
    PARAMETERS :
    ===========
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Apache/1.3.12 (Win32) ApacheJServ/1.1 mod_ssl/2.6.4 OpenSSL/0.9.5a mod_perl/1.22
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=80
    SERVER_NAME=ORACLE1
    REQUEST_METHOD=POST
    QUERY_STRING=
    PATH_INFO=/pls/portal30/PORTAL30.wwptl_banner.savecustom
    SCRIPT_NAME=/pls
    REMOTE_HOST=
    REMOTE_ADDR=192.168.100.224
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=
    HTTP_CONTENT_LENGTH=6443
    HTTP_CONTENT_TYPE=multipart/form-data; boundary=---------------------------7d02753210f0280
    HTTP_USER_AGENT=Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt)
    HTTP_HOST=oracle1
    HTTP_ACCEPT=application/vnd.ms-excel, application/msword, application/vnd.ms-powerpoint, image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-comet, */*
    HTTP_ACCEPT_ENCODING=gzip, deflate
    HTTP_ACCEPT_LANGUAGE=es
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=portal30=AB515A5F55262E576590647AC04D98A8EF1D5A6F56D19ECCD710BDB4A08D2354903C0CA288FDE0C9283E116C71C00B1B3821CEAB7A24979CFF326F4979143EE1FD147BC097C2AD7705313C93DAB32D8 4A6CF71C26B267CC0B2FEA03B385A2E84; portal30_sso=7452540140821A6010973F5CAC7E7D17C7498F309E15C228015C1C0546A702F5AFDE500B69BDCB8DE5C29DD726FC8DEEE85A1DC979ECC7B8A6A16CADEF1DAB0C0ACEC11897D5B99B1033884D61307BEA7AE581C 8AB988C8CBBBDCE6174BA01F6
    Authorization=
    HTTP_IF_MODIFIED_SINCE=
    null

    Hi,
    No errors was found in the installation log. I'm looking in the WWDOC_DOCUMENT$ table and found records that make references to my previous tries to upload the logo image. In order to make others tries, how can I delete this information? Are references to this files in any other table?.
    I'm looking over the solution provide by Laurent Baresse, refering to the NLS_LANGUAJE problem ... (Thanks Laurent).
    Best regards
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Karthika Siva ([email protected]):
    Fernando,
    Are you able to upload any documents into a content area? Please look at your installation log file (install.log) for any errors that may have occured during the installation of the product. Also make sure that the tablespace containing the WWDOC_DOCUMENT$ table is not full.
    Karthika<HR></BLOCKQUOTE>
    null

  • Animated Gif Image does not render correctly on screen

    I have added animated gif image to the scene it does not render correctely.it shakes on the screen. plz give me any suggestion
    i use following code
    Image logo= new Image(getClass().getResourceAsStream("images/image.gif"));
    logoLabel.setGraphic(new ImageView(logo));

    Hello user,
    I think gif are rendered smoothly.
    Are you sure you are not making many object of same images everytime?
    Thanks.
    Narayan

  • Animated gif image

    Hi
    I like to create an animated gif image from a given set of images with java. I like to do this with the given set of java api as I do not want to use a commercial graphics library. Can anyone provide me with a sample example.
    Thanks

    Hi
    I like to resize a gif image. Currently i am using the following code but the resized image is not smooth.
    public BufferedImage resizeImage(BufferedImage img, int newW, int newH)
              int w = img.getWidth();
              int h = img.getHeight();
              BufferedImage dimg = new BufferedImage(newW, newH, img.getType());
              Graphics2D g = dimg.createGraphics();
              g.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);
              g.drawImage(img, 0, 0, newW, newH, 0, 0, w, h, null);
              g.dispose();
              return dimg;
    Is there a way to resize a gif image in a smooth way as the example given in the gif4j library
    Thanks

  • Animated GIF image gets distorted while playing.

    Hi,
    I have some animated gif images which I need to show in a jLabel and a jTextPane. But some of these images are getting distorted while playing in the two components, though these images are playing properly in Internet Explorer. I am using the methods insertIcon() of jTextPane and setIcon() of jLabel to add or set the gif images in the two components. Can you please suggest any suitable idea of how I can get rid of this distortion? Thanks in advance.

    In the code below is a self contained JComponent that paints a series of BufferedImages as an animation. You can pause the animation, and you specify the delay. It also has two static methods for loading all the frames from a File or a URL.
    Feel free to add functionality to it, like the ability to display text or manipulate the animation. You may wan't the class to extend JLabel instead of JComponent. Just explore around with the painting. If you have any questions, then feel free to post.
    The downside to working with an array of BufferedImages, though, is that they consume more memory then a single Toolkit gif image.
    import javax.swing.JComponent;
    import java.awt.image.BufferedImage;
    import java.awt.Graphics;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageReader;
    import javax.imageio.stream.ImageInputStream;
    public class JAnimationLabel extends JComponent {
        /**The default animation delay.  100 milliseconds*/
        public static final int DEFAULT_DELAY = 100;
        private BufferedImage[] images;
        private int currentIndex;
        private int delay;
        private boolean paused;
        private boolean exited;
        private final Object lock = new Object();
        //the maximum image width and height in the image array
        private int maxWidth;
        private int maxHeight;
        public JAnimationLabel(BufferedImage[] animation) {
            if(animation == null)
                throw new NullPointerException("null animation!");
            for(BufferedImage frame : animation)
                if(frame == null)
                    throw new NullPointerException("null frame in animation!");
            images = animation;
            delay = DEFAULT_DELAY;
            paused = false;
            for(BufferedImage frame : animation) {
                maxWidth = Math.max(maxWidth,frame.getWidth());
                maxHeight = Math.max(maxHeight,frame.getHeight());
            setPreferredSize(new java.awt.Dimension(maxWidth,maxHeight));
        //This method is called when a component is connected to a native
        //resource.  It is an indication that we can now start painting.
        public void addNotify() {
            super.addNotify();
            //Make anonymous thread run animation loop.  Alternative
            //would be to make the AnimationLabel class extend Runnable,
            //but this would allow innapropriate use.
            exited = false;
            Thread runner = new Thread(new Runnable() {
                public void run() {
                    runAnimation();
            runner.setDaemon(true);
            runner.start();
        public void removeNotify() {
            exited = true;
            super.removeNotify();
        /**Returns the animation delay in milliseconds.*/
        public int getDelay() {return delay;}
        /**Sets the animation delay between two
         * consecutive frames in milliseconds.*/
        public void setDelay(int delay) {this.delay = delay;}
        /**Returns whether the animation is currently paused.*/
        public boolean isPaused() {
            return exited?true:paused;}
        /**Makes the animation paused or resumes the painting.*/
        public void setPaused(boolean paused) {
            synchronized(lock) {
                this.paused = paused;
                lock.notify();
        private void runAnimation() {
            while(!exited) {
                repaint();
                if(delay > 0) {
                    try{Thread.sleep(delay);}
                    catch(InterruptedException e) {
                        System.err.println("Animation Sleep interupted");
                synchronized(lock) {
                    while(paused) {
                        try{lock.wait();}
                        catch(InterruptedException e) {}
        public void paintComponent(Graphics g) {
            if(g == null) return;
            java.awt.Rectangle bounds = g.getClipBounds();
            //center image on label
            int x = (getWidth()-maxWidth)/2;
            int y = (getHeight()-maxHeight)/2;
            g.drawImage(images[currentIndex], x, y,this);
            if(bounds.x == 0 && bounds.y == 0 &&
               bounds.width == getWidth() && bounds.height == getHeight()) {
                 //increment frame for the next time around if the bounds on
                 //the graphics object represents a full repaint
                 currentIndex = (currentIndex+1)%images.length;
            }else {
                //if partial repaint then we do not need to
                //increment to the the next frame
    }

  • Problem at displaying animated gif images !!!!!!!!!!!!

    hello everyone......i am trying to display an animated gif image..............so till far i have no issues on this....
    but i face problem when :
    i have created a class called SimpleGame which extends JPanel....
    public class SimpleGame extends JPanel
    //code
    public void paintComponent(Graphics g)
    //code to draw image
    }now i have written another class with main method
    public class MyGame extends SimpleGame
    public MyGame()
            JFrame frame=new JFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(800, 600);
            frame.setUndecorated(true);
            frame.setLocationRelativeTo(null);
            frame.getContentPane().add(this);
            frame.setVisible(true);
            this.repaint();
    }so image gets displayed but only one frame of animated image......image that is displayed is static.....since it is a animated gif,,,,,so some how animation is not rendered......only one frame is displayed......
    why is it happening ??
    if i try to display animated image from a single class i mean my paintComponent method and main method is at same class then i do not face problem.....
    but if my paint method is in another class and i am using that method from another class then animation does not get rendered.........
    any help !!!!! please...........

    class SimpleGame extends JPanel
    Image img=new ImageIcon("y.gif");
    public void paintComponent(Graphics g)
    g.drawImage(img,150,150,this);
    }main class//
    class MyGame extends SimpleGame
    public MyGame()
            JFrame frame=new JFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(800, 600);
            frame.setUndecorated(true);
            frame.setLocationRelativeTo(null);
            frame.getContentPane().add(this);
            frame.setVisible(true);
            this.repaint();
    public static void main(String[] args)
    new MyGame();
    }my image gets displayed.......but only single frame of a animated image....animation is not happening..........

  • Animated gif images not working, n73 problem pleas...

    my phone is n73music. when i try to use animated or gif images as wallpapers, the images are not moving as they should do in standby mode on the display. what could be the problem, please advice. thankyou.

    Sorry, N73/ME is a s60 phone and s60 doesnt support moving animated GIG, PNG file format as wallpaper

  • Animated GIF Image on a JPanel.

    How can I display an animated GIF image on a JPanel? It should animate after displaying.
    Regards

    I think this code should display an animated GIF image on a JPanel.
    -Mani
    import javax.swing.*;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.*;
    public class Animation {
    public static void main(String args[]) {
    JLabel imageLabel = new JLabel();
    JLabel headerLabel = new JLabel();
    JFrame frame = new JFrame("JFrame Animation");
    JPanel jPanel = new JPanel();
    //Add a window listner for close button
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    // add the header label
    headerLabel.setFont(new java.awt.Font("Comic Sans MS", Font.BOLD, 16));
    headerLabel.setText("Animated Image!");
    jPanel.add(headerLabel, java.awt.BorderLayout.NORTH);
    //frame.getContentPane().add(headerLabel, java.awt.BorderLayout.NORTH);
    // add the image label
    ImageIcon ii = new ImageIcon("d:/dog.gif");
    imageLabel.setIcon(ii);
    jPanel.add(imageLabel, BorderLayout.CENTER);
    frame.getContentPane().add(jPanel, java.awt.BorderLayout.CENTER);
    frame.pack();
    frame.setVisible(true);
    }

  • Problem with Gif image

    Having a problem with gif image not showing up. It will show up in netscape6.2, but not in IE 5.0. Both are using the java 1.4 plugin. They are basic buttons (zoom in, zoom out, etc) and they actions work, just the icons aren't showing. Any help would be great! Below is a snip of code:
    JPanel toolBarsPanel = new JPanel();
    javax.swing.JToolBar toolbar = new javax.swing.JToolBar();
    JButton zoomin = new JButton(new ImageIcon("tut/zoomin.gif"));
    JButton fullext = new JButton(new ImageIcon("tut/fullextent.gif"));
    JButton identify = new JButton(new ImageIcon("tut/identify.gif"));
    JButton btn = new JButton(new ImageIcon("tut/addtheme.gif"));
    toolbar.add(zoomin);
    toolbar.add(fullext);
    toolbar.add(identify);
    toolbar.add(btn);
    add(toolbar, BorderLayout.NORTH);
    Thanks again for any help!

    I used to do a lot of work in this sort of thing. After a while we were able to convince our bosses to use generated HTML (JSPs, etc.), so the problem moved to porting JavaScript to different platforms! (Platforms in this context means the different browser/OS combinations, etc.).
    The only two things I can recommend are:
    - complete control over you code. You will have to fix it! (Tried you apps on a Mac yet?)
    - assume a minimal install. Don't assume users are going to have any fancy tools installed on their PC, unless you are developing an Intranet app, where you know the spec of the machines that are going to be using it.
    As regarding getting IE to use a relative address, I don't think you are going to have any luck their, I'm afraid! (Although I am curious. It has been some time, but I though it did use relative addresses. Are you absolutely sure about this, did you check this out with System.outs and that?
    HTH,
    Manuel Amago.

Maybe you are looking for

  • HT4528 Sound from the built-in speaker badly cracks and breaks

    Hi, I need a help on trying to figure out what's wrong with my iPhone 4.. I've had my iPhone for about a year, without any major issue. But recently I noticed that the sound coming from the built-in speaker cracks and breaks to a point it barely make

  • Concatenated Datastore doesn't work for me

    I'm using oracle InterMedia Text. Now I'm trying to build a Concatenated Datastore. I executed the sql-file cdstore.sql. 0 Errors. But when I'm trying to execute "exec ctx_cd.add_column('my_cdstore',columnname) I get this error: ORA-01749: you may no

  • Prime Infrastructure 2.0 email charset problem

    Dear all, I have question regarding Guest portal managed through PI. Everything is set, but only one thing doesn't work as I expected. When I make an account and print it, everything looks fine. When I sent it via email, then enconding of mail is wro

  • Problems with WebLogic 5.1 Tour

    I'm running the tour on an evaluation copy of WebLogic Server 5.1. There are three places in the tour that don't seem to work correctly. 1. On the WebLogic Events page, the applet doesn't display anything. That is, the applet area is totally blank. T

  • I can't get itune store to load on my computer..all other websites load fine

    I need help in accessing the itunes store on my computer. The webpage will not load