Jump to content

Futurist

Member
  • Posts

    4
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Croatia

Everything posted by Futurist

  1. hello, i have a question! i have this code how can I make to script resize image with this <?php // Load image $image = open_image('flower.jpg'); if ($image === false) { die ('Unable to open image'); } // Get original width and height $width = imagesx($image); $height = imagesy($image); // New width and height $new_width = 150; $new_height = 100; // Resample $image_resized = imagecreatetruecolor($new_width, $new_height); imagecopyresampled($image_resized, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); // Display resized image header('Content-type: image/jpeg'); imagejpeg($image_resized); die(); ?>
  2. thanks i will try anyone have newest list of OS? because when someone have vista, writes XP
  3. thanks.. working but how can i go to next row in random message? i have Test1 Test2 Test3 Test4, Test5 i want test5 in new row, possible?
  4. hey, i make something but all info is in one row! how to fix that? and one more question.. any way for random font? sry for English and thanks
×
×
  • Create New...