Problème d'alignement CSS

image: none; border-image-source: none; border-image-slice: 100% 100% 100% 100%; border-image-width: 1 1 1 1; border-image-outset: 0 0 0 0; border-image-repeat

3
Problème de modification d'un profil HELP

image_sizes=getimagesize($_FILES'membre_avatar']'tmp_name']); if ($image_sizes[0] > $maxwidth OR $image_sizes[1] > $maxheight) { $i++; $avatar_erreur2="Image trop large ou trop longue : ( ".$image_sizes[0]."x".$image

6
Problème upload avec VichBundle

image; /** * @ORM\Column(type="datetime") */ private $updated_at; /*------------------------------*/ public function getImage(): ?string { return $this->image; } public function setImage( string $image ): self { $this->image = $image; return $this; } /** * @return null|File */ public

3
Beug site cakephp sur 1and1

image = imagecreatefromjpeg($img); } elseif(in_array($ext,array('png','PNG'))){$image = imagecreatefrompng($img); } elseif(in_array($ext,array('gif','GIF'))){$image = imagecreatefromgif($img); } else{ return false; } imagecopyresampled($miniature,$image,-$decalX

2
Taille d'un overlay - Media Query Ipad

image figure img { background-image: url('/photos/my_image@2x.png'); background-size: 200px 100px; } } #contenu { display:table; margin-top:0px; width: 100%; margin-top: 100px; margin-left: 3%; } #cellule-presentation { display:table

22
Animation scroll conflit js et php

image ( $html ) { $html = preg_replace( '/(width|height)="\d*"\s/', "", $html ); return $html; } add_filter( 'post_thumbnail_html', 'respon_image', 10 ); add_filter( 'image_send_to_editor', 'respon_image', 10 ); add_filter

1
Problème avec le Tuto : Upload en Drag&Drop

image = imagecreatefromstring($source); if ($image) { // Get dimensions $w = imagesx($image); $h = imagesy($image); if (($width && $w > $width) || ($height && $h > $height)) { $ratio = $w / $h; if (($ratio >= 1 || $height == 0) && $width && !$crop

2
Rajout d'une div dans un lien généré via HtmlHelper

images as $image): ?> Si quelqu'un avait une petite idée, ou a déjà

5
Upload Drag & Drop : problème avec le multi files

image = imagecreatefromstring($source); switch($type){ case 'png': $image = imagecreatefrompng($source); break; case 'gif': $image = imagecreatefromgif($source); break; case 'jpg': $image = imagecreatefromjpeg($source); break; } if ($image) { // Get dimensions $w = imagesx($image

0
Recharger la session & JSON

IMAGES.$repertoire))){ mkdir(dirname(IMAGES.$repertoire),0777,true); } move_uploaded_file($photo'tmp_name'], IMAGES.$repertoire); chmod(IMAGES.$repertoire,0777); $this->Session->write('Auth.User.photo',$repertoire); die('{"erreur": false}'); } } } Pour plus

6