ImageMagick is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats like GIF, JPEG, PNG, Postscript, and TIFF. We can also 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. ImageMagick is typically used from command line. Also we can use it from any programming language by using its interface like Magick.NET (.Net),IMagick (PHP), PerlMagick (Perl) etc. This article will help you to install ImageMagick on CentOS, RHEL…
Author: Rahul
ImageMagick is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats like GIF, JPEG, PNG, Postscript, and TIFF. We can also 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. This article will help you to install ImageMagick on 19.04, 18.04 & 16.04 LTS operating systems. Step 1 – Prerequsities First of all, You need to install the required packages in order to install ImageMagick and Imagick PHP…
Virtual Hosting allows multiple domains or websites to operate on a single server. It’s especially useful in shared hosting environments, where one server hosts thousands of websites, all sharing its resources. This guide will demonstrate how to set up Virtual Hosts on an Apache2 server for Ubuntu, Debian, and LinuxMint systems. For those interested in a similar setup with Nginx on Ubuntu, you can refer to “Set Up Virtual Hosts in Nginx on Ubuntu.” Step 1: Installing Apache If Apache is not already installed on your system, you can install it using the following commands. Remember to update your repositories…
CentOS Web Panel in short CWP is a free web hosting control panel designed easy management of (Dedicated & VPS) servers without of need to use ssh console. This works for RPM-based distributions only. To use this control panel you must have CentOS, RHEL or CloudLinux operating system on your server. CWP provides easy tool for migrating accounts from cPanel server to CWP with few clicks. This article will help you to install CentOS Web Panel CentOS/RHEL & CloudLinux systems. Step 1 – System Requirements To install CentOS Web Panel, your system must have a minimum of 512MB RAM for…
When working with Java, there are several ways to obtain the current timestamp, which is essential for a variety of applications including logging events, measuring execution times, or handling date and time operations. A timestamp is a sequence of characters, denoting the date and time at which a certain event occurred. The following introduction provides an overview of five methods to get the current timestamp in Java, each suited for different requirements and use cases. These methods leverage the capabilities of different classes available in Java, such as System, Date, Calendar, Instant, and the java.time API, introduced in Java 8.…
Zend Framework 2 is an open source object oriented software framework, used for faster development. Zend also provides MVC architecture and code re-usability feature. This tutorial will help you to How to Install PHP Zend Framework on Redhat based system. I am using CentOS 6.7 while writing this tutorial. 1. Install HTTPD & PHP First make sure that you have installed HTTPD and PHP on your system. If not have already installed use following command to install it. Zend Framework 2 required PHP >=5.3 to work properly. # yum install httpd php php-cli php-common 2. Install PHP Composer After installing…
Having been around for some time now, Hadoop has become one of the most popular open-source big data solutions. It processes data in batches and is famous for its scalable, cost-effective, and distributed computing capabilities. It’s one of the most popular open-source frameworks in the data analysis and storage space. As a user, you can use it to manage your data, analyze that data, and store it again – all in an automated way. With Hadoop installed on your Fedora system, you can access important analytic services with ease. This article covers how to install Apache Hadoop on CentOS and…
Apache Tomcat is a widely used open-source Java Servlet Container developed by the Apache Software Foundation (ASF). Tomcat acts as a web server for Java-based web applications and is an essential tool for developers working with Java Servlets and JavaServer Pages (JSPs). This guide will take you through the process of installing Tomcat 11 on Ubuntu, Debian, and Linux Mint systems. Warning: Please be aware that as of the writing of this guide, Apache Tomcat 11 is currently in an Alpha release stage. This version is considered unstable and is not suitable for production environments. If you are looking for…
You must have faced the foreign key constrains issues many times while working with MySQL database. Generally this issue occurred during delete, insert records, backup and restore database and drop database and drop tables. In this situation its hard to complete task. MySQL provides an option to disable foreign key checks during any operation on tables or databases. You can disable check and complete your task without any issues. This article will help you to how to enable or disable foreign key check in MySQL. Ever you faced foreign key error, Disable foreign key checks, do you work and enable…
This tutorial will help you with JavaScript code with jQuery, which check that checkbox is checked or not and perform operations based on that. This useful before submitting any form to check if any checkbox is checked or not. JavaScript Code :- Below is the JavaScript code which check that checkbox (id: checkBox1) is selected or not. If checkbox is selected, it will unhide the element with id msgBox and that element will appear on page. If checkbox is not selected, it will hide the same element on page. Make sure you have included JQuery on your webpage.
1 2 3 4 5 6 7 8 9 | <script type="text/javascript"> if(document.getElementById('checkBox1').checked) { $("#msgBox").show(); } else { $("#msgBox").hide(); } </script> |
Demo…
