Posted on November 23rd, 2015 by Dinesh Sahoo
While working with chart/graphing solutions for creating good looking graphs, we face difficulty to embed the graphs into PDF reports. Charting solutions allow us to create HTML versions of charts and most of the good looking charts consist of basically javascript and flash content, which is normally difficult to embed into the PDFs. I would […]
Posted on November 23rd, 2015 by Manash Khamari
Few days back I ran in to a requirement, where there was a need to frame a picture, of any size, uploaded by the user. First I thought this can be done via the gd library extension we have in php. But all try to make it work using GD, failed. As the framing process […]
Posted on November 23rd, 2015 by Raju Mahato
Rotate an image for a specific angle in iPhone app using Titanium. We can rotate any image for a specific angle using titanium. Let say we have an image and I need to rotate it to 180. So here is the code to do that described below. Code Block : //Define the current window var […]
Posted on November 23rd, 2015 by Aditya Acharya
For us the following two file names may not hold much difference but when using CSS we have to take care of the space between the file names. 1. Page background.jpg 2. Page_background.jpg For instance, to set a background image of a page using CSS we would have to add the following two lines of […]
Posted on November 23rd, 2015 by Devi Das
Using CSS you can flip an image. WHY FLIP AN IMAGE ? ————————————————————————————————————- 1. Minimizes the number of HTTP Requests. 2. Minimizes the loading time of the page. 3. Easy to use. SCENARIO: ————————————————————————————————————– Let us assume that you want to use a previous and a next image in your web page then you will […]
Posted on November 23rd, 2015 by Devi Das
Yes you have read it correctly. If you are asking youself how come, then the answer is using Data URI scheme. Data URI is a scheme by which you can add in-line data to a web page. How to do that: This includes the following steps 1. Encode the image to Base64 encoding. The following […]
Posted on November 23rd, 2015 by Pradipta Behera
Placing an image field directly in Jasper report will not render the image in the report. However,the image can be shown in the report using these steps : Step 1 : Create a field of type “Object” in iReport for the image. <field name=”image_field”/> Step 2 : Import JRImageLoader which will be used to show […]