login  Naam:   Wachtwoord: 
Registreer je!
 Forum

foutmelding die ik niet begrijp (Opgelost)

Offline Gezienus - 19/09/2009 15:23
Avatar van GezienusLid Op internet heb ik een stukje code gevonden om images te wijzigen in thumbnails

  1. <?php
  2. $nWidth = imagesx($oSourceImage); // get original source image width
  3. $nHeight = imagesy($oSourceImage); // and height
  4.  
  5. // create small thumbnail
  6. $nDestinationWidth = 80;
  7. $nDestinationHeight = 60;
  8. //$oDestinationImage = imagecreatetruecolor($nDestinationWidth, $nDestinationHeight);
  9. $oDestinationImage = imagecreate($nDestinationWidth, $nDestinationHeight);
  10.  
  11. /*$oResult = imagecopyresampled(
  12. $oDestinationImage, $oSourceImage,
  13. 0, 0, 0, 0,
  14. $nDestinationWidth, $nDestinationHeight,
  15. $nWidth, $nHeight); // resize the image
  16. */
  17. imagecopyresized(
  18. $oDestinationImage, $oSourceImage,
  19. 0, 0, 0, 0,
  20. $nDestinationWidth, $nDestinationHeight,
  21. $nWidth, $nHeight); // resize the image
  22.  
  23. ob_start(); // Start capturing stdout.
  24. imageJPEG($oDestinationImage); // As though output to browser.
  25. $sBinaryThumbnail = ob_get_contents(); // the raw jpeg image data.
  26. ob_end_clean(); // Dump the result so it does not screw other output.
  27. ?>


Ik krijg bij het draaien van deze code de volgende foutmelding.

Warning: imagesx(): supplied argument is not a valid Image resource in .....

Warning: imagesy(): supplied argument is not a valid Image resource in ......

Warning: imagecopyresized(): supplied argument is not a valid Image resource in ......

Hoe los ik dit op?



1 antwoord

Gesponsorde links
Offline Abbas - 19/09/2009 15:44
Avatar van Abbas Gouden medaille

Crew .NET
Dan zal er iets niet juist zijn met de variabele $oSourceImage. Misschien wordt deze niet meegegeven ofzo met als gevolg dat ze niet gekend is in de functies!
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.199s