Nieuws:

Welkom, Gast. Alsjeblieft inloggen of registreren.
Heb je de activerings-mail niet ontvangen?

Auteur Topic: Een speciale Image Batch-Resize (Help please :))  (gelezen 6119 keer)

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Gepost op: 2007/08/14, 19:04:00 »
Beste mensen,

Ik ben bezig om duizenden afbeeldingen van de raarste formaten netjes in 400x400px afbeeldingen te zetten voor een online assortiment database (producten afbeeldingen dus). Tot nu toe doe ik dit allemaal met de hand in Photoshop op mijn iBook.
Ik ontvang de meest vreemde formaten van aangeleverde afbeeldingen van mijn collega's zoals:

1024x1600
967x432
679x890

Dit betekend dus verschillende afbeeldingen waar de ene keer de hoogte een hogere waarde is en de andere keer de breedte.

Nu zoek ik naar een programma of iemand die een GIMP-Batch script weet om (zoveel afbeeldingen als ik maar wil) uit een map alle afbeeldingen om te zetten naar 400x400 maar dat de verhouding van de afbeeldingen wel goed blijft. De achtergrond moet wit zijn.

Voorbeeld:



Het oude orgineel van deze foto was een massief grote TIFF waarvan de hoogte de hogere waarde was in dit geval.



Hier was het oude orgineel in de breedte een hogere waarde.


De script (of programma) zou dit dus ook moeten kunnen herkennen. Dat het dus stopt met in verhouding resizen als de hoogste waarde (breedte of hoogte) als eerste de 400px raakt.


Ik hoop dat het een beetje duidelijk is.


Bij voorbaat dank :)

Offline Pjotr

  • Lid
    • Makkelijke Linuxtips
Een speciale Image Batch-Resize (Help please :))
« Reactie #1 Gepost op: 2007/08/14, 19:06:54 »
Toepassingen - Grafisch - gThumb afbeeldingsweergave
selecteer de te herschalen afbeeldingen (desnoods allemaal, met ctrl-a)
werkbalk: Extra - Scale images

Offline Rulus

  • Lid
Een speciale Image Batch-Resize (Help please :))
« Reactie #2 Gepost op: 2007/08/14, 19:21:37 »
Dat is typisch iets om te doen met imagemagick. Installeer imagemagick, daarna kan je met het commando 'mogrify -resize 400x400 -quality 100 *' je afbeeldingen herschalen (hij herschaalt tot de afbeelding binnen het 400x400 kader past, de verhouding blijft juist). Let wel op (!): hij overschrijft de originelen, dus desgewenst eerst een kopietje maken.

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Reactie #3 Gepost op: 2007/08/14, 21:09:40 »
De gThumb had ik al geprobeerd en resulteert helaas in een gewone resize en krijg ik geen witruimte in de resterende ruimte tot de andere 400pixels.
De ImageMagick script werkt helaas ook niet. Krijg ook een witruimte-loze resize waar hij gewoon maar een dimensie 400pixels maakt.

mogrify -resize 400x400 -quality 100 *Misschien is de "white-treshold" commando iets wat de overige witruimte kan creëren? Ik weet alleen niet precies hoe ik die waarde moet toepassen, want ik krijg alleen maar foutieve invoer feedback.

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Reactie #4 Gepost op: 2007/08/14, 21:13:34 »
-extent widthxheight

set the image size. The pixels scale or location do not change. If the image is enlarged, unfilled areas are set to to the background color.

See -resize for details about the geometry specification.
Is dit misschien nuttigs en dan met  "-undercolor" ?

Offline vanadium

  • Lid
Een speciale Image Batch-Resize (Help please :))
« Reactie #5 Gepost op: 2007/08/15, 17:39:54 »
Ik denk aan composite. Je maakt box.png, een 400x400 witte rechthoek. Dan kan je daar met composite een figuur overheen zetten. De merde met Linux is dat het allemaal kan, maar je moet het maar weten te vinden. Het volgende commando doet wat je wil:

composite -compose atop -gravity Center resized.png box.png test.png

resized.png is je figuur, geresized naar max 400. Dit kan met:

convert figin.png -resize 400x400 resized.png

...en dan is het aan de guru's om dit te stroomlijnen in één enkel commando (met pipes enzo) of in een sexy scriptje. Gewone mensen komen al een eindje met het for commando:

for f in *.png ; do convert $f -resize 400x400 resized_$f ; done
for f in resized* ; do composite -compose atop -gravity Center $f box.png final_$f ; done

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Reactie #6 Gepost op: 2007/08/16, 09:21:34 »
Het is gelukt!

Mijn dank is groot :)

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Reactie #7 Gepost op: 2007/08/16, 12:24:56 »
Ik heb ook nog een andere manier gevonden met een plug-in voor The GIMP, maar hij moet compiled worden en dat lukt me helaas niet.. Dit is mijn output na de "make" (heb g++ en gimp dev package geïnstalleerd):

erwin@Ubuntu:~/.gimp-2.2/plug-ins/dbp-1.1.7$ make
Package gimpui-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gimpui-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gimpui-2.0' found
g++ -o dbp -Wall -O2 -I. *.cc  -DGTK_DISABLE_DEPRECATED  
In bestand ingevoegd door dbp.cc:66:
gui.h:23:21: fout: gtk/gtk.h: Bestand of map bestaat niet
In bestand ingevoegd door op.h:26,
                 door gui.h:26,
                 door dbp.cc:66:
