
Advanced search
Medias (91)
-
Richard Stallman et le logiciel libre
19 October 2011, by
Updated: May 2013
Language: français
Type: Text
-
Stereo master soundtrack
17 October 2011, by
Updated: October 2011
Language: English
Type: Audio
-
Elephants Dream - Cover of the soundtrack
17 October 2011, by
Updated: October 2011
Language: English
Type: Picture
-
#7 Ambience
16 October 2011, by
Updated: June 2015
Language: English
Type: Audio
-
#6 Teaser Music
16 October 2011, by
Updated: February 2013
Language: English
Type: Audio
-
#5 End Title
16 October 2011, by
Updated: February 2013
Language: English
Type: Audio
Other articles (50)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 February 2011, byMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
MediaSPIP v0.2
21 June 2013, byMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 April 2011, byMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
On other websites (9007)
-
Anomalie #3981: Menu "Écrire une nouvelle traduction" non présent pour rédacteurs
12 August 2017, by Jacques BouthierEn tout cas je constate que si je remplace la ligne 83 du fichier actuel
if (isset($valeurs['id_trad']) and $valeurs['_traduisible']) {
par
if (isset($valeurs['id_trad'])) {
Alors le menu apparait de nouveau pour les rédacteurs... Je ne sais pas quelles en sont les conséquences... mais voilà une bonne piste :)
-
Revision 9b4f9f45ee: Fill buffer speed up Eliminates the byte by byte read from bool decoder, by re
9 July 2015, by Jim BankoskiChanged Paths:
Modify /vp9/decoder/vp9_reader.c
Add /vpx_util/endian_inl.h
Modify /vpx_util/vpx_util.mk
Fill buffer speed upEliminates the byte by byte read from bool decoder, by reading
in a size_t and then shifting it into place.Change-Id: Id89241977103fc3b973e4ed172a5cbf246998e5d
-
Fill patterns
My work life has been quite busy lately and I haven’t had a chance to sit down and blog. I have been touring around London and some parts of the northern England consulting and organizing some training here and there. Luckily I have had the chance to do some work on Imagick and the 2.2.0 beta release is getting closer. The internal structure was completely restructured and broken down into several smaller files. During this time Imagick was adapted to follow the PHP Coding Standards more closely. Still a work in progress
I committed slightly modified version of this example to PHP Manual http://uk.php.net/manual/en/imagick.examples.php page a few days ago. The example illustrates using an image as a part of a named fill pattern. The fill pattern is used to annotate text but the named pattern could also be used to fill any shapes that allow fill to be specified (include circles, ellipses, rectangles, polygons etc etc). The code itself is pretty straight forward: Read the image, create the pattern and use the pattern as a fill.
The ice formations image is from http://www.photoeverywhere.co.uk/west/winterholiday/slides/iceformations5679.htm.
-
<?php
-
-
/* Create a new imagick object */
-
$im = new Imagick( ’iceformations5679.JPG’ );
-
-
/* Create imagickdraw object */
-
$draw = new ImagickDraw();
-
-
/* Start a new pattern called "ice" */
-
$draw->pushPattern( ’ice’ , 0 , 0 , 50 , 50 );
-
-
/* Composite the image on the pattern */
-
$draw->composite( Imagick::COMPOSITE_OVER, 0, 0, 50, 50, $im );
-
-
/* Close the pattern */
-
$draw->popPattern();
-
-
/* Use the pattern called "ice" as the fill */
-
$draw->setFillPatternURL( ’#ice’ );
-
-
/* Set font size to 52 */
-
$draw->setFontSize( 52 );
-
-
/* Annotate some text */
-
$draw->annotation( 5, 50, "Hello World!" );
-
-
/* Create a new canvas and white image */
-
$canvas = new Imagick();
-
$canvas->newImage( 310, 70, "white" );
-
-
/* Add black border around the resulting image */
-
$canvas->borderImage( ’black’, 1, 1 );
-
-
/* Draw the ImagickDraw on to the canvas */
-
$canvas->drawImage( $draw );
-
-
/* Set the format to PNG */
-
$canvas->setImageFormat( ’png’ );
-
-
/* Output the image */
-
header( "Content-Type: image/png" );
-
echo $canvas;
-
?>
And the result is here:
-