php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #10078 Problems with ImageCreate function
Submitted: 2001-03-30 11:27 UTC Modified: 2001-05-02 18:18 UTC
From: a_ratz at mail dot ru Assigned:
Status: Closed Package: GD related
PHP Version: 4.0.4pl1 OS: Windows 98'
Private report: No CVE-ID: None
 [2001-03-30 11:27 UTC] a_ratz at mail dot ru
When I tried to use ImageCreate and other GD functions in PHP, it happend to be not functioning correct: ImageCreate
failed to return image descriptor, instead it returned 
undefined value. How can I fix this problem?

Please reply my letter as soon as you can.
My e-mail address is a_ratz@mail.ru

Thanks!

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-03-30 14:51 UTC] sniper@php.net
Please include the shortest possible self containing PHP
script into this bug report which can be used to reproduce this.

--Jani

 [2001-03-31 10:54 UTC] a_ratz at mail dot ru
When I tried to use ImageCreate and other GD functions in PHP, it happend to be not
functioning correct: ImageCreate
failed to return image descriptor, instead it returned 
undefined value. How can I fix this problem?

For Example:

<?php

  Header("Content-type: image/gif");
  $string=implode($argv," ");
  $im = imagecreatefromgif("images/button1.gif");
  $orange = ImageColorAllocate($im, 220, 210, 60);
  $px = (imagesx($im)-7.5*strlen($string))/2;
  ImageString($im,3,$px,9,$string,$orange);
  ImageGif($im);
  ImageDestroy($im);
 
?>

This example doesn't generate an image. I don't know why

Please reply my letter as soon as you can.
My e-mail address is a_ratz@mail.ru

Thanks!


 [2001-03-31 11:09 UTC] a_ratz at mail dot ru
When I tried to use ImageCreate and other GD functions in PHP, it happend to be not
functioning correct: ImageCreate
failed to return image descriptor, instead it returned 
undefined value. How can I fix this problem?

For Example:

<?php
    Header("Content-type: image/gif");
    $string=implode($argv," ");
    $im = imagecreatefromgif("images/button1.gif");
    $orange = ImageColorAllocate($im, 220, 210, 60);
    $px = (imagesx($im)-7.5*strlen($string))/2;
    ImageString($im,3,$px,9,$string,$orange);
    ImageGif($im);
    ImageDestroy($im);
?>

This Example doesn't generate an image I don't know Why?

Please reply my letter as soon as you can.
My e-mail address is a_ratz@mail.ru

Thanks!
 [2001-03-31 17:29 UTC] sniper@php.net
1. Which version of GD library do you have?
2. Does some other image type work? Like png?
3. Please try also with the latest CVS build from http://www.php4win.de 

--Jani

 [2001-05-02 18:18 UTC] jmoore@php.net
No feedback. Closing

- James
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 13:01:28 2024 UTC