Garment Designer

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Rajani

    Garment Designer

    Hello,

    Ours is a garment factory. We want to design an application to generate
    and print the image on the plotter dynamically.
    Means, we give measurements like width, bust, neck, collor,
    sleeves(long/short), curvature bla bla. Can anyone give an idea how to do
    this? I want to use ASP.
    Not only ASP, if any other also i will learn and do. I dont know dotNET.
    Main thing is how can i generate image dynamically. My measurements are in
    inches. So when i print it should be printed directly on the plotter hooked
    to my system with the same measurements. The same will be given to cutting
    department to cut the cloth. If not any software is available for that to
    download for free?

    Thanks in advance
  • dlbjr

    #2
    Re: Garment Designer

    VB.NET or C#.NET is your easiest way to create dynamic graphics, then send to client using ASP.NET

    dlbjr
    Pleading sagacious indoctrination!


    Comment

    • Jeff Cochran

      #3
      Re: Garment Designer

      On Sat, 4 Sep 2004 02:29:04 -0700, Rajani
      <Rajani@discuss ions.microsoft. com> wrote:
      [color=blue]
      > Ours is a garment factory. We want to design an application to generate
      >and print the image on the plotter dynamically.
      >Means, we give measurements like width, bust, neck, collor,
      >sleeves(long/short), curvature bla bla. Can anyone give an idea how to do
      >this? I want to use ASP.[/color]

      You can't. ASP doesn't drive a plotter.

      Jeff

      Comment

      • Chris Hohmann

        #4
        Re: Garment Designer

        "Jeff Cochran" <jeff.nospam@zi na.com> wrote in message
        news:413f5ca8.1 113238292@msnew s.microsoft.com ...[color=blue]
        > On Sat, 4 Sep 2004 02:29:04 -0700, Rajani
        > <Rajani@discuss ions.microsoft. com> wrote:
        >[color=green]
        > > Ours is a garment factory. We want to design an application to generate
        > >and print the image on the plotter dynamically.
        > >Means, we give measurements like width, bust, neck, collor,
        > >sleeves(long/short), curvature bla bla. Can anyone give an idea how to do
        > >this? I want to use ASP.[/color]
        >
        > You can't. ASP doesn't drive a plotter.
        >
        > Jeff[/color]

        Dim sk, thread, gp
        Set sk = CreateObject("S ewing.Kit")
        With sw
        .Open
        thread = .GetString()
        .Close
        End With
        Set sk = Nothing

        Set gp = CreateObject("G arment.Plotter" )
        With gp
        .Load thread
        Do While Not thread.EOS
        .PerlOne
        .KnitTwo
        Loop
        .Unload
        thread.Close
        End With
        Set gp = Nothing


        Comment

        Working...