summaryrefslogtreecommitdiff
path: root/test/image.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'test/image.cxx')
-rw-r--r--test/image.cxx24
1 files changed, 7 insertions, 17 deletions
diff --git a/test/image.cxx b/test/image.cxx
index 31205eb00..3a7baebbe 100644
--- a/test/image.cxx
+++ b/test/image.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: image.cxx,v 1.6.2.3.2.4 2001/11/24 02:46:19 easysw Exp $"
+// "$Id: image.cxx,v 1.6.2.3.2.5 2001/11/24 18:07:57 easysw Exp $"
//
// Fl_Image test program for the Fast Light Tool Kit (FLTK).
//
@@ -30,7 +30,7 @@
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Button.H>
-#include <FL/Fl_Shared_Image.H>
+#include <FL/Fl_Image.H>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
@@ -96,9 +96,9 @@ int arg(int argc, char **argv, int &i) {
}
int main(int argc, char **argv) {
+#ifndef WIN32
int i = 1;
-#ifndef WIN32
Fl::args(argc,argv,i,arg);
if (visid >= 0) {
@@ -123,21 +123,11 @@ int main(int argc, char **argv) {
window.color(FL_WHITE);
Fl_Button b(140,160,120,120,"Image w/Alpha"); ::b = &b;
- Fl_Image *rgb;
+ Fl_RGB_Image *rgb;
Fl_Image *dergb;
- if (argv[1]) {
- rgb = Fl_Shared_Image::get(argv[1]);
- if (rgb->w() > 100 || rgb->h() > 100) {
- if (rgb->w() > rgb->h()) rgb = rgb->copy(100, 100 * rgb->h() / rgb->w());
- else rgb = rgb->copy(100 * rgb->w() / rgb->h(), 100);
- }
- b.label(argv[1]);
- } else {
- make_image();
- rgb = new Fl_RGB_Image(image, width, height,4);
- }
-
+ make_image();
+ rgb = new Fl_RGB_Image(image, width, height,4);
dergb = rgb->copy();
dergb->inactive();
@@ -165,5 +155,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: image.cxx,v 1.6.2.3.2.4 2001/11/24 02:46:19 easysw Exp $".
+// End of "$Id: image.cxx,v 1.6.2.3.2.5 2001/11/24 18:07:57 easysw Exp $".
//