the text of the bitmap image editing

I'm trying to modify the test on a website produced by a guy who is no longer available. There are several banners and buttons nav with text that needs to be changed. With the help of fireworks I can't get the text. Ideas? What I have to do it again?

Thank you, that will work... takes more time but fact work.

Tags: Dreamweaver

Similar Questions

  • How to convert the Bitmap Image in BlackBerry

    Hello

    In my application, I get the picture from the server. Now, I want to convert this Bitmap Image to display on the screen. For this I use below codes. But it doesn't give me the same image does not mean with the clarity and the exact size. He's smaller than the picture.

    I used the codes below:

    private Bitmap getBitmapFromImg(Image img) {
            Bitmap bmp = null;
            try {
                Logger.out(TAG, "It is inside the the image conversion        " +img);
                Image image = Image.createImage(img);
                byte[] data = BMPGenerator.encodeBMP(image);
                Logger.out(TAG, "It is inside the the image conversion---333333333"+data);
                bmp = Bitmap.createBitmapFromBytes(data, 0, data.length, 1);
                } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            return bmp;
            // TODO Auto-generated method stub
        }
    

    Here is the BMPGenerator class:

    public final class BMPGenerator {
    
            /**
             * @param image
             * @return
             * @throws IOException
             * @see {@link #encodeBMP(int[], int, int)}
             */
            public static byte[] encodeBMP(Image image) throws IOException {
                    int width = image.getWidth();
                    int height = image.getHeight();
                    int[] rgb = new int[height * width];
                    image.getRGB(rgb, 0, width, 0, 0, width, height);
                    return encodeBMP(rgb, width, height);
            }
    
            /**
             * A self-contained BMP generator, which takes a byte array (without any unusual
             * offsets) extracted from an {@link Image}. The target platform is J2ME. You may
             * wish to use the convenience method {@link #encodeBMP(Image)} instead of this.
             * 

    * A BMP file consists of 4 parts:- *

      *
    • header
    • *
    • information header
    • *
    • optional palette
    • *
    • image data
    • *
    * At this time only 24 bit uncompressed BMPs with Windows V3 headers can be created. * Future releases may become much more space-efficient, but will most likely be * ditched in favour of a PNG generator. * * @param rgb * @param width * @param height * @return * @throws IOException * @see http://en.wikipedia.org/wiki/Windows_bitmap */ public static byte[] encodeBMP(int[] rgb, int width, int height) throws IOException { int pad = (4 - (width % 4)) % 4; // the size of the BMP file in bytes int size = 14 + 40 + height * (pad + width * 3); ByteArrayOutputStream bytes = new ByteArrayOutputStream(size); DataOutputStream stream = new DataOutputStream(bytes); // HEADER // the magic number used to identify the BMP file: 0x42 0x4D stream.writeByte(0x42); stream.writeByte(0x4D); stream.writeInt(swapEndian(size)); // reserved stream.writeInt(0); // the offset, i.e. starting address of the bitmap data stream.writeInt(swapEndian(14 + 40)); // INFORMATION HEADER (Windows V3 header) // the size of this header (40 bytes) stream.writeInt(swapEndian(40)); // the bitmap width in pixels (signed integer). stream.writeInt(swapEndian(width)); // the bitmap height in pixels (signed integer). stream.writeInt(swapEndian(height)); // the number of colour planes being used. Must be set to 1. stream.writeShort(swapEndian((short) 1)); // the number of bits per pixel, which is the colour depth of the image. stream.writeShort(swapEndian((short) 24)); // the compression method being used. stream.writeInt(0); // image size. The size of the raw bitmap data. 0 is valid for uncompressed. stream.writeInt(0); // the horizontal resolution of the image. (pixel per meter, signed integer) stream.writeInt(0); // the vertical resolution of the image. (pixel per meter, signed integer) stream.writeInt(0); // the number of colours in the colour palette, or 0 to default to 2n. stream.writeInt(0); // the number of important colours used, or 0 when every colour is important; // generally ignored. stream.writeInt(0); // PALETTE // none for 24 bit depth // IMAGE DATA // starting in the bottom left, working right and then up // a series of 3 bytes per pixel in the order B G R. for (int j = height - 1; j >= 0; j--) { for (int i = 0; i < width; i++) { int val = rgb[i + width * j]; stream.writeByte(val & 0x000000FF); stream.writeByte((val >>> 8) & 0x000000FF); stream.writeByte((val >>> 16) & 0x000000FF); } // number of bytes in each row must be padded to multiple of 4 for (int i = 0; i < pad; i++) { stream.writeByte(0); } } byte[] out = bytes.toByteArray(); bytes.close(); // quick consistency check if (out.length != size) throw new RuntimeException("bad math"); return out; } /** * Swap the Endian-ness of a 32 bit integer. * * @param value * @return */ private static int swapEndian(int value) { int b1 = value & 0xff; int b2 = (value >> 8) & 0xff; int b3 = (value >> 16) & 0xff; int b4 = (value >> 24) & 0xff; return b1 << 24 | b2 << 16 | b3 << 8 | b4 << 0; } /** * Swap the Endian-ness of a 16 bit integer. * * @param value * @return */ private static short swapEndian(short value) { int b1 = value & 0xff; int b2 = (value >> 8) & 0xff; return (short) (b1 << 8 | b2 << 0); }

    Where an error in my code? Is there another way to do the same thing?

    Why you want to use a bmp image?
    You can just use png, jpg or whatever of the original image is.
    If there is a situation where you need the bitmap image call http://www.blackberry.com/developers/docs/7.1.0api/net/rim/device/api/system/EncodedImage.html#getBi...

  • get the Bitmap Image of the web site or remote location

    Hi, yesterday I asked for some ease of image horizontal scorlling with blackberry. It's work very well. Thank you for all.

    But I could not do my job. What I need, that I have to get the Image from a web site (not in the project of ths) and display it in the BB device. I can do this and I get byte array and show the image using BitmapField. But this installation of scrolling does not work with the bitmap field.

    Is is them possible to get my web site dynamic images of the Bitmap object?

    Here is the code that you sent me.

    // ------------------------------------------

    package com.falseflag.blackberry.recipes;

    Import net.rim.device.api.system.Bitmap;
    Import net.rim.device.api.ui.Graphics;
    Import net.rim.device.api.ui.UiApplication;
    Import net.rim.device.api.ui.component.Dialog;
    Import net.rim.device.api.ui.container.MainScreen;

    class ScrollingImageRecipe extends UiApplication {}

    private class ScrollingImageScreen extends form {}
    private static final int HORZ_SCROLL_FACTOR = 10;
    private static final int VERT_SCROLL_FACTOR = 10;

    Bitmap bitmap;
    int left = 0;
    high int = 0;
    int maxLeft = 0;
    maxTop int = 0;
           
    public ScrollingImageScreen() {}
    bitmap image = Bitmap.getBitmapResource ("test.png");
           
    If (bitmap == null) {}
    UiApplication.getUiApplication () .invokeLater (new Runnable() {}
    public void run() {}
    Dialog.Alert ("Failed to load image");
    System.Exit (0);
    }
    });
    return;
    }
               
    If (bitmap.getWidth () > Graphics.getScreenWidth ()) {}
    maxLeft = bitmap.getWidth () - Graphics.getScreenWidth ();
    }
               
    If (bitmap.getHeight () > Graphics.getScreenHeight ()) {}
    maxTop = bitmap.getHeight () - Graphics.getScreenHeight ();
    }
    }
           
    protected void paint (Graphics graphics) {}
    If (bitmap! = null) {}
    graphics.drawBitmap (0, 0, Graphics.getScreenWidth (), Graphics.getScreenHeight (),
    bitmap, left, top);
    }
    }
           
    protected boolean navigationMovement (int dx, int dy, int, int time status) {}
    left += (dx * HORZ_SCROLL_FACTOR);
    top += (dy * VERT_SCROLL_FACTOR);

    If (on the left< 0)="" left="">
    If (upper-< 0)="" top="">
    If (left > maxLeft) left = maxLeft;
    If (top > maxTop) top = maxTop;

    Invalidate();

    Returns true;
    }
    }

    Public Shared Sub main (String [] args) {}
    ScrollingImageRecipe app = new ScrollingImageRecipe();
    app.enterEventDispatcher ();
    }
       
    {ScrollingImageRecipe()}
    pushScreen (new ScrollingImageScreen());
    }

    }

    //-------------------------------

    Please be so kind to give me a solution for this issue.

    You can use a browserfield to display web content in your application.  Take a look at the browserfielddemo provided with the BlackBerry JDE for example

    If you ask how to connect to a web site, please see the httpdemo.

    This example shows how to create a scrolling image field.

    -Creates a scrolling Image field
    Article number: DB-00681

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800345/...

  • How to change the bitmap image in blackberry

    Hello

    1. work on the version of BB storm (9500/9530 Simulator) is v4.7.0.75
    2 opportunity BB JDE 4.7
    3. the request is:

    I display a bitmap image by using the drawBitmap method. now I want to select a portion of the bitmap, and then I need to cut & paste the part somewhere in the screen (MSPaint we have option 'Select').

    is there any method that will make the similar operation (or) any idea to accomplish this in blackberry.

    Thank you

    Sendhil Kumar V

    Take a look at this thread and refers to the J2ME code:

    http://supportforums.BlackBerry.com/Rim/Board/message?board.ID=java_dev&message.ID=24929

    The 'trick' is getARGB() and setARGB().  As long as you check out relevant Bitmap Moose ARGB values, you should be able to create a new Bitmap.  That said, I never did.  Let us know how you go.

  • No color for the Bitmap Images after upgrade

    I've updated to ID 2015.4 (Build 11.4.0.90) and now all my bitmap images that have a color not found in the documents. Export a PDF images work as expected. Overview of images of gray as expected.

    What is a change or a bug regarding bitmaps?

    This is a bug. The solution is to turn on view > overprint preview.

    Impossible to transparent color TIFF in InDesign

  • How can I clean the Bitmap Images imported

    Hi, I am using Flash 5. I have imported a .png image sequence and they look pretty rough and bitmap so I wanted to clean them.

    1. what I have to select each frame after import and adjust the settings of the bitmap for each image or I can doo this somewhere so it affects al images?

    2. I can't find the settings to clean up the bitmaps. I thought they would be in the Panel "Properties"?

    3. is it possible to set the pixelation or clean a .swf imported or is it better to clean the sequence before you save it as a .swf?

    Ideally, you should have images cleaned / correctly size / optimised before import you them into Flash.  Once they are in Flash, one thing that you can do that can help how the image appears, especially if manipulate you its size in Flash, is to set the image to allow smoothing.  This can be set using code or can be applied manually to the image in the library do a right-click, selecting Properties and by checking the option to allow smoothing.

  • Change the bitmap image, remove background in Flash CS4?

    HI people, I tried to slide in Photoshop, a layer with a transparent background, and image but it becomes white in Flash, so I imported the psd image. However, the black background interfere with the placement of the image. In OLD flash, there was formerly a magic wand and the ability to select areas of the bitmap and delete, but it seems that the feature is now missing or hidden in the new flash.  I transformed the image bitmap and I don't want to follow, because it's a picture. So, without tracking, how you change the image as I am doing?

    Thank you

    Jeff

    The magic wand is in the same place in CS4 (select Lasso, and then it is in the area of the toolbar options).

  • Problem by changing the Bitmap Image

    Hello

    I'm creating an application.
    I have a login screen, the details and the NewScreen.

    NewScreen contains three options, named A, B, and C.

    When I click on any of the option and the user is not connected so I first go to the login screen and after successful connection, I go to the screen details and when I press the back button I go back to NewScreen.

    Now what I want to when I press the back button and come to the NewScreen then image option B Gets the change. And the new image must be in the details page.

    So, I have to save the persistent memory image?

    The problem is solved...

  • Focus on the bitmap image in a HorizontalFieldManager

    Hello

    I have a bitmap in a HFM, I did focusable (bitmap).

    Problem is when the bitmap is concentrated, the HFM together in turn blue, as if she was herself focused.

    I try to put the bitmap in a value for money that I put in the HFM to limit the focus to the HFM, but it did not work.

    No idea how I can do?

    There is the code:

    HorizontalFieldManager imageHfm = new HorizontalFieldManager(Field.USE_ALL_WIDTH) { protected void paint(Graphics graphics) {        graphics.setBackgroundColor(0x000000);        graphics.clear();        super.paint(graphics);    }};VerticalFieldManager imageVfm = new VerticalFieldManager(Field.FIELD_RIGHT);        Bitmap loginButton = new Bitmap(Bitmap.getBitmapResource("login1.png"), DrawStyle.RIGHT) {            public boolean trackwheelClick(int status, int time) {                connectionWrapper();                return true;            }            };        imageVfm.add(loginButton);        imageHfm.add(imageVfm);
    

    Hello

    While the size of your equal to your bitmapField HorizontalFieldManager().

    You can do this way

    HorizontalFieldManager rowManager = new HorizontalFieldManager() {}
                     
    ' public void sublayout (int width, int height) {}
    Super.sublayout (LooknFeel.Width, bitmap.getBitmapResource("SignIn.png"). GetHeight());
    setExtent (LooknFeel.WIDTH, Bitmap.getBitmapResource("signin.png").getHeight ());
    }
                     
                     
    {} public void paint (Graphics g)
    g.setBackgroundColor (Color.BLACK);
    g.fillRect (0,0,LooknFeel.WIDTH,getHeight ());
    g.Clear ();
    Super.Paint (g);
    }
               
    };

    Here I had only set the height according to my bitmap, you must set the width and height.

    Please let me know if it solves your problem or not.

  • The bitmap image background

    I try hard not to ask how and try to learn, but I can't "createBitmapBackground" getting to work

    Could you be it someone please let me know what is missing it worked well for "createSolidBackground."

    Import net.rim.device.api.system.Bitmap;

    Import net.rim.device.api.ui.Color;

    Import net.rim.device.api.ui.Field;

    Import net.rim.device.api.ui.component.BitmapField;

    Import net.rim.device.api.ui.component.LabelField;

    Import net.rim.device.api.ui.container.MainScreen;

    Import net.rim.device.api.ui.container.VerticalFieldManager;

    Import net.rim.device.api.ui.decor.BackgroundFactory;

    public class Spare2Screen extends form {}

    public {Spare2Screen()}

    Manager of VerticalFieldManager = (VerticalFieldManager) getMainManager ();

    manager.setBackground (BackgroundFactory. createBitmapBackground("TEST File2 IMAGE.png"));

    Add (new LabelField "(alternative 2", Field.FIELD_HCENTER));

    }

    }

    See you soon!

    Remove the static code and place a bitmap as an argument to the method:

    manager.setBackground (BackgroundFactory.createBitmapBackground (Bitmap.getBitmapResource ("yourfilename.png"));

  • The interlaced images editing and get rid of the twitter

    Hi - my client has his images shot in an analog installation access by the public.  He wants me to edit images.  The studio exports the 4:3 of interlacing images.

    I did everything I could do to find a way to get rid of the twitter.  See below:

    twitter.jpg

    Here is a screenshot of the export settings:

    export.jpg

    When I read the images on my computer, twitter is not too bad, but when I downloaded a test YouTube clip, which is where all of his videos will be, twitter is very bad:

    http://www.YouTube.com/watch?v=axUs95_MEwI & feature = youtu.be

    So I'm to understand that.  I use Adobe Premiere CS4 to do this work.  Any help is appreciated.  Thank you.

    Wow it's great.

  • Resize the Bitmap image in the image control in flex3

    I'm loading an image in the image at the start control. Then I am a color transformation applying to this image and want to load this bitmap in flex3. That works, but automatic resizing does not work then. If I load another image, then AutoSize works well. Image control does not support resizing of the same bitmap object image?.

    Here is the part of the code:
    < mx:Image source = "{imgpath}" id = creationComplete = "imageCompleted ('MyImage'); "x ="20"y ="30"width ="365"height ="440"maintainAspectRatio = 'true '.
    / >
    private void applyColor(event:Event):void {}

    myBitmapDataObject = new BitmapData (myImage.height, true, myImage.width, 0x00CCCCCC);

    myBitmapDataObject.draw (myImage.content);
    myBitImage = new Bitmap (myBitmapDataObject);

    myBitmapDataObject.colorTransform (myBitmapDataObject.rect, new ColorTransform (1, 1, 1, 1, 39, 76, 135, 100));
    myImage.removeChildAt (0)
    myImage.load (myBitImage);


    }

    Any help is appreciated.

    You must create the BitmapData as the size of the original loaded image, not mx:Image height and width. Simply convert you / copy only a portion of the original size that matches the size of the Image. That is to say. whether you have a picture of 400 x 400 and your Image is 100 x 100. Your BitmapData is created at 100 x 100, NOT 400 x 400, you need to do. Everything simply because you resize the Image, does not mean that the underlying BitmapData is also resized.

    Also, in general, addChild would serve after removeChild, never used charge myself. Not sure if this is important.

  • Set the Bitmap image as wallpaper

    Hi guys, sorry pattées English goofy

    I have an image in my resources, and I want to add that the image as wallpaper. How to handle this.

    I tried with VerticalFieldManager and substitute the reproductives of paint... I can't get that

    your help is highly appreciated

    Thank you

    vinoopraj

    Please use HomeScreen.setBackgroundImage (Sring uri), but it is available on JDE4.7

  • Cannot read the events of the mouse on the bitmap image

    Hello, I'm loading jpg, but I can't read the events of the mouse over it. Here is my code. Thank you:

    var loader: Loader = new Loader();
    loader.contentLoaderInfo.addEventListener (Event.COMPLETE, imageLoadedListener);
    Loader.Load (new URLRequest ("testImage1.jpg"));

    function imageLoadedListener(e:Event) {}
    e.target.content.addEventListener (MouseEvent.MOUSE_UP, picClicked1);
    addChild (e.target.content);
    }

    function picClicked1(e:MouseEvent):void {}
    trace ("Clicked");
    }

    use your mouse on the loader listener. This is the interactive display object.

  • a label on the bitmap?

    Hey,.

    I want to show a Bitmap image and write 'in' this tag is there a chance with JDE 4.5?

    I tried with setPosition() of etiquette, but it do not act. Is the only chance to solve the problem, the bitmap as a background?

    Concerning

    Maja

    You can write directly on the bitmap image, using the graphics object. or you can place text on the same place as the bitmap using paint (directly on the screen)

Maybe you are looking for