gimpCall.h:25:26: fout: libgimp/gimp.h: Bestand of map bestaat niet
gimpCall.h:26:28: fout: libgimp/gimpui.h: Bestand of map bestaat niet
gimpCall.h:47: fout: expected ‘,’ or ‘...’ before ‘&’ token
gimpCall.h:47: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.h:47: fout: ‘GimpCall& GimpCall::param(int)’ cannot be overloaded
gimpCall.h:39: fout: with ‘GimpCall& GimpCall::param(int)’
gimpCall.h:56: fout: ‘GimpParam’ has not been declared
gimpCall.h:62: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.h:62: fout: expected ‘;’ before ‘*’ token
gimpCall.h:64: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.h:64: fout: expected ‘;’ before ‘*’ token
op.h:184: fout: ‘GimpParam’ does not name a type
gui.h:36: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:36: fout: expected ‘;’ before ‘*’ token
gui.h:37: fout: ‘GtkWidget’ has not been declared
gui.h:37: fout: ‘GtkWidget’ has not been declared
gui.h:41: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:41: fout: expected ‘;’ before ‘*’ token
gui.h:50: fout: expected `)' before ‘*’ token
gui.h:53: fout: ‘GtkObject’ has not been declared
gui.h:60: fout: expected `)' before ‘*’ token
gui.h:68: fout: expected constructor, destructor, or type conversion before ‘(’ token
gui.h:82: fout: template declaration of ‘Dbp::GtkCBBase* Dbp::gtkSignal’
gui.h:82: fout: ‘GtkObject’ was not declared in this scope
gui.h:82: fout: ‘object’ was not declared in this scope
gui.h:82: fout: expected primary-expression before ‘const’
gui.h:82: fout: ‘fn’ was not declared in this scope
gui.h:82: fout: expected primary-expression before ‘void’
gui.h:82: fout: expected primary-expression before ‘*’ token
gui.h:82: fout: ‘owner’ was not declared in this scope
gui.h:87: fout: template declaration of ‘Dbp::GtkCBBase* Dbp::gtkSignal’
gui.h:87: fout: ‘GtkWidget’ was not declared in this scope
gui.h:87: fout: ‘object’ was not declared in this scope
gui.h:87: fout: expected primary-expression before ‘const’
gui.h:87: fout: ‘fn’ was not declared in this scope
gui.h:87: fout: expected primary-expression before ‘void’
gui.h:87: fout: expected primary-expression before ‘*’ token
gui.h:87: fout: ‘owner’ was not declared in this scope
gui.h:99: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:99: fout: expected ‘;’ before ‘*’ token
gui.h:103: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:103: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:103: fout: expected ‘;’ before ‘*’ token
gui.h:107: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:107: fout: expected ‘;’ before ‘*’ token
gui.h:109: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:109: fout: expected ‘;’ before ‘*’ token
gui.h:111: fout: ISO C++ forbids declaration of ‘GtkObject’ with no type
gui.h:111: fout: expected ‘;’ before ‘*’ token
gui.h:113: fout: ISO C++ forbids declaration of ‘GtkObject’ with no type
gui.h:113: fout: expected ‘;’ before ‘*’ token
gui.h:119: fout: ‘GtkWidget’ has not been declared
gui.h:120: fout: ‘GtkWidget’ has not been declared
gui.h:122: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:122: fout: expected ‘;’ before ‘*’ token
gui.h:123: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:123: fout: expected ‘;’ before ‘*’ token
gui.h:124: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:124: fout: expected ‘;’ before ‘*’ token
gui.h:125: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:125: fout: expected ‘;’ before ‘*’ token
gui.h:126: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:126: fout: expected ‘;’ before ‘*’ token
gui.h:127: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:127: fout: expected ‘;’ before ‘*’ token
gui.h:133: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:133: fout: expected ‘;’ before ‘*’ token
gui.h:137: fout: ‘GtkWidget’ has not been declared
gui.h:138: fout: ‘GtkWidget’ has not been declared
gui.h:139: fout: ‘GtkObject’ has not been declared
gui.h:140: fout: ‘GtkObject’ has not been declared
gui.h:141: fout: ‘GtkObject’ has not been declared
gui.h:143: fout: ‘GtkWidget’ has not been declared
gui.h:150: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:150: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:150: fout: expected ‘;’ before ‘*’ token
gui.h:154: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:154: fout: expected ‘;’ before ‘*’ token
gui.h:155: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:155: fout: expected ‘;’ before ‘*’ token
gui.h:156: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:156: fout: expected ‘;’ before ‘*’ token
gui.h:157: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:157: fout: expected ‘;’ before ‘*’ token
gui.h:158: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:158: fout: expected ‘;’ before ‘*’ token
gui.h:160: fout: ISO C++ forbids declaration of ‘GtkListStore’ with no type
gui.h:160: fout: expected ‘;’ before ‘*’ token
gui.h:168: fout: ‘GtkTreeModel’ has not been declared
gui.h:168: fout: ‘GtkTreePath’ has not been declared
gui.h:168: fout: ‘GtkTreeIter’ has not been declared
gui.h:168: fout: ‘gpointer’ has not been declared
gui.h:176: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:176: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:176: fout: expected ‘;’ before ‘*’ token
gui.h:180: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:180: fout: expected ‘;’ before ‘*’ token
gui.h:187: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:187: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:187: fout: expected ‘;’ before ‘*’ token
gui.h:190: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:190: fout: expected ‘;’ before ‘*’ token
gui.h:197: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:197: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:197: fout: expected ‘;’ before ‘*’ token
gui.h:200: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:200: fout: expected ‘;’ before ‘*’ token
gui.h:201: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:201: fout: expected ‘;’ before ‘*’ token
gui.h:202: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:202: fout: expected ‘;’ before ‘*’ token
gui.h:203: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:203: fout: expected ‘;’ before ‘*’ token
gui.h:205: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:205: fout: expected ‘;’ before ‘*’ token
gui.h:212: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:212: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:212: fout: expected ‘;’ before ‘*’ token
gui.h:216: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:216: fout: expected ‘;’ before ‘*’ token
gui.h:217: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:217: fout: expected ‘;’ before ‘*’ token
gui.h:221: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:221: fout: expected ‘;’ before ‘*’ token
gui.h:222: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:222: fout: expected ‘;’ before ‘*’ token
gui.h:223: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:223: fout: expected ‘;’ before ‘*’ token
gui.h:224: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:224: fout: expected ‘;’ before ‘*’ token
gui.h:225: fout: ISO C++ forbids declaration of ‘GtkObject’ with no type
gui.h:225: fout: expected ‘;’ before ‘*’ token
gui.h:226: fout: ISO C++ forbids declaration of ‘GtkObject’ with no type
gui.h:226: fout: expected ‘;’ before ‘*’ token
gui.h:227: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:227: fout: expected ‘;’ before ‘*’ token
gui.h:228: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:228: fout: expected ‘;’ before ‘*’ token
gui.h:229: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:229: fout: expected ‘;’ before ‘*’ token
gui.h:230: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:230: fout: expected ‘;’ before ‘*’ token
gui.h:246: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:246: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:246: fout: expected ‘;’ before ‘*’ token
gui.h:249: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:249: fout: expected ‘;’ before ‘*’ token
gui.h:256: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:256: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:256: fout: expected ‘;’ before ‘*’ token
gui.h:259: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:259: fout: expected ‘;’ before ‘*’ token
gui.h:266: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:266: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:266: fout: expected ‘;’ before ‘*’ token
gui.h:272: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:272: fout: expected ‘;’ before ‘*’ token
gui.h:273: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:273: fout: expected ‘;’ before ‘*’ token
gui.h:274: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:274: fout: expected ‘;’ before ‘*’ token
gui.h:275: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:275: fout: expected ‘;’ before ‘*’ token
gui.h:276: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:276: fout: expected ‘;’ before ‘*’ token
gui.h:296: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:296: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:296: fout: expected ‘;’ before ‘*’ token
gui.h:301: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:301: fout: expected ‘;’ before ‘*’ token
gui.h:302: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:302: fout: expected ‘;’ before ‘*’ token
gui.h:317: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:317: fout: expected ‘;’ before ‘*’ token
gui.h:328: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:328: fout: expected ‘;’ before ‘*’ token
gui.h:329: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:329: fout: expected ‘;’ before ‘*’ token
gui.h:330: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:330: fout: expected ‘;’ before ‘*’ token
gui.h:331: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:331: fout: expected ‘;’ before ‘*’ token
gui.h:332: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:332: fout: expected ‘;’ before ‘*’ token
gui.h:333: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:333: fout: expected ‘;’ before ‘*’ token
gui.h:334: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:334: fout: expected ‘;’ before ‘*’ token
gui.h:336: fout: ‘gint’ does not name a type
gui.h:353: fout: ‘gboolean’ does not name a type
gui.h:354: fout: expected ‘,’ or ‘...’ before ‘*’ token
gui.h:354: fout: ISO C++ forbids declaration of ‘gchar’ with no type
gui.h:355: fout: ‘gpointer’ has not been declared
gui.h:356: fout: expected ‘,’ or ‘...’ before ‘*’ token
gui.h:356: fout: ISO C++ forbids declaration of ‘gchar’ with no type
gui.h:357: fout: ‘gdouble’ has not been declared
gui.h:357: fout: ‘gpointer’ has not been declared
dbp.cc:72: fout: expected ‘,’ or ‘...’ before ‘*’ token
dbp.cc:72: fout: ISO C++ forbids declaration of ‘gchar’ with no type
dbp.cc:75: fout: ‘GimpPlugInInfo’ does not name a type
dbp.cc:80: fout: expected constructor, destructor, or type conversion before ‘static’
dbp.cc:102: fout: expected ‘,’ or ‘...’ before ‘*’ token
dbp.cc:106: fout: ISO C++ forbids declaration of ‘gchar’ with no type
dbp.cc: In function ‘void run(int)’:
dbp.cc:108: fout: ‘GimpParam’ was not declared in this scope
dbp.cc:108: fout: expected `;' before ‘values’
dbp.cc:110: fout: ‘return_vals’ was not declared in this scope
dbp.cc:110: fout: ‘values’ was not declared in this scope
dbp.cc:111: fout: ‘nreturn_vals’ was not declared in this scope
dbp.cc:112: fout: ‘GIMP_PDB_STATUS’ was not declared in this scope
dbp.cc:113: fout: ‘GIMP_PDB_SUCCESS’ was not declared in this scope
dbp.cc:115: fout: ‘GimpRunMode’ was not declared in this scope
dbp.cc:115: fout: expected `;' before ‘run_mode’
dbp.cc:116: fout: ‘run_mode’ was not declared in this scope
dbp.cc:117: fout: ‘GIMP_RUN_INTERACTIVE’ was not declared in this scope
dbp.cc:118: fout: ‘GIMP_RUN_WITH_LAST_VALS’ was not declared in this scope
dbp.cc:122: fout: ‘GIMP_RUN_NONINTERACTIVE’ was not declared in this scope
dbp.cc:124: fout: ‘GIMP_PDB_CALLING_ERROR’ was not declared in this scope
dbp.cc: In function ‘void dbp()’:
dbp.cc:136: fout: ‘gchar’ was not declared in this scope
dbp.cc:136: fout: ‘argv’ was not declared in this scope
dbp.cc:136: fout: expected primary-expression before ‘,’ token
dbp.cc:136: fout: ‘g_new’ was not declared in this scope
dbp.cc:137: fout: ‘g_strdup’ was not declared in this scope
dbp.cc:138: fout: ‘gtk_init’ was not declared in this scope
dbp.cc:139: fout: ‘gimp_gtkrc’ was not declared in this scope
dbp.cc:139: fout: ‘gtk_rc_parse’ was not declared in this scope
dbp.cc:143: fout: ‘class Dbp::DbpGui’ has no member named ‘build’
dbp.cc:144: fout: ‘gimp_extension_ack’ was not declared in this scope
dbp.cc: At global scope:
dbp.cc:71: let op: ‘void query()’ declared ‘static’ but never defined
dbp.cc:106: let op: ‘void run(int)’ defined but not used
In bestand ingevoegd door gimpCall.cc:20:
gimpCall.h:25:26: fout: libgimp/gimp.h: Bestand of map bestaat niet
gimpCall.h:26:28: fout: libgimp/gimpui.h: Bestand of map bestaat niet
gimpCall.h:47: fout: expected ‘,’ or ‘...’ before ‘&’ token
gimpCall.h:47: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.h:47: fout: ‘GimpCall& GimpCall::param(int)’ cannot be overloaded
gimpCall.h:39: fout: with ‘GimpCall& GimpCall::param(int)’
gimpCall.h:56: fout: ‘GimpParam’ has not been declared
gimpCall.h:62: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.h:62: fout: expected ‘;’ before ‘*’ token
gimpCall.h:64: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.h:64: fout: expected ‘;’ before ‘*’ token
gimpCall.cc: In constructor ‘GimpCall::GimpCall(std::string)’:
gimpCall.cc:27: fout: class ‘GimpCall’ does not have any field named ‘_returns’
gimpCall.cc:31: fout: ‘_params’ was not declared in this scope
gimpCall.cc:31: fout: expected type-specifier before ‘GimpParam’
gimpCall.cc:31: fout: expected `;' before ‘GimpParam’
gimpCall.cc: In destructor ‘GimpCall::~GimpCall()’:
gimpCall.cc:36: fout: ‘_returns’ was not declared in this scope
gimpCall.cc:36: fout: ‘gimp_destroy_params’ was not declared in this scope
gimpCall.cc:37: fout: ‘_params’ was not declared in this scope
gimpCall.cc: In member function ‘GimpCall& GimpCall::param(bool)’:
gimpCall.cc:43: fout: ‘_params’ was not declared in this scope
gimpCall.cc:43: fout: ‘GIMP_PDB_INT32’ was not declared in this scope
gimpCall.cc: In member function ‘GimpCall& GimpCall::param(int)’:
gimpCall.cc:53: fout: ‘_params’ was not declared in this scope
gimpCall.cc:53: fout: ‘GIMP_PDB_INT32’ was not declared in this scope
gimpCall.cc: In member function ‘GimpCall& GimpCall::param(float)’:
gimpCall.cc:63: fout: ‘_params’ was not declared in this scope
gimpCall.cc:63: fout: ‘GIMP_PDB_FLOAT’ was not declared in this scope
gimpCall.cc: In member function ‘GimpCall& GimpCall::param(const std::string&)’:
gimpCall.cc:73: fout: ‘_params’ was not declared in this scope
gimpCall.cc:73: fout: ‘GIMP_PDB_STRING’ was not declared in this scope
gimpCall.cc:74: fout: expected type-specifier before ‘gchar’
gimpCall.cc:74: fout: expected `>' before ‘gchar’
gimpCall.cc:74: fout: expected `(' before ‘gchar’
gimpCall.cc:74: fout: ‘gchar’ was not declared in this scope
gimpCall.cc:74: fout: expected primary-expression before ‘>’ token
gimpCall.cc:74: fout: expected `)' before ‘;’ token
gimpCall.cc: In member function ‘GimpCall& GimpCall::imageParam(int)’:
gimpCall.cc:83: fout: ‘_params’ was not declared in this scope
gimpCall.cc:83: fout: ‘GIMP_PDB_IMAGE’ was not declared in this scope
gimpCall.cc: In member function ‘GimpCall& GimpCall::drawableParam(int)’:
gimpCall.cc:93: fout: ‘_params’ was not declared in this scope
gimpCall.cc:93: fout: ‘GIMP_PDB_DRAWABLE’ was not declared in this scope
gimpCall.cc: In member function ‘GimpCall& GimpCall::layerParam(int)’:
gimpCall.cc:103: fout: ‘_params’ was not declared in this scope
gimpCall.cc:103: fout: ‘GIMP_PDB_LAYER’ was not declared in this scope
gimpCall.cc: In member function ‘GimpCall& GimpCall::displayParam(int)’:
gimpCall.cc:113: fout: ‘_params’ was not declared in this scope
gimpCall.cc:113: fout: ‘GIMP_PDB_DISPLAY’ was not declared in this scope
gimpCall.cc: At global scope:
gimpCall.cc:135: fout: expected ‘,’ or ‘...’ before ‘&’ token
gimpCall.cc:135: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.cc:135: fout: redefinition of ‘GimpCall& GimpCall::param(int)’
gimpCall.cc:51: fout: ‘GimpCall& GimpCall::param(int)’ previously defined here
gimpCall.cc: In member function ‘GimpCall& GimpCall::param(int)’:
gimpCall.cc:137: fout: ‘_params’ was not declared in this scope
gimpCall.cc:137: fout: ‘((GimpCall*)this)->GimpCall::param’ does not have class type
gimpCall.cc:138: fout: ‘((GimpCall*)this)->GimpCall::param’ does not have class type
gimpCall.cc: In member function ‘const GimpCall& GimpCall::execute(bool&)’:
gimpCall.cc:150: fout: ‘_returns’ was not declared in this scope
gimpCall.cc:151: fout: expected type-specifier before ‘gchar’
gimpCall.cc:151: fout: expected `>' before ‘gchar’
gimpCall.cc:151: fout: expected `(' before ‘gchar’
gimpCall.cc:151: fout: ‘gchar’ was not declared in this scope
gimpCall.cc:151: fout: expected primary-expression before ‘>’ token
gimpCall.cc:152: fout: ‘_params’ was not declared in this scope
gimpCall.cc:160: fout: ‘GIMP_PDB_STATUS’ was not declared in this scope
gimpCall.cc:161: fout: ‘GIMP_PDB_SUCCESS’ was not declared in this scope
gimpCall.cc: In member function ‘const GimpCall& GimpCall::intReturn(int&) const’:
gimpCall.cc:169: fout: ‘_returns’ was not declared in this scope
gimpCall.cc:171: fout: ‘GIMP_PDB_INT32’ was not declared in this scope
gimpCall.cc: In member function ‘const GimpCall& GimpCall::intArrayReturn(int*&) const’:
gimpCall.cc:180: fout: ‘_returns’ was not declared in this scope
gimpCall.cc:182: fout: ‘GIMP_PDB_INT32ARRAY’ was not declared in this scope
gimpCall.cc: In member function ‘const GimpCall& GimpCall::displayReturn(int&) const’:
gimpCall.cc:191: fout: ‘_returns’ was not declared in this scope
gimpCall.cc:193: fout: ‘GIMP_PDB_DISPLAY’ was not declared in this scope
gimpCall.cc: In member function ‘const GimpCall& GimpCall::imageReturn(int&) const’:
gimpCall.cc:202: fout: ‘_returns’ was not declared in this scope
gimpCall.cc:204: fout: ‘GIMP_PDB_IMAGE’ was not declared in this scope
gimpCall.cc: In member function ‘const GimpCall& GimpCall::layerReturn(int&) const’:
gimpCall.cc:213: fout: ‘_returns’ was not declared in this scope
gimpCall.cc:215: fout: ‘GIMP_PDB_LAYER’ was not declared in this scope
gimpCall.cc: At global scope:
gimpCall.cc:223: fout: variable or field ‘dumpParams’ declared void
gimpCall.cc:223: fout: ‘int GimpCall::dumpParams’ is not a static member of ‘class GimpCall’
gimpCall.cc:223: fout: ‘GimpParam’ was not declared in this scope
gimpCall.cc:223: fout: ‘params’ was not declared in this scope
gimpCall.cc:223: fout: expected primary-expression before ‘int’
gimpCall.cc:223: fout: initializer expression list treated as compound expression
gimpCall.cc:223: fout: expected ‘,’ or ‘;’ before ‘{’ token
In bestand ingevoegd door gui.cc:20:
gui.h:23:21: fout: gtk/gtk.h: Bestand of map bestaat niet
In bestand ingevoegd door op.h:26,
                 door gui.h:26,
                 door gui.cc:20:
gimpCall.h:25:26: fout: libgimp/gimp.h: Bestand of map bestaat niet
gimpCall.h:26:28: fout: libgimp/gimpui.h: Bestand of map bestaat niet
gimpCall.h:47: fout: expected ‘,’ or ‘...’ before ‘&’ token
gimpCall.h:47: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.h:47: fout: ‘GimpCall& GimpCall::param(int)’ cannot be overloaded
gimpCall.h:39: fout: with ‘GimpCall& GimpCall::param(int)’
gimpCall.h:56: fout: ‘GimpParam’ has not been declared
gimpCall.h:62: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.h:62: fout: expected ‘;’ before ‘*’ token
gimpCall.h:64: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.h:64: fout: expected ‘;’ before ‘*’ token
op.h:184: fout: ‘GimpParam’ does not name a type
gui.h:36: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:36: fout: expected ‘;’ before ‘*’ token
gui.h:37: fout: ‘GtkWidget’ has not been declared
gui.h:37: fout: ‘GtkWidget’ has not been declared
gui.h:41: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:41: fout: expected ‘;’ before ‘*’ token
gui.h:50: fout: expected `)' before ‘*’ token
gui.h:53: fout: ‘GtkObject’ has not been declared
gui.h:60: fout: expected `)' before ‘*’ token
gui.h:68: fout: expected constructor, destructor, or type conversion before ‘(’ token
gui.h:82: fout: template declaration of ‘Dbp::GtkCBBase* Dbp::gtkSignal’
gui.h:82: fout: ‘GtkObject’ was not declared in this scope
gui.h:82: fout: ‘object’ was not declared in this scope
gui.h:82: fout: expected primary-expression before ‘const’
gui.h:82: fout: ‘fn’ was not declared in this scope
gui.h:82: fout: expected primary-expression before ‘void’
gui.h:82: fout: expected primary-expression before ‘*’ token
gui.h:82: fout: ‘owner’ was not declared in this scope
gui.h:87: fout: template declaration of ‘Dbp::GtkCBBase* Dbp::gtkSignal’
gui.h:87: fout: ‘GtkWidget’ was not declared in this scope
gui.h:87: fout: ‘object’ was not declared in this scope
gui.h:87: fout: expected primary-expression before ‘const’
gui.h:87: fout: ‘fn’ was not declared in this scope
gui.h:87: fout: expected primary-expression before ‘void’
gui.h:87: fout: expected primary-expression before ‘*’ token
gui.h:87: fout: ‘owner’ was not declared in this scope
gui.h:99: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:99: fout: expected ‘;’ before ‘*’ token
gui.h:103: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:103: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:103: fout: expected ‘;’ before ‘*’ token
gui.h:107: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:107: fout: expected ‘;’ before ‘*’ token
gui.h:109: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:109: fout: expected ‘;’ before ‘*’ token
gui.h:111: fout: ISO C++ forbids declaration of ‘GtkObject’ with no type
gui.h:111: fout: expected ‘;’ before ‘*’ token
gui.h:113: fout: ISO C++ forbids declaration of ‘GtkObject’ with no type
gui.h:113: fout: expected ‘;’ before ‘*’ token
gui.h:119: fout: ‘GtkWidget’ has not been declared
gui.h:120: fout: ‘GtkWidget’ has not been declared
gui.h:122: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:122: fout: expected ‘;’ before ‘*’ token
gui.h:123: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:123: fout: expected ‘;’ before ‘*’ token
gui.h:124: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:124: fout: expected ‘;’ before ‘*’ token
gui.h:125: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:125: fout: expected ‘;’ before ‘*’ token
gui.h:126: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:126: fout: expected ‘;’ before ‘*’ token
gui.h:127: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:127: fout: expected ‘;’ before ‘*’ token
gui.h:133: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:133: fout: expected ‘;’ before ‘*’ token
gui.h:137: fout: ‘GtkWidget’ has not been declared
gui.h:138: fout: ‘GtkWidget’ has not been declared
gui.h:139: fout: ‘GtkObject’ has not been declared
gui.h:140: fout: ‘GtkObject’ has not been declared
gui.h:141: fout: ‘GtkObject’ has not been declared
gui.h:143: fout: ‘GtkWidget’ has not been declared
gui.h:150: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:150: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:150: fout: expected ‘;’ before ‘*’ token
gui.h:154: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:154: fout: expected ‘;’ before ‘*’ token
gui.h:155: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:155: fout: expected ‘;’ before ‘*’ token
gui.h:156: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:156: fout: expected ‘;’ before ‘*’ token
gui.h:157: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:157: fout: expected ‘;’ before ‘*’ token
gui.h:158: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:158: fout: expected ‘;’ before ‘*’ token
gui.h:160: fout: ISO C++ forbids declaration of ‘GtkListStore’ with no type
gui.h:160: fout: expected ‘;’ before ‘*’ token
gui.h:168: fout: ‘GtkTreeModel’ has not been declared
gui.h:168: fout: ‘GtkTreePath’ has not been declared
gui.h:168: fout: ‘GtkTreeIter’ has not been declared
gui.h:168: fout: ‘gpointer’ has not been declared
gui.h:176: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:176: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:176: fout: expected ‘;’ before ‘*’ token
gui.h:180: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:180: fout: expected ‘;’ before ‘*’ token
gui.h:187: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:187: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:187: fout: expected ‘;’ before ‘*’ token
gui.h:190: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:190: fout: expected ‘;’ before ‘*’ token
gui.h:197: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:197: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:197: fout: expected ‘;’ before ‘*’ token
gui.h:200: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:200: fout: expected ‘;’ before ‘*’ token
gui.h:201: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:201: fout: expected ‘;’ before ‘*’ token
gui.h:202: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:202: fout: expected ‘;’ before ‘*’ token
gui.h:203: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:203: fout: expected ‘;’ before ‘*’ token
gui.h:205: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:205: fout: expected ‘;’ before ‘*’ token
gui.h:212: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:212: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:212: fout: expected ‘;’ before ‘*’ token
gui.h:216: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:216: fout: expected ‘;’ before ‘*’ token
gui.h:217: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:217: fout: expected ‘;’ before ‘*’ token
gui.h:221: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:221: fout: expected ‘;’ before ‘*’ token
gui.h:222: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:222: fout: expected ‘;’ before ‘*’ token
gui.h:223: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:223: fout: expected ‘;’ before ‘*’ token
gui.h:224: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:224: fout: expected ‘;’ before ‘*’ token
gui.h:225: fout: ISO C++ forbids declaration of ‘GtkObject’ with no type
gui.h:225: fout: expected ‘;’ before ‘*’ token
gui.h:226: fout: ISO C++ forbids declaration of ‘GtkObject’ with no type
gui.h:226: fout: expected ‘;’ before ‘*’ token
gui.h:227: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:227: fout: expected ‘;’ before ‘*’ token
gui.h:228: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:228: fout: expected ‘;’ before ‘*’ token
gui.h:229: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:229: fout: expected ‘;’ before ‘*’ token
gui.h:230: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:230: fout: expected ‘;’ before ‘*’ token
gui.h:246: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:246: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:246: fout: expected ‘;’ before ‘*’ token
gui.h:249: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:249: fout: expected ‘;’ before ‘*’ token
gui.h:256: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:256: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:256: fout: expected ‘;’ before ‘*’ token
gui.h:259: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:259: fout: expected ‘;’ before ‘*’ token
gui.h:266: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:266: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:266: fout: expected ‘;’ before ‘*’ token
gui.h:272: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:272: fout: expected ‘;’ before ‘*’ token
gui.h:273: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:273: fout: expected ‘;’ before ‘*’ token
gui.h:274: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:274: fout: expected ‘;’ before ‘*’ token
gui.h:275: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:275: fout: expected ‘;’ before ‘*’ token
gui.h:276: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:276: fout: expected ‘;’ before ‘*’ token
gui.h:296: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:296: fout: ‘GtkWidget’ declared as a ‘virtual’ field
gui.h:296: fout: expected ‘;’ before ‘*’ token
gui.h:301: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:301: fout: expected ‘;’ before ‘*’ token
gui.h:302: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:302: fout: expected ‘;’ before ‘*’ token
gui.h:317: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:317: fout: expected ‘;’ before ‘*’ token
gui.h:328: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:328: fout: expected ‘;’ before ‘*’ token
gui.h:329: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:329: fout: expected ‘;’ before ‘*’ token
gui.h:330: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:330: fout: expected ‘;’ before ‘*’ token
gui.h:331: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:331: fout: expected ‘;’ before ‘*’ token
gui.h:332: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:332: fout: expected ‘;’ before ‘*’ token
gui.h:333: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Reactie #8 Gepost op: 2007/08/16, 12:26:08 »
Vervolg code:

gui.h:333: fout: expected ‘;’ before ‘*’ token
gui.h:334: fout: ISO C++ forbids declaration of ‘GtkWidget’ with no type
gui.h:334: fout: expected ‘;’ before ‘*’ token
gui.h:336: fout: ‘gint’ does not name a type
gui.h:353: fout: ‘gboolean’ does not name a type
gui.h:354: fout: expected ‘,’ or ‘...’ before ‘*’ token
gui.h:354: fout: ISO C++ forbids declaration of ‘gchar’ with no type
gui.h:355: fout: ‘gpointer’ has not been declared
gui.h:356: fout: expected ‘,’ or ‘...’ before ‘*’ token
gui.h:356: fout: ISO C++ forbids declaration of ‘gchar’ with no type
gui.h:357: fout: ‘gdouble’ has not been declared
gui.h:357: fout: ‘gpointer’ has not been declared
gui.cc:30: fout: expected initializer before ‘*’ token
gui.cc: In constructor ‘Dbp::ControlLayout::ControlLayout()’:
gui.cc:34: fout: ‘_widget’ was not declared in this scope
gui.cc:34: fout: ‘FALSE’ was not declared in this scope
gui.cc:34: fout: ‘gtk_table_new’ was not declared in this scope
gui.cc:36: fout: ‘gtk_widget_show’ was not declared in this scope
gui.cc: At global scope:
gui.cc:40: fout: ‘GtkWidget’ has not been declared
gui.cc:40: fout: ‘GtkWidget’ has not been declared
gui.cc: In member function ‘void Dbp::ControlLayout::add(const std::string&, int*, int*)’:
gui.cc:46: fout: ‘GtkAttachOptions’ was not declared in this scope
gui.cc:46: fout: expected `;' before ‘NONE’
gui.cc:48: fout: ‘GtkWidget’ was not declared in this scope
gui.cc:48: fout: ‘label’ was not declared in this scope
gui.cc:48: fout: ‘gtk_label_new’ was not declared in this scope
gui.cc:49: fout: ‘gtk_widget_show’ was not declared in this scope
gui.cc:50: fout: ‘_widget’ was not declared in this scope
gui.cc:50: fout: ‘GTK_TABLE’ was not declared in this scope
gui.cc:50: fout: ‘NONE’ was not declared in this scope
gui.cc:50: fout: ‘gtk_table_attach’ was not declared in this scope
gui.cc:58: fout: ‘gtk_table_attach_defaults’ was not declared in this scope
gui.cc: At global scope:
gui.cc:63: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc:70: fout: expected `)' before ‘*’ token
gui.cc:79: fout: variable or field ‘callback’ declared void
gui.cc:79: fout: ‘int Dbp::GtkCBBase::callback’ is not a static member of ‘struct Dbp::GtkCBBase’
gui.cc:79: fout: ‘GtkObject’ was not declared in this scope
gui.cc:79: fout: expected primary-expression before ‘,’ token
gui.cc:79: fout: expected primary-expression before ‘*’ token
gui.cc:79: fout: ‘cb’ was not declared in this scope
gui.cc:79: fout: initializer expression list treated as compound expression
gui.cc:79: fout: expected ‘,’ or ‘;’ before ‘{’ token
gui.cc: In constructor ‘Dbp::Gui::Gui()’:
gui.cc:87: fout: class ‘Dbp::Gui’ does not have any field named ‘_widget’
gui.cc: At global scope:
gui.cc:98: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc:106: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc:113: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc:120: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc:133: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc: In member function ‘void Dbp::Gui::add(Dbp::ControlLayout&, const std::string&, int&, int, int)’:
gui.cc:149: fout: ‘GtkObject’ was not declared in this scope
gui.cc:149: fout: ‘adj’ was not declared in this scope
gui.cc:150: fout: ‘gtk_adjustment_new’ was not declared in this scope
gui.cc:152: fout: ‘GtkSignalFunc’ was not declared in this scope
gui.cc:152: fout: ‘g_signal_connect’ was not declared in this scope
gui.cc:153: fout: ‘spinnerFor’ was not declared in this scope
gui.cc:153: fout: ‘sliderFor’ was not declared in this scope
gui.cc: At global scope:
gui.cc:157: fout: ‘GtkWidget’ has not been declared
gui.cc: In member function ‘void Dbp::Gui::add(Dbp::ControlLayout&, const std::string&, int, int*)’:
gui.cc:158: fout: ‘GtkWidget’ was not declared in this scope
gui.cc:158: fout: ‘menu’ was not declared in this scope
gui.cc:158: fout: ‘gtk_option_menu_new’ was not declared in this scope
gui.cc:159: fout: ‘GTK_OPTION_MENU’ was not declared in this scope
gui.cc:159: fout: ‘gtk_option_menu_set_menu’ was not declared in this scope
gui.cc:160: fout: ‘gtk_option_menu_set_history’ was not declared in this scope
gui.cc: At global scope:
gui.cc:165: fout: variable or field ‘addItem’ declared void
gui.cc:165: fout: ‘int Dbp::Gui::addItem’ is not a static member of ‘class Dbp::Gui’
gui.cc:165: fout: ‘GtkWidget’ was not declared in this scope
gui.cc:165: fout: ‘options’ was not declared in this scope
gui.cc:165: fout: expected primary-expression before ‘label’
gui.cc:165: fout: expected primary-expression before ‘int’
gui.cc:165: fout: expected primary-expression before ‘int’
gui.cc:165: fout: initializer expression list treated as compound expression
gui.cc:165: fout: expected ‘,’ or ‘;’ before ‘{’ token
gui.cc:173: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc:181: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc:196: fout: variable or field ‘toggleValueUpdate’ declared void
gui.cc:196: fout: ‘int Dbp::Gui::toggleValueUpdate’ is not a static member of ‘class Dbp::Gui’
gui.cc:196: fout: ‘GtkWidget’ was not declared in this scope
gui.cc:196: fout: ‘toggle’ was not declared in this scope
gui.cc:196: fout: expected primary-expression before ‘bool’
gui.cc:196: fout: initializer expression list treated as compound expression
gui.cc:196: fout: expected ‘,’ or ‘;’ before ‘{’ token
gui.cc:201: fout: variable or field ‘toggleIntValueUpdate’ declared void
gui.cc:201: fout: ‘int Dbp::Gui::toggleIntValueUpdate’ is not a static member of ‘class Dbp::Gui’
gui.cc:201: fout: ‘GtkWidget’ was not declared in this scope
gui.cc:201: fout: ‘toggle’ was not declared in this scope
gui.cc:201: fout: expected primary-expression before ‘int’
gui.cc:201: fout: initializer expression list treated as compound expression
gui.cc:201: fout: expected ‘,’ or ‘;’ before ‘{’ token
gui.cc:206: fout: variable or field ‘adjDoubleUpdate’ declared void
gui.cc:206: fout: ‘int Dbp::Gui::adjDoubleUpdate’ is not a static member of ‘class Dbp::Gui’
gui.cc:206: fout: ‘GtkObject’ was not declared in this scope
gui.cc:206: fout: ‘adj’ was not declared in this scope
gui.cc:206: fout: expected primary-expression before ‘double’
gui.cc:206: fout: initializer expression list treated as compound expression
gui.cc:206: fout: expected ‘,’ or ‘;’ before ‘{’ token
gui.cc:211: fout: variable or field ‘adjFloatUpdate’ declared void
gui.cc:211: fout: ‘int Dbp::Gui::adjFloatUpdate’ is not a static member of ‘class Dbp::Gui’
gui.cc:211: fout: ‘GtkObject’ was not declared in this scope
gui.cc:211: fout: ‘adj’ was not declared in this scope
gui.cc:211: fout: expected primary-expression before ‘float’
gui.cc:211: fout: initializer expression list treated as compound expression
gui.cc:211: fout: expected ‘,’ or ‘;’ before ‘{’ token
gui.cc:216: fout: variable or field ‘adjIntUpdate’ declared void
gui.cc:216: fout: ‘int Dbp::Gui::adjIntUpdate’ is not a static member of ‘class Dbp::Gui’
gui.cc:216: fout: ‘GtkObject’ was not declared in this scope
gui.cc:216: fout: ‘adj’ was not declared in this scope
gui.cc:216: fout: expected primary-expression before ‘int’
gui.cc:216: fout: initializer expression list treated as compound expression
gui.cc:216: fout: expected ‘,’ or ‘;’ before ‘{’ token
gui.cc:222: fout: variable or field ‘switchValueUpdate’ declared void
gui.cc:222: fout: ‘int Dbp::Gui::switchValueUpdate’ is not a static member of ‘class Dbp::Gui’
gui.cc:222: fout: ‘GtkWidget’ was not declared in this scope
gui.cc:222: fout: ‘widget’ was not declared in this scope
gui.cc:222: fout: expected primary-expression before ‘int’
gui.cc:222: fout: initializer expression list treated as compound expression
gui.cc:222: fout: expected ‘,’ or ‘;’ before ‘{’ token
gui.cc:232: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc:241: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc:250: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc:264: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc: In constructor ‘Dbp::InputGui::InputGui(Dbp::InputOp&)’:
gui.cc:279: fout: class ‘Dbp::InputGui’ does not have any field named ‘_selector’
gui.cc: At global scope:
gui.cc:287: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc: In member function ‘void Dbp::InputGui::addFiles()’:
gui.cc:352: fout: ‘GSList’ was not declared in this scope
gui.cc:352: fout: ‘files’ was not declared in this scope
gui.cc:352: fout: ‘_selector’ was not declared in this scope
gui.cc:352: fout: ‘GTK_FILE_CHOOSER’ was not declared in this scope
gui.cc:352: fout: ‘gtk_file_chooser_get_filenames’ was not declared in this scope
gui.cc:353: fout: ‘current’ was not declared in this scope
gui.cc:357: fout: ‘g_free’ was not declared in this scope
gui.cc:360: fout: ‘g_slist_free’ was not declared in this scope
gui.cc:361: fout: ‘gtk_file_chooser_unselect_all’ was not declared in this scope
gui.cc: In member function ‘void Dbp::InputGui::openFileSelector()’:
gui.cc:373: fout: ‘gint’ was not declared in this scope
gui.cc:373: fout: expected `;' before ‘response’
gui.cc:374: fout: ‘response’ was not declared in this scope
gui.cc:374: fout: ‘_selector’ was not declared in this scope
gui.cc:374: fout: ‘GTK_DIALOG’ was not declared in this scope
gui.cc:374: fout: ‘gtk_dialog_run’ was not declared in this scope
gui.cc:375: fout: ‘GTK_RESPONSE_ACCEPT’ was not declared in this scope
gui.cc:379: fout: ‘GTK_RESPONSE_OK’ was not declared in this scope
gui.cc:382: fout: ‘gtk_widget_hide’ was not declared in this scope
gui.cc: In member function ‘void Dbp::InputGui::closeFileSelector()’:
gui.cc:387: fout: ‘_selector’ was not declared in this scope
gui.cc:387: fout: ‘gtk_widget_hide’ was not declared in this scope
gui.cc: At global scope:
gui.cc:398: fout: variable or field ‘removeSelectedFile’ declared void
gui.cc:398: fout: ‘int Dbp::InputGui::removeSelectedFile’ is not a static member of ‘struct Dbp::InputGui’
gui.cc:398: fout: ‘GtkTreeModel’ was not declared in this scope
gui.cc:398: fout: ‘model’ was not declared in this scope
gui.cc:398: fout: ‘GtkTreePath’ was not declared in this scope
gui.cc:398: fout: ‘path’ was not declared in this scope
gui.cc:398: fout: ‘GtkTreeIter’ was not declared in this scope
gui.cc:398: fout: ‘iter’ was not declared in this scope
gui.cc:398: fout: ‘gpointer’ was not declared in this scope
gui.cc:398: fout: initializer expression list treated as compound expression
gui.cc:399: fout: expected ‘,’ or ‘;’ before ‘{’ token
gui.cc: In member function ‘void Dbp::InputGui::removeFiles()’:
gui.cc:414: fout: ‘_inputListView’ was not declared in this scope
gui.cc:414: fout: ‘GTK_TREE_VIEW’ was not declared in this scope
gui.cc:414: fout: ‘gtk_tree_view_get_selection’ was not declared in this scope
gui.cc:415: fout: ‘gtk_tree_selection_selected_foreach’ was not declared in this scope
gui.cc: In member function ‘void Dbp::InputGui::rebuildInputList()’:
gui.cc:428: fout: ‘_inputList’ was not declared in this scope
gui.cc:428: fout: ‘gtk_list_store_clear’ was not declared in this scope
gui.cc:432: fout: ‘GtkTreeIter’ was not declared in this scope
gui.cc:432: fout: expected `;' before ‘newItem’
gui.cc:433: fout: ‘newItem’ was not declared in this scope
gui.cc:433: fout: ‘gtk_list_store_append’ was not declared in this scope
gui.cc:434: fout: ‘gtk_list_store_set’ was not declared in this scope
gui.cc:438: fout: ‘_removeButton’ was not declared in this scope
gui.cc:438: fout: ‘FALSE’ was not declared in this scope
gui.cc:438: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:439: fout: ‘_clearButton’ was not declared in this scope
gui.cc:441: fout: ‘_removeButton’ was not declared in this scope
gui.cc:441: fout: ‘TRUE’ was not declared in this scope
gui.cc:441: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:442: fout: ‘_clearButton’ was not declared in this scope
gui.cc: At global scope:
gui.cc:456: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc: In member function ‘void Dbp::TurnGui::setEnabled()’:
gui.cc:488: fout: ‘gint’ was not declared in this scope
gui.cc:488: fout: expected `;' before ‘enabled’
gui.cc:489: fout: ‘enabled’ was not declared in this scope
gui.cc:491: fout: ‘class Dbp::ControlLayout’ has no member named ‘widget’
gui.cc:491: fout: ‘TRUE’ was not declared in this scope
gui.cc:491: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:494: fout: ‘class Dbp::ControlLayout’ has no member named ‘widget’
gui.cc:494: fout: ‘FALSE’ was not declared in this scope
gui.cc:494: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc: At global scope:
gui.cc:501: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc: In member function ‘void Dbp::BlurGui::setEnabled()’:
gui.cc:522: fout: ‘gint’ was not declared in this scope
gui.cc:522: fout: expected `;' before ‘enabled’
gui.cc:523: fout: ‘enabled’ was not declared in this scope
gui.cc:525: fout: ‘class Dbp::ControlLayout’ has no member named ‘widget’
gui.cc:525: fout: ‘TRUE’ was not declared in this scope
gui.cc:525: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:528: fout: ‘class Dbp::ControlLayout’ has no member named ‘widget’
gui.cc:528: fout: ‘FALSE’ was not declared in this scope
gui.cc:528: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc: At global scope:
gui.cc:535: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc: In member function ‘void Dbp::RecolourGui::setEnabled()’:
gui.cc:578: fout: ‘gint’ was not declared in this scope
gui.cc:578: fout: expected `;' before ‘enabled’
gui.cc:579: fout: ‘enabled’ was not declared in this scope
gui.cc:581: fout: ‘_controls’ was not declared in this scope
gui.cc:581: fout: ‘TRUE’ was not declared in this scope
gui.cc:581: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:584: fout: ‘_controls’ was not declared in this scope
gui.cc:584: fout: ‘FALSE’ was not declared in this scope
gui.cc:584: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc: In member function ‘void Dbp::RecolourGui::setAuto()’:
gui.cc:590: fout: ‘gint’ was not declared in this scope
gui.cc:590: fout: expected `;' before ‘autoLevels’
gui.cc:591: fout: ‘autoLevels’ was not declared in this scope
gui.cc:593: fout: ‘_manualFrame’ was not declared in this scope
gui.cc:593: fout: ‘FALSE’ was not declared in this scope
gui.cc:593: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:596: fout: ‘_manualFrame’ was not declared in this scope
gui.cc:596: fout: ‘TRUE’ was not declared in this scope
gui.cc:596: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc: At global scope:
gui.cc:611: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc: In member function ‘void Dbp::ResizeGui::addFitOption(std::string, int*)’:
gui.cc:690: fout: ‘GtkWidget’ was not declared in this scope
gui.cc:690: fout: ‘item’ was not declared in this scope
gui.cc:690: fout: ‘gtk_menu_item_new_with_label’ was not declared in this scope
gui.cc:691: fout: ‘G_OBJECT’ was not declared in this scope
gui.cc:691: fout: ‘dataKey’ was not declared in this scope
gui.cc:691: fout: ‘g_object_set_data’ was not declared in this scope
gui.cc:692: fout: ‘_fitOptions’ was not declared in this scope
gui.cc:692: fout: ‘GTK_MENU_SHELL’ was not declared in this scope
gui.cc:692: fout: ‘gtk_menu_shell_append’ was not declared in this scope
gui.cc:693: fout: ‘gtkSignal’ was not declared in this scope
gui.cc: In member function ‘void Dbp::ResizeGui::setEnabled()’:
gui.cc:698: fout: ‘gint’ was not declared in this scope
gui.cc:698: fout: expected `;' before ‘enabled’
gui.cc:699: fout: ‘enabled’ was not declared in this scope
gui.cc:701: fout: ‘_controls’ was not declared in this scope
gui.cc:701: fout: ‘TRUE’ was not declared in this scope
gui.cc:701: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:703: fout: ‘_relativeFrame’ was not declared in this scope
gui.cc:704: fout: ‘_absoluteFrame’ was not declared in this scope
gui.cc:704: fout: ‘FALSE’ was not declared in this scope
gui.cc:706: fout: ‘_relativeFrame’ was not declared in this scope
gui.cc:706: fout: ‘FALSE’ was not declared in this scope
gui.cc:707: fout: ‘_absoluteFrame’ was not declared in this scope
gui.cc:711: fout: ‘_controls’ was not declared in this scope
gui.cc:711: fout: ‘FALSE’ was not declared in this scope
gui.cc:711: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:712: fout: ‘_relativeFrame’ was not declared in this scope
gui.cc:713: fout: ‘_absoluteFrame’ was not declared in this scope
gui.cc: In member function ‘void Dbp::ResizeGui::selectMode()’:
gui.cc:719: fout: ‘_relativeToggle’ was not declared in this scope
gui.cc:719: fout: ‘GTK_TOGGLE_BUTTON’ was not declared in this scope
gui.cc:721: fout: ‘_relativeFrame’ was not declared in this scope
gui.cc:721: fout: ‘TRUE’ was not declared in this scope
gui.cc:721: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:722: fout: ‘_absoluteFrame’ was not declared in this scope
gui.cc:722: fout: ‘FALSE’ was not declared in this scope
gui.cc:725: fout: ‘_relativeFrame’ was not declared in this scope
gui.cc:725: fout: ‘FALSE’ was not declared in this scope
gui.cc:725: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:726: fout: ‘_absoluteFrame’ was not declared in this scope
gui.cc:726: fout: ‘TRUE’ was not declared in this scope
gui.cc: In member function ‘void Dbp::ResizeGui::selectAspect()’:
gui.cc:734: fout: ‘_yAdjust’ was not declared in this scope
gui.cc:734: fout: ‘GTK_ADJUSTMENT’ was not declared in this scope
gui.cc:734: fout: ‘_xAdjust’ was not declared in this scope
gui.cc:734: fout: ‘gtk_adjustment_set_value’ was not declared in this scope
gui.cc: In member function ‘void Dbp::ResizeGui::handleXAdjust()’:
gui.cc:740: fout: ‘GtkAdjustment’ was not declared in this scope
gui.cc:740: fout: ‘x’ was not declared in this scope
gui.cc:740: fout: ‘_xAdjust’ was not declared in this scope
gui.cc:740: fout: ‘GTK_ADJUSTMENT’ was not declared in this scope
gui.cc:741: fout: ‘y’ was not declared in this scope
gui.cc:741: fout: ‘_yAdjust’ was not declared in this scope
gui.cc:743: fout: ‘gtk_adjustment_set_value’ was not declared in this scope
gui.cc: In member function ‘void Dbp::ResizeGui::handleYAdjust()’:
gui.cc:749: fout: ‘GtkAdjustment’ was not declared in this scope
gui.cc:749: fout: ‘x’ was not declared in this scope
gui.cc:749: fout: ‘_xAdjust’ was not declared in this scope
gui.cc:749: fout: ‘GTK_ADJUSTMENT’ was not declared in this scope
gui.cc:750: fout: ‘y’ was not declared in this scope
gui.cc:750: fout: ‘_yAdjust’ was not declared in this scope
gui.cc:752: fout: ‘gtk_adjustment_set_value’ was not declared in this scope
gui.cc: In member function ‘void Dbp::ResizeGui::selectFit()’:
gui.cc:758: fout: ‘GtkWidget’ was not declared in this scope
gui.cc:758: fout: ‘currentItem’ was not declared in this scope
gui.cc:758: fout: ‘_fitOptions’ was not declared in this scope
gui.cc:758: fout: ‘GTK_MENU’ was not declared in this scope
gui.cc:758: fout: ‘gtk_menu_get_active’ was not declared in this scope
gui.cc:759: fout: ‘G_OBJECT’ was not declared in this scope
gui.cc:759: fout: ‘dataKey’ was not declared in this scope
gui.cc:759: fout: ‘g_object_get_data’ was not declared in this scope
gui.cc: In member function ‘void Dbp::ResizeGui::setWarning()’:
gui.cc:768: fout: ‘_warning’ was not declared in this scope
gui.cc:768: fout: ‘GTK_LABEL’ was not declared in this scope
gui.cc:768: fout: ‘gtk_label_set_text’ was not declared in this scope
gui.cc: At global scope:
gui.cc:785: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc: In member function ‘void Dbp::CropGui::setEnabled()’:
gui.cc:810: fout: ‘gint’ was not declared in this scope
gui.cc:810: fout: expected `;' before ‘enabled’
gui.cc:811: fout: ‘enabled’ was not declared in this scope
gui.cc:813: fout: ‘class Dbp::ControlLayout’ has no member named ‘widget’
gui.cc:813: fout: ‘TRUE’ was not declared in this scope
gui.cc:813: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:816: fout: ‘class Dbp::ControlLayout’ has no member named ‘widget’
gui.cc:816: fout: ‘FALSE’ was not declared in this scope
gui.cc:816: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc: At global scope:
gui.cc:823: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc: In member function ‘void Dbp::SharpenGui::setEnabled()’:
gui.cc:847: fout: ‘gint’ was not declared in this scope
gui.cc:847: fout: expected `;' before ‘enabled’
gui.cc:848: fout: ‘enabled’ was not declared in this scope
gui.cc:850: fout: ‘class Dbp::ControlLayout’ has no member named ‘widget’
gui.cc:850: fout: ‘TRUE’ was not declared in this scope
gui.cc:850: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:853: fout: ‘class Dbp::ControlLayout’ has no member named ‘widget’
gui.cc:853: fout: ‘FALSE’ was not declared in this scope
gui.cc:853: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc: At global scope:
gui.cc:870: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc: In member function ‘void Dbp::RenameGui::recalcDirName()’:
gui.cc:959: fout: ‘_dirLabel’ was not declared in this scope
gui.cc:959: fout: ‘GTK_LABEL’ was not declared in this scope
gui.cc:959: fout: ‘gtk_label_set_text’ was not declared in this scope
gui.cc:961: fout: ‘_dirLabel’ was not declared in this scope
gui.cc:961: fout: ‘GTK_LABEL’ was not declared in this scope
gui.cc:961: fout: ‘gtk_label_set_text’ was not declared in this scope
gui.cc: In member function ‘void Dbp::RenameGui::recalcExample()’:
gui.cc:969: fout: ‘_example’ was not declared in this scope
gui.cc:969: fout: ‘GTK_LABEL’ was not declared in this scope
gui.cc:969: fout: ‘gtk_label_set_text’ was not declared in this scope
gui.cc: In member function ‘void Dbp::RenameGui::setPrefix()’:
gui.cc:974: fout: ‘_prefix’ was not declared in this scope
gui.cc:974: fout: ‘GTK_ENTRY’ was not declared in this scope
gui.cc:974: fout: ‘gtk_entry_get_text’ was not declared in this scope
gui.cc: In member function ‘void Dbp::RenameGui::setPostfix()’:
gui.cc:980: fout: ‘_postfix’ was not declared in this scope
gui.cc:980: fout: ‘GTK_ENTRY’ was not declared in this scope
gui.cc:980: fout: ‘gtk_entry_get_text’ was not declared in this scope
gui.cc: In member function ‘void Dbp::RenameGui::okDirSelector()’:
gui.cc:997: fout: ‘_dirSelector’ was not declared in this scope
gui.cc:997: fout: ‘GTK_FILE_SELECTION’ was not declared in this scope
gui.cc:997: fout: ‘gtk_file_selection_get_filename’ was not declared in this scope
gui.cc:1005: fout: ‘gtk_widget_hide’ was not declared in this scope
gui.cc: In member function ‘void Dbp::RenameGui::cancelDirSelector()’:
gui.cc:1012: fout: ‘_dirSelector’ was not declared in this scope
gui.cc:1012: fout: ‘gtk_widget_hide’ was not declared in this scope
gui.cc: In member function ‘void Dbp::RenameGui::raiseDirSelector()’:
gui.cc:1017: fout: ‘_dirSelector’ was not declared in this scope
gui.cc:1017: fout: ‘gtk_widget_show’ was not declared in this scope
gui.cc: At global scope:
gui.cc:1024: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc: In member function ‘void Dbp::OutputGui::addOption(std::string, int*)’:
gui.cc:1106: fout: ‘GtkWidget’ was not declared in this scope
gui.cc:1106: fout: ‘item’ was not declared in this scope
gui.cc:1106: fout: ‘gtk_menu_item_new_with_label’ was not declared in this scope
gui.cc:1107: fout: ‘G_OBJECT’ was not declared in this scope
gui.cc:1107: fout: ‘dataKey’ was not declared in this scope
gui.cc:1107: fout: ‘g_object_set_data’ was not declared in this scope
gui.cc:1108: fout: ‘_options’ was not declared in this scope
gui.cc:1108: fout: ‘GTK_MENU_SHELL’ was not declared in this scope
gui.cc:1108: fout: ‘gtk_menu_shell_append’ was not declared in this scope
gui.cc:1109: fout: ‘gtkSignal’ was not declared in this scope
gui.cc: In member function ‘void Dbp::OutputGui::selectOption()’:
gui.cc:1114: fout: ‘GtkWidget’ was not declared in this scope
gui.cc:1114: fout: ‘current’ was not declared in this scope
gui.cc:1114: fout: ‘_options’ was not declared in this scope
gui.cc:1114: fout: ‘GTK_MENU’ was not declared in this scope
gui.cc:1114: fout: ‘gtk_menu_get_active’ was not declared in this scope
gui.cc:1115: fout: ‘G_OBJECT’ was not declared in this scope
gui.cc:1115: fout: ‘dataKey’ was not declared in this scope
gui.cc:1115: fout: ‘g_object_get_data’ was not declared in this scope
gui.cc:1120: fout: ‘class Dbp::ControlLayout’ has no member named ‘widget’
gui.cc:1120: fout: ‘gtk_widget_show’ was not declared in this scope
gui.cc:1122: fout: ‘class Dbp::ControlLayout’ has no member named ‘widget’
gui.cc:1122: fout: ‘gtk_widget_hide’ was not declared in this scope
gui.cc: At global scope:
gui.cc:1140: fout: expected constructor, destructor, or type conversion before ‘*’ token
gui.cc: In member function ‘void Dbp::DbpGui::add(const std::string&, Dbp::Gui*)’:
gui.cc:1220: fout: ‘GtkWidget’ was not declared in this scope
gui.cc:1220: fout: ‘pageLabel’ was not declared in this scope
gui.cc:1220: fout: ‘gtk_label_new’ was not declared in this scope
gui.cc:1221: fout: ‘_notebook’ was not declared in this scope
gui.cc:1221: fout: ‘GTK_NOTEBOOK’ was not declared in this scope
gui.cc:1221: fout: ‘class Dbp::Gui’ has no member named ‘widget’
gui.cc:1221: fout: ‘gtk_notebook_append_page’ was not declared in this scope
gui.cc: In member function ‘void Dbp::DbpGui::setBusy(bool)’:
gui.cc:1227: fout: ‘_test’ was not declared in this scope
gui.cc:1227: fout: ‘FALSE’ was not declared in this scope
gui.cc:1227: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:1228: fout: ‘_start’ was not declared in this scope
gui.cc:1229: fout: ‘_cancel’ was not declared in this scope
gui.cc:1229: fout: ‘TRUE’ was not declared in this scope
gui.cc:1231: fout: ‘_test’ was not declared in this scope
gui.cc:1231: fout: ‘TRUE’ was not declared in this scope
gui.cc:1231: fout: ‘gtk_widget_set_sensitive’ was not declared in this scope
gui.cc:1232: fout: ‘_start’ was not declared in this scope
gui.cc:1233: fout: ‘_cancel’ was not declared in this scope
gui.cc:1233: fout: ‘FALSE’ was not declared in this scope
gui.cc: At global scope:
gui.cc:1237: fout: ‘gboolean’ does not name a type
gui.cc: In member function ‘void Dbp::DbpGui::test()’:
gui.cc:1248: fout: ‘_messageText’ was not declared in this scope
gui.cc:1248: fout: ‘GTK_LABEL’ was not declared in this scope
gui.cc:1248: fout: ‘gtk_label_set_text’ was not declared in this scope
gui.cc:1252: fout: ‘_show’ was not declared in this scope
gui.cc:1252: fout: ‘GTK_TOGGLE_BUTTON’ was not declared in this scope
gui.cc:1252: fout: ‘TRUE’ was not declared in this scope
gui.cc:1252: fout: ‘gtk_toggle_button_set_active’ was not declared in this scope
gui.cc:1255: fout: ‘_idleProcess’ was not declared in this scope
gui.cc:1255: fout: ‘idleProcess’ was not declared in this scope
gui.cc:1255: fout: ‘g_idle_add’ was not declared in this scope
gui.cc: In member function ‘void Dbp::DbpGui::start()’:
gui.cc:1263: fout: ‘_messageText’ was not declared in this scope
gui.cc:1263: fout: ‘GTK_LABEL’ was not declared in this scope
gui.cc:1263: fout: ‘gtk_label_set_text’ was not declared in this scope
gui.cc:1269: fout: ‘_idleProcess’ was not declared in this scope
gui.cc:1269: fout: ‘idleProcess’ was not declared in this scope
gui.cc:1269: fout: ‘g_idle_add’ was not declared in this scope
gui.cc: In member function ‘bool Dbp::DbpGui::step()’:
gui.cc:1275: fout: ‘_messageText’ was not declared in this scope
gui.cc:1275: fout: ‘GTK_LABEL’ was not declared in this scope
gui.cc:1275: fout: ‘gtk_label_set_text’ was not declared in this scope
gui.cc:1279: fout: ‘_messageText’ was not declared in this scope
gui.cc:1279: fout: ‘GTK_LABEL’ was not declared in this scope
gui.cc:1279: fout: ‘gtk_label_set_text’ was not declared in this scope
gui.cc:1280: fout: ‘_progress’ was not declared in this scope
gui.cc:1280: fout: ‘GTK_PROGRESS_BAR’ was not declared in this scope
gui.cc:1280: fout: ‘gtk_progress_bar_set_fraction’ was not declared in this scope
gui.cc: In member function ‘void Dbp::DbpGui::cancel()’:
gui.cc:1287: fout: ‘_idleProcess’ was not declared in this scope
gui.cc:1288: fout: ‘g_source_remove’ was not declared in this scope
gui.cc: In member function ‘void Dbp::DbpGui::show()’:
gui.cc:1296: fout: ‘_show’ was not declared in this scope
gui.cc:1296: fout: ‘GTK_TOGGLE_BUTTON’ was not declared in this scope
gui.cc:1296: fout: ‘gtk_toggle_button_get_active’ was not declared in this scope
gui.cc: At global scope:
gui.cc:1310: fout: expected ‘,’ or ‘...’ before ‘*’ token
gui.cc:1310: fout: ISO C++ forbids declaration of ‘gchar’ with no type
gui.cc: In static member function ‘static void Dbp::DbpGui::gimpProgressStartCallback(int)’:
gui.cc:1312: fout: ‘user_data’ was not declared in this scope
gui.cc:1313: fout: ‘message’ was not declared in this scope
gui.cc: At global scope:
gui.cc:1318: fout: variable or field ‘gimpProgressEndCallback’ declared void
gui.cc:1318: fout: ‘int Dbp::DbpGui::gimpProgressEndCallback’ is not a static member of ‘class Dbp::DbpGui’
gui.cc:1318: fout: ‘gpointer’ was not declared in this scope
gui.cc:1319: fout: expected ‘,’ or ‘;’ before ‘{’ token
gui.cc:1325: fout: expected ‘,’ or ‘...’ before ‘*’ token
gui.cc:1325: fout: ISO C++ forbids declaration of ‘gchar’ with no type
gui.cc: In static member function ‘static void Dbp::DbpGui::gimpProgressTextCallback(int)’:
gui.cc:1327: fout: ‘user_data’ was not declared in this scope
gui.cc:1328: fout: ‘message’ was not declared in this scope
gui.cc: At global scope:
gui.cc:1332: fout: variable or field ‘gimpProgressValueCallback’ declared void
gui.cc:1332: fout: ‘int Dbp::DbpGui::gimpProgressValueCallback’ is not a static member of ‘class Dbp::DbpGui’
gui.cc:1332: fout: ‘gdouble’ was not declared in this scope
gui.cc:1332: fout: ‘gpointer’ was not declared in this scope
gui.cc:1332: fout: initializer expression list treated as compound expression
gui.cc:1333: fout: expected ‘,’ or ‘;’ before ‘{’ token
gui.cc: In member function ‘void Dbp::DbpGui::run()’:
gui.cc:1355: fout: ‘GimpProgressVtable’ was not declared in this scope
gui.cc:1355: fout: expected `;' before ‘vtable’
gui.cc:1371: fout: expected initializer before ‘*’ token
gui.cc:1376: fout: ‘gtk_main’ was not declared in this scope
gui.cc:1377: fout: ‘progressCallbacks’ was not declared in this scope
gui.cc:1377: fout: ‘gimp_progress_uninstall’ was not declared in this scope
In bestand ingevoegd door op.h:26,
                 door op.cc:20:
gimpCall.h:25:26: fout: libgimp/gimp.h: Bestand of map bestaat niet
gimpCall.h:26:28: fout: libgimp/gimpui.h: Bestand of map bestaat niet
gimpCall.h:47: fout: expected ‘,’ or ‘...’ before ‘&’ token
gimpCall.h:47: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.h:47: fout: ‘GimpCall& GimpCall::param(int)’ cannot be overloaded
gimpCall.h:39: fout: with ‘GimpCall& GimpCall::param(int)’
gimpCall.h:56: fout: ‘GimpParam’ has not been declared
gimpCall.h:62: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.h:62: fout: expected ‘;’ before ‘*’ token
gimpCall.h:64: fout: ISO C++ forbids declaration of ‘GimpParam’ with no type
gimpCall.h:64: fout: expected ‘;’ before ‘*’ token
op.h:184: fout: ‘GimpParam’ does not name a type
op.cc: In constructor ‘Dbp::Location::Location(const std::string&)’:
op.cc:39: fout: ‘G_DIR_SEPARATOR’ was not declared in this scope
op.cc: In member function ‘std::string Dbp::Location::fullPath() const’:
op.cc:81: fout: ‘G_DIR_SEPARATOR_S’ was not declared in this scope
op.cc: In member function ‘virtual bool Dbp::Filter::execute(int&, int&, Dbp::Location&)’:
op.cc:108: fout: ‘GIMP_RUN_NONINTERACTIVE’ was not declared in this scope
op.cc: In member function ‘virtual bool Dbp::InputOp::execute(int&, int&, Dbp::Location&)’:
op.cc:128: fout: ‘gchar’ was not declared in this scope
op.cc:128: fout: ‘path’ was not declared in this scope
op.cc:128: fout: expected type-specifier before ‘gchar’
op.cc:128: fout: expected `;' before ‘gchar’
op.cc:130: fout: ‘GIMP_RUN_NONINTERACTIVE’ was not declared in this scope
op.cc:130: fout: ‘gimp_file_load’ was not declared in this scope
op.cc:131: fout: type ‘’ argument given to ‘delete’, expected pointer
op.cc:134: fout: ‘gimp_image_undo_disable’ was not declared in this scope
op.cc:137: fout: ‘gint’ was not declared in this scope
op.cc:137: fout: expected `;' before ‘numLayers’
op.cc:138: fout: ‘layers’ was not declared in this scope
op.cc:138: fout: ‘numLayers’ was not declared in this scope
op.cc:138: fout: ‘gimp_image_get_layers’ was not declared in this scope
op.cc:140: fout: ‘gimp_image_delete’ was not declared in this scope
op.cc:143: fout: ‘GIMP_CLIP_TO_IMAGE’ was not declared in this scope
op.cc:143: fout: ‘gimp_image_merge_visible_layers’ was not declared in this scope
op.cc:147: fout: ‘g_free’ was not declared in this scope
op.cc: In member function ‘virtual bool Dbp::TurnOp::execute(int&, int&, Dbp::Location&)’:
op.cc:163: fout: ‘GimpRotationType’ was not declared in this scope
op.cc:163: fout: ‘gimp_image_rotate’ was not declared in this scope
op.cc: In member function ‘virtual void Dbp::BlurOp::addParams(GimpCall&)’:
op.cc:175: fout: ‘TRUE’ was not declared in this scope
op.cc: In member function ‘virtual bool Dbp::RecolourOp::execute(int&, int&, Dbp::Location&)’:
op.cc:191: fout: ‘gimp_levels_stretch’ was not declared in this scope
op.cc:198: fout: ‘gimp_brightness_contrast’ was not declared in this scope
op.cc:203: fout: ‘GimpHueRange’ was not declared in this scope
op.cc:203: fout: expected `;' before ‘hueRange’
op.cc:207: fout: ‘hueRange’ was not declared in this scope
op.cc:207: fout: ‘gimp_hue_saturation’ was not declared in this scope
op.cc:211: fout: ‘gimp_image_convert_grayscale’ was not declared in this scope
op.cc: In member function ‘virtual bool Dbp::ResizeOp::execute(int&, int&, Dbp::Location&)’:
op.cc:240: fout: ‘gimp_image_width’ was not declared in this scope
op.cc:241: fout: ‘gimp_image_height’ was not declared in this scope
op.cc:249: fout: ‘gimp_image_scale’ was not declared in this scope
op.cc:264: fout: ‘gimp_image_scale’ was not declared in this scope
op.cc:277: fout: ‘gimp_image_resize’ was not declared in this scope
op.cc:279: fout: ‘gimp_layer_resize_to_image_size’ was not declared in this scope
op.cc: In member function ‘virtual bool Dbp::RenameOp::execute(int&, int&, Dbp::Location&)’:
op.cc:361: fout: ‘gboolean’ was not declared in this scope
op.cc:361: fout: expected `;' before ‘ok’
op.cc:363: fout: ‘gimp_image_flatten’ was not declared in this scope
op.cc:366: fout: ‘ok’ was not declared in this scope
op.cc:366: fout: ‘gimp_image_convert_grayscale’ was not declared in this scope
op.cc:369: fout: ‘gint32’ was not declared in this scope
op.cc:369: fout: expected `;' before ‘paletteType’
op.cc:370: fout: expected `;' before ‘ditherAlpha’
op.cc:371: fout: expected `;' before ‘removeUnusedColours’
op.cc:373: fout: ‘ok’ was not declared in this scope
op.cc:374: fout: ‘GimpConvertDitherType’ was not declared in this scope
op.cc:374: fout: ‘GimpConvertPaletteType’ was not declared in this scope
op.cc:375: fout: ‘ditherAlpha’ was not declared in this scope
op.cc:376: fout: ‘removeUnusedColours’ was not declared in this scope
op.cc:376: fout: ‘gimp_image_convert_indexed’ was not declared in this scope
op.cc:379: fout: ‘ok’ was not declared in this scope
op.cc:379: fout: ‘TRUE’ was not declared in this scope
op.cc: In member function ‘void Dbp::OutputFormat::param(std::string, bool)’:
op.cc:407: fout: ‘struct Dbp::OpParam’ has no member named ‘_gimpType’
op.cc:407: fout: ‘GIMP_PDB_INT32’ was not declared in this scope
op.cc:408: fout: ‘struct Dbp::OpParam’ has no member named ‘_gimpType’
op.cc: In member function ‘void Dbp::OutputFormat::param(std::string, int, int, int)’:
op.cc:417: fout: ‘struct Dbp::OpParam’ has no member named ‘_gimpType’
op.cc:417: fout: ‘GIMP_PDB_INT32’ was not declared in this scope
op.cc:418: fout: ‘struct Dbp::OpParam’ has no member named ‘_gimpType’
op.cc: In member function ‘void Dbp::OutputFormat::param(std::string, float, float, float, int)’:
op.cc:430: fout: ‘struct Dbp::OpParam’ has no member named ‘_gimpType’
op.cc:430: fout: ‘GIMP_PDB_FLOAT’ was not declared in this scope
op.cc:431: fout: ‘struct Dbp::OpParam’ has no member named ‘_gimpType’
op.cc: In member function ‘void Dbp::OutputFormat::param(std::string, std::string)’:
op.cc:443: fout: ‘struct Dbp::OpParam’ has no member named ‘_gimpType’
op.cc:443: fout: ‘GIMP_PDB_STRING’ was not declared in this scope
op.cc:447: fout: ‘struct Dbp::OpParam’ has no member named ‘_gimpType’
op.cc:447: fout: ‘gchar’ was not declared in this scope
op.cc:447: fout: expected primary-expression before ‘)’ token
op.cc: In member function ‘Dbp::OpParam& Dbp::OutputFormat::param(std::string)’:
op.cc:456: fout: ‘struct Dbp::OpParam’ has no member named ‘_gimpType’
op.cc:456: fout: ‘GIMP_PDB_INT32’ was not declared in this scope
op.cc:457: fout: ‘struct Dbp::OpParam’ has no member named ‘_gimpType’
op.cc: In member function ‘void Dbp::OpParam::choose(int)’:
op.cc:471: fout: ‘_gimpType’ was not declared in this scope
op.cc: In member function ‘virtual bool Dbp::OutputOp::execute(int&, int&, Dbp::Location&)’:
op.cc:591: fout: ‘GIMP_RUN_NONINTERACTIVE’ was not declared in this scope
op.cc:600: fout: ‘struct Dbp::OpParam’ has no member named ‘_gimpType’
op.cc: In member function ‘void Dbp::DbpData::removeDisplay()’:
op.cc:638: fout: ‘gimp_display_delete’ was not declared in this scope
op.cc:642: fout: ‘gimp_image_delete’ was not declared in this scope
op.cc: In member function ‘void Dbp::DbpData::step()’:
op.cc:707: fout: ‘gimp_image_set_filename’ was not declared in this scope
op.cc:710: fout: ‘gimp_display_new’ was not declared in this scope
op.cc:712: fout: ‘gimp_displays_reconnect’ was not declared in this scope
op.cc:716: fout: ‘gimp_display_delete’ was not declared in this scope
op.cc:721: fout: ‘gimp_image_delete’ was not declared in this scope
op.cc:769: fout: ‘gimp_image_clean_all’ was not declared in this scope
op.cc:771: fout: ‘gimp_displays_flush’ was not declared in this scope
make: *** [dbp] Fout 1

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Reactie #9 Gepost op: 2007/08/16, 12:32:50 »
De bovengenoemde plug-in heet btw: David's Batch Processor

Offline profoX

  • Lid
    • wesley
    • Lionslink
Een speciale Image Batch-Resize (Help please :))
« Reactie #10 Gepost op: 2007/08/16, 18:42:56 »
Je hebt extra dev packages nodig om dat te kunnen compileren...
Ik gok iets met libgtk...something...dev
en ook libgimp...something..dev ofzo

dat leid ik hieruit af:
Citaat
gui.h:23:21: fout: gtk/gtk.h: Bestand of map bestaat niet
In bestand ingevoegd door op.h:26,
                 door gui.h:26,
                 door dbp.cc:66:
gimpCall.h:25:26: fout: libgimp/gimp.h: Bestand of map bestaat niet
gimpCall.h:26:28: fout: libgimp/gimpui.h: Bestand of map bestaat niet
Human Knowledge Belongs To The World -- Antitrust (2001)
Nederlandstalige Ubuntu documentatie van Ubuntu-NL (wiki)

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Reactie #11 Gepost op: 2007/08/16, 19:12:10 »
Dit was het resultaat, maar er wordt niets getoond in het GIMP hoofdmenu bij Extras en er is ook geen Xtns menu, any idea? :)

erwin@Ubuntu:~/.gimp-2.2/plug-ins/dbp-1.1.7$ dir
dbp.cc                dbp.html      gimpCall.cc  gui.cc  Makefile  op.h
dbp-fileSelector.png  dbp-main.png  gimpCall.h   gui.h   op.cc
erwin@Ubuntu:~/.gimp-2.2/plug-ins/dbp-1.1.7$ make
g++ -o dbp -Wall -O2 -I. *.cc -I/usr/include/gimp-2.0 -I/usr/include/gtk-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/libpng12  -lgimpui-2.0 -lgimpwidgets-2.0 -lgimp-2.0 -lgimpmath-2.0 -lgimpcolor-2.0 -lgimpbase-2.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr -lXcursor -lXfixes -lpango-1.0 -lcairo -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -DGTK_DISABLE_DEPRECATED  
erwin@Ubuntu:~/.gimp-2.2/plug-ins/dbp-1.1.7$

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Reactie #12 Gepost op: 2007/08/17, 18:37:35 »
Iemand enig idee?

Offline stani

  • Lid
    • http://pythonide.stani.be
Een speciale Image Batch-Resize (Help please :))
« Reactie #13 Gepost op: 2007/08/18, 06:00:58 »
Citaat van: Erwin_001
Nu zoek ik naar een programma of iemand die een GIMP-Batch script weet om (zoveel afbeeldingen als ik maar wil) uit een map alle afbeeldingen om te zetten naar 400x400 maar dat de verhouding van de afbeeldingen wel goed blijft. De achtergrond moet wit zijn.
Ik spring een beetje te laat op deze trein, maar hier heb ik net een nieuw programma voor ontwikkeld: Phatch! (Photo & Batch). Naast herschalen kan je thumbnails fraaier maken met rounded corners, schaduw, een watermark stempelen met transparantie (bv website logo of copyright), enz... Ik heb er ook een deb installer voor gemaakt. Meer info en screenshots vind je hier: http://ubuntuforums.org/showthread.php?t=466598

Stani

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Reactie #14 Gepost op: 2007/08/18, 12:34:29 »
Bedankt voor de reactie.

Maar kun je met Phatch! ook resizen in een box (zoals eerder aangegeven)?
Dat iets dus in proportie wordt ge-resized in een box van 400x400 en dat de restruimte wit is.

Danku :)

Offline stani

  • Lid
    • http://pythonide.stani.be
Een speciale Image Batch-Resize (Help please :))
« Reactie #15 Gepost op: 2007/08/18, 15:38:25 »
Citaat van: Erwin_001
Bedankt voor de reactie.

Maar kun je met Phatch! ook resizen in een box (zoals eerder aangegeven)?
Dat iets dus in proportie wordt ge-resized in een box van 400x400 en dat de restruimte wit is.

Danku :)
Nee nog niet. Maar als je Phatch interessant vindt, kan je deze feature altijd aanvragen op:
https://blueprints.launchpad.net/phatch/

Het lijkt me niet zo moeilijk om dit toe te voegen. Dus U vraagt, wij draaien...

Groeten,
Stani

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Reactie #16 Gepost op: 2007/08/19, 21:22:27 »
Ok dankjewel

Ik heb net geprobeerd een begrijpelijke blueprint te maken. Misschien dat je er ook iets aan toe kan voegen wat je uit deze Topic hebt afgeleid wat ik misschien niet duidelijk uitleg.

Bij voorbaat dank,

Erwin

Offline stani

  • Lid
    • http://pythonide.stani.be
Een speciale Image Batch-Resize (Help please :))
« Reactie #17 Gepost op: 2007/08/20, 00:42:38 »
Citaat van: Erwin_001
Ik heb net geprobeerd een begrijpelijke blueprint te maken. Misschien dat je er ook iets aan toe kan voegen wat je uit deze Topic hebt afgeleid wat ik misschien niet duidelijk uitleg.
Alles is glashelder. Je zal vanaf nu via launchpad op de hoogte gehouden worden van de verdere ontwikkeling.
Dank,
Stani

Offline stani

  • Lid
    • http://pythonide.stani.be
Een speciale Image Batch-Resize (Help please :))
« Reactie #18 Gepost op: 2007/08/22, 20:31:36 »
Beste Erwin,
Ik heb wat tijd gevonden en jouw aangevraagde feature aan Phatch toegevoegd. Je zal dus twee operaties aan de lijst moeten toevoegen: eerst herschalen (Afbeelding Schalen) en vervolgens de canvasgrootte aanpassen (Canvasgrootte). Ik heb het nog niet uitgebreid getest, maar verwacht wel dat het werkt. Bovendien kan je ook de achtergrond kleur kiezen en zelfs er de transparantie van instellen.
Als je met bazaar overweg kunt, kan je deze versie van phatch installeren volgens deze instructies:
https://launchpad.net/phatch/
Anders kan je me email geven (bv met private message) en dan stuur ik je een .deb installer.
Hopelijk is het wat je wil. Veel plezier ermee!
Stani

Offline Pjotr

  • Lid
    • Makkelijke Linuxtips
Een speciale Image Batch-Resize (Help please :))
« Reactie #19 Gepost op: 2007/08/22, 20:49:11 »
Dit vind ik echt fantastisch. Een mooi voorbeeld van de kracht van open-bron software!

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Reactie #20 Gepost op: 2007/08/23, 15:25:51 »
Citaat van: stani
Beste Erwin,
Ik heb wat tijd gevonden en jouw aangevraagde feature aan Phatch toegevoegd. Je zal dus twee operaties aan de lijst moeten toevoegen: eerst herschalen (Afbeelding Schalen) en vervolgens de canvasgrootte aanpassen (Canvasgrootte). Ik heb het nog niet uitgebreid getest, maar verwacht wel dat het werkt. Bovendien kan je ook de achtergrond kleur kiezen en zelfs er de transparantie van instellen.
Als je met bazaar overweg kunt, kan je deze versie van phatch installeren volgens deze instructies:
https://launchpad.net/phatch/
Anders kan je me email geven (bv met private message) en dan stuur ik je een .deb installer.
Hopelijk is het wat je wil. Veel plezier ermee!
Stani
Beste Stani,

Ik kijk elke dag wel een paar keer naar de Blueprint pagina en vind het echt super dat je het al zover heb geschopt!
Heb even een tijdelijk redirect e-mail aangemaakt:  ((( info (at) zilvex (dot) com ))) waar je de .deb intaller heen kunt sturen.
Ik kijk er heel erg naar uit!

Nogmaals heel erg bedankt!

Offline Soul-Sing

  • Lid
Een speciale Image Batch-Resize (Help please :))
« Reactie #21 Gepost op: 2007/08/23, 19:08:37 »
Citaat van: stani
Beste Erwin,
Ik heb wat tijd gevonden en jouw aangevraagde feature aan Phatch toegevoegd. Je zal dus twee operaties aan de lijst moeten toevoegen: eerst herschalen (Afbeelding Schalen) en vervolgens de canvasgrootte aanpassen (Canvasgrootte). Ik heb het nog niet uitgebreid getest, maar verwacht wel dat het werkt. Bovendien kan je ook de achtergrond kleur kiezen en zelfs er de transparantie van instellen.
Als je met bazaar overweg kunt, kan je deze versie van phatch installeren volgens deze instructies:
https://launchpad.net/phatch/
Anders kan je me email geven (bv met private message) en dan stuur ik je een .deb installer.
Hopelijk is het wat je wil. Veel plezier ermee!
Stani
stani thx voor je info over je project/programma. complimenten! we hebben hier op de site een onderdeel =ETALAGE= misschien goed om alles daar eens te posten. succes!:D

Offline stani

  • Lid
    • http://pythonide.stani.be
Een speciale Image Batch-Resize (Help please :))
« Reactie #22 Gepost op: 2007/08/24, 19:01:27 »
Citaat van: Erwin_001
Ik kijk er heel erg naar uit!

Nogmaals heel erg bedankt!
Om een of andere reden kreeg ik geen melding dat je al had geantwoord. Maar ik heb de installer verstuurd, dus als het goed is ligt hij op je virtuele deurmat. Het is een alfa-versie, dus laat even weten of het werkt en hou me op de hoogte via launchpad van fouten.
Succes!
Stani

Offline stani

  • Lid
    • http://pythonide.stani.be
Een speciale Image Batch-Resize (Help please :))
« Reactie #23 Gepost op: 2007/08/24, 19:03:31 »
Citaat van: leoquant
stani thx voor je info over je project/programma. complimenten! we hebben hier op de site een onderdeel =ETALAGE= misschien goed om alles daar eens te posten. succes!:D
Ha, goed idee! Dat zal ik zeker doen. Misschien eerst even wachten of Erwin het overleeft, alvorens reclame te maken.
Stani

Erwin_001

  • Gast
Een speciale Image Batch-Resize (Help please :))
« Reactie #24 Gepost op: 2007/08/25, 09:51:52 »
Het werkt :D
Heel erg bedankt! Ik kijk uit naar de implementatie voor de definitieve versie ! :-)