Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by vadg

  1. vadg

    Problems reading image file

    You're correct. I tried it with a gif file I'd created with GD::Graph and it works. Didn't realize there were different types of GIF formats.
  2. vadg

    Problems reading image file

    The image is sitting in the same folder as the program. It's finding it but can't read it. Also, the image is the same format as my output image and,of course, that image is printed. I'm also 'using' GD and GD::Graph...
  3. vadg

    Problems reading image file

    Trying to add a logo to my GD::GRaph files using $graph->set(logo => 'image.gif'); #$graph->set(logo_resize => 0.5); $graph->set(logo_position => 'LL'); response is "Problems reading image.gif at ...." any ideas what the problem might be?
  4. vadg

    combine GIFs into a single file

    Thanks Let me see if I can make this work
  5. vadg

    combine GIFs into a single file

    I'm still interested in this. You describe what I want to do. I have x number of GIFS, all the same length/width in pixels and want to combine them all into a larger file that retains their original size. Where are the read and copy commands your refer to in GD::GRAPH? I'm looking at some...
  6. vadg

    sprintF

    assuming integer and decimal values if I use sprintF to limit the number of decimals my integers are displayed as decimals (2.00, e.g) any way to limit sprintF's use and exclude integers?
  7. vadg

    combine GIFs into a single file

    I don't know? why wouldn't it be?
  8. vadg

    combine GIFs into a single file

    Using GD::GRAPH to pump out some GIF files. Is there any way to combine these individual files into a single (larger, multi-page) Gif file?
  9. vadg

    For and If issues

    Been trying to figure this out and have had no luck with other forums. here's the code: use GD::Graph::linespoints; my $data_file = "ChartdataMYBUG.txt"; open DATA, "$data_file" or die "can't open $data_file $!"; undef $/; $_ = <DATA>; close DATA; $/ = "\n"; my @data = ([1,2,3]...

Part and Inventory Search

Back
Top