Thursday, September 13, 2012

Drupal Training to Colleges in and Around Chennai with IEEE- VIT chennai

It’s been a passion of the Drupal community in Chennai to reach out to Colleges and share the joy of Drupal development. Over the last  years we have visited  4 colleges. The last one was in coordination with IEEE.

This time it was  a paid Drupal training program organised by IEEE. The program spanned over 3 full days. The first 2 days was to introduce the students to Drupal and PHP concepts. The students thoroughly enjoyed their hands on session on Drupal.

This was followed by an assignment in Drupal. The 3rd session was further to submission of the assignment. During this day a team of 9 trainers spent one to one session explaining the details of their respective assignments to the students. The interest of the students to learn Drupal was amazing...

The program was extremely successful!

The reasons for the success:

  • The IEEE team made extreme care to ensure the coordination with participants, students & trainers we immaculate.
  • The excellent Venue at VIT
  • Training conducted by professionals working on Drupal
  • A set of extremely interested students.

Three cheers to the IEEE team & the Drupal enthusiasts. Looking for more excitement together.

More pictures at: https://www.facebook.com/media/set/?set=a.420750574642961.117256.143106039074084&type=3
About the training at: http://groups.drupal.org/node/244013
Link to IEEE report on the program: http://ewh.ieee.org/r10/madras/?q=ieee-cs-drupal-vit

Any Colleges looking for drupal training workshops connect with us at: drupalinchennai@gmail.com

AT THE PROGRAM






Friday, April 27, 2012

Building Responsive Websites with Drupal

Responsive Design is the current approach to website designs. This is still a new area & the devices we are trying to design for varied. But yes you have a solution in Drupal, a ready to use theme that supports responsive theming.  The presentation gives an overview of what Responsive websites mean & the key terminologies that we need to understand.

This presentation is inspired by many presentations on Responsive theming at recent Drupalcons. A link to the London con page on responsive design: http://london2011.drupal.org/category/tags/responsive-design

Wednesday, January 4, 2012

An Introduction to Imagemagick with PHP

Last week I had chance to work with imagemagick, I was amazed by seeing the list features available with this library to create or edit an image. Here is a brief on ImageMagick 


What is imagemagick?
ImageMagick® is a used to create, edit, compose, or convert images. It can read and write images in a variety of formats. Use ImageMagick to resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves.


How do I install ImageMagick?
For installing the ImageMagick in linux, download the build Imagemagick.tar.gz. Install the build as instructed here.


Unpack the build 
$ tar xvfz ImageMagick.tar.gz


Configure and Compile
$ cd ImageMagick-6.7.4
$ ./configure
$ make
If ImageMagick configured and compiled without complaint, you are ready to install it on your system. Administrator privileges are required to install. To install, type
$ sudo make install
You may need to configure the dynamic linker run-time bindings:
$ sudo ldconfig /usr/local/lib
Finally, verify the ImageMagick install worked properly, type
$ /usr/local/bin/convert logo: logo.gif
For a more comprehensive test, run the ImageMagick validation suite. Ghostscript is a prerequisite, otherwise the EPS, PS, and PDF tests will fail.
$ make check

The same can also be installed in windows, instructions can be found here


Imagick is a native php extension to create and modify images using the ImageMagick API. This extension requires ImageMagick version 6.2.4+ and PHP 5.1.3+.
Install Imagick extension as usual way of pecl installation.
Copy the imagick.so to php ext directory usually (/usr/local/php/ext).
Edit the php.ini add the installed extension 'extension=imagick.so'
Restart the Apache

After Sucessful installation check the imagick availabilty with phpinfo()

If every thing goes fine, Now we can test it by writing a small program in php
<?php
header('Content-type: image/jpeg');
$image = new Imagick('image.jpg');
// If 0 is provided as a width or height parameter,
// aspect ratio is maintained
$image->thumbnailImage(100, 0);
echo $image;
?>
Imagick class constructed by loading a image 'image.jpg'.
In the next line a member function thumbnailImage is called to resize the image width as 100 pixels. This function takes two parameter first is width and next is Height.
Height assigned as 0 in the function to maintain the aspect ratio.

Search This Blog

Chennai Drupal Community

drupal.org - Community plumbing

Shyamala's Drupal SEO