Convert text to image

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default Convert text to image

    I need to be able to manipulate text (that was inputted by the user into a text - or field member) as if it was an image. Can you somehow turn a text member into a bitmap or other type of image.


    Simon Pinn webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. how to convert pdf to image
      hi guys, im new to this forum..how do i convert pdf to image. i have used ghost scripts and it works fine..but it gives a white border around the...
    2. Convert to vector image (from an image)
      Hi. I am trying to convert some simple (2 color) .jpg images into vector based drawings using freehand 10. I cannot seem to do it. Any ideas? ...
    3. convert to pdf or image from html/asp
      hi everyone, i am using win2k server and asp i am trying to convert html to pdf or image instantly on my web site. desperately, i am using web...
    4. rasterize/path text/convert text to art
      I need to be able to convert text to art or path my text for HTML newsletters I build in another program. Anyone? I have been creating text boxes...
    5. Convert slides to image
      IS there a decent device on the market for the home users to convert slides to image files. Thanks John'
  3. #2

    Default Re: Convert text to image

    Your lucky day. This uses a text cast member not a field. Just change the
    optional items to suit your needs.

    on CreateText
    textMemberImage = member (someTextMemberNum, optionalcastnameornum).image
    newImg = image (textMemberImage.rect.width, textMemberImage.rect.height,
    32)
    newColor = member (someBitMapMemberNum, optionalCastNameOrNum).color -- or
    this can just be an RGB value
    newImg.fill (textMemberImage.rect, newColor)
    newImg.setAlpha (textMemberImage.extractAlpha ())
    newImg.useAlpha = 1
    mem = new (#bitmap, member (someBlankMemberNum, optionalCastNameOrNum))
    mem.image = newImg
    mem.name = "give the member a name here"
    end


    --
    Craig Wollman
    Word of Mouth Productions
    phone 212 724 8302
    fax 212 724 8151
    [url]www.wordofmouthpros.com[/url]


    "Simon Pinn" <webforumsuser@macromedia.com> wrote in message
    news:bp0j2r$2sd$1@forums.macromedia.com...
    > I need to be able to manipulate text (that was inputted by the user into a
    text - or field member) as if it was an image. Can you somehow turn a text
    member into a bitmap or other type of image.
    >
    >

    Word of Mouth Productions Guest

  4. #3

    Default Convert text to image

    Hi, this is a long shoot!

    I need to get text posted from a webpage to a image.
    The text needs to be displayed with fonts that I can't use in a webpage.

    This is to be used submitting textadds from the web, later to be published
    in a newspaper.
    The image it self will not be published, I need it to calculate the price
    for the add.
    There for I need it with the fonts used in the newspaper.

    Don't now if this is the right group!

    Thanks!
    Magnus


    Magnus Guest

  5. #4

    Default Re: Convert text to image

    [url]http://www.aspfaq.com/5003[/url]

    Ray at home

    "Magnus" <magnus@albindata.com> wrote in message
    news:e$FncldQEHA.640@TK2MSFTNGP09.phx.gbl...
    > Hi, this is a long shoot!
    >
    > I need to get text posted from a webpage to a image.
    > The text needs to be displayed with fonts that I can't use in a webpage.
    >
    > This is to be used submitting textadds from the web, later to be published
    > in a newspaper.
    > The image it self will not be published, I need it to calculate the price
    > for the add.
    > There for I need it with the fonts used in the newspaper.
    >
    > Don't now if this is the right group!
    >
    > Thanks!
    > Magnus
    >
    >

    Ray at Guest

  6. #5

    Default Re: Convert text to image


    "Magnus" <magnus@albindata.com> wrote in message
    news:e$FncldQEHA.640@TK2MSFTNGP09.phx.gbl...
    > Hi, this is a long shoot!
    >
    > I need to get text posted from a webpage to a image.
    > The text needs to be displayed with fonts that I can't use in a webpage.
    >
    > This is to be used submitting textadds from the web, later to be published
    > in a newspaper.
    > The image it self will not be published, I need it to calculate the price
    > for the add.
    > There for I need it with the fonts used in the newspaper.
    >
    You could take a look at our zImage, wich can be found on our homepage at
    [url]http://www.zieglersoft.dk[/url] or [url]http://www.zieglersoft.com[/url]

    It will let you do this and a lot more


    --

    Claus Ziegler / ZieglerSoft

    [email]claus@zieglersoft.dk[/email] [url]news://news.zieglersoft.dk[/url]
    [url]http://www.zieglersoft.dk[/url]


    Claus Ziegler Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139