Resizing jpg?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • D & J Gilchrist

    #1

    Resizing jpg?

    Has anyone here had success with resizing .jpg graphics in VB5? I would
    like to convert .jpg files so that they will all display the same height.
    TIA
    Don


  • xyz

    #2
    Resizing jpg?

    On Sun, 28 Sep 2003 03:42:36 +1000, "D & J Gilchrist"
    <donandjane@opt usnet.com.au> wrote:
    [color=blue]
    >Has anyone here had success with resizing .jpg graphics in VB5? I would
    >like to convert .jpg files so that they will all display the same height.
    >TIA
    >Don
    >[/color]
    =========

    You may want to try setting the AutoSize attribute of the picture to
    True.


    Comment

    • D & J Gilchrist

      #3
      Re: Resizing jpg?

      Thanks, xyz, but I need to re-write the picture back to disk in the new
      size.
      Don

      "xyz" <xyz@mailinator .com> wrote in message
      news:icvbnv4300 8285dlru8iv5noc 7icl5gnf4@4ax.c om...[color=blue]
      > On Sun, 28 Sep 2003 03:42:36 +1000, "D & J Gilchrist"
      > <donandjane@opt usnet.com.au> wrote:
      >[color=green]
      > >Has anyone here had success with resizing .jpg graphics in VB5? I would
      > >like to convert .jpg files so that they will all display the same height.
      > >TIA
      > >Don
      > >[/color]
      > =========
      >
      > You may want to try setting the AutoSize attribute of the picture to
      > True.
      >
      >[/color]


      Comment

      • xyz

        #4
        Resizing jpg?

        To store the picture back you need to hava a library subroutine that
        will perform the JPG transformation. You can start at



        They have some links that will eventually take you to the Windows
        development section that has a lot of shareware for resizing JPEGs

        http://www.faqs.org/faqs/jpeg-faq/part2/section-6.html

        good luck.

        xyz
        ===========

        On Sun, 28 Sep 2003 08:32:50 +1000, "D & J Gilchrist"
        <donandjane@opt usnet.com.au> wrote:
        [color=blue]
        >Thanks, xyz, but I need to re-write the picture back to disk in the new
        >size.
        >Don
        >
        >"xyz" <xyz@mailinator .com> wrote in message
        >news:icvbnv430 08285dlru8iv5no c7icl5gnf4@4ax. com...[color=green]
        >> On Sun, 28 Sep 2003 03:42:36 +1000, "D & J Gilchrist"
        >> <donandjane@opt usnet.com.au> wrote:
        >>[color=darkred]
        >> >Has anyone here had success with resizing .jpg graphics in VB5? I would
        >> >like to convert .jpg files so that they will all display the same height.
        >> >TIA
        >> >Don
        >> >[/color]
        >> =========
        >>
        >> You may want to try setting the AutoSize attribute of the picture to
        >> True.
        >>
        >>[/color]
        >[/color]

        Comment

        • J French

          #5
          Re: Resizing jpg?

          You load a JPG

          You view a Bitmap - you resize a Bitmap

          You save ... well something different - if you wish

          To save a JPG



          On Sun, 28 Sep 2003 08:32:50 +1000, "D & J Gilchrist"
          <donandjane@opt usnet.com.au> wrote:
          [color=blue]
          >Thanks, xyz, but I need to re-write the picture back to disk in the new
          >size.
          >Don
          >
          >"xyz" <xyz@mailinator .com> wrote in message
          >news:icvbnv430 08285dlru8iv5no c7icl5gnf4@4ax. com...[color=green]
          >> On Sun, 28 Sep 2003 03:42:36 +1000, "D & J Gilchrist"
          >> <donandjane@opt usnet.com.au> wrote:
          >>[color=darkred]
          >> >Has anyone here had success with resizing .jpg graphics in VB5? I would
          >> >like to convert .jpg files so that they will all display the same height.
          >> >TIA
          >> >Don
          >> >[/color]
          >> =========
          >>
          >> You may want to try setting the AutoSize attribute of the picture to
          >> True.
          >>
          >>[/color]
          >
          >[/color]

          Comment

          Working...