
Search In
To save image or video into parse database, parse has provided a class PFFile. It can also be used to save documents, music files or any binary data file (upto 10 megabytes only).
To save image first convert image to NSData, assign it to PFFile obje
Hello Reader's, If you have to make the beautiful overlay of blur effect of image on the screen then you can learn it from the code below.
This is done by using CSS 3
Put the css as
#myDiv {
width:280px;
height:200px;
bac
Here I have created and example of Touch Listener Image. In this example a image can pull left, right, up and down easily. It can be used to shift your mobile app icon left and right. For this in below code I have used MotionEvent() method. Below exa
DotNetNuke 7 Setup and Installation is pretty much different then its previous versions. Following are the steps to setup a project in DNN latest version (7.0.4):-
copy DNN Community Edition files to C:/websites/dnndev.me (dir used by template)
This library is used to create pdf from html.
Steps to install:
#Install wkhtmltopdf library in ruby by using below command:
apt-get install wkhtmltopdf
#Use below command to find the path. This path need to add in in pdfkit.rb[in initializers f
Hello All, Sometime we want to play all videos of gallery sequentially. These lines of code will help you to play videos sequentially using MPMoviePlayerController.it worked for me.
In .h file..
MPMoviePlayerController *moviePlayer;
int counter
Below is a function that takes two images as parameter with their coordinates and Height Width and stitches both the images together with their respective coordinates and returns a new image.
public Bitmap StitchImages(Bitmap baseImage, int baseIma
PushNotification code for Latest iOS8 and earlier versions.
You need to find out the iOS version first. Use below Macro keys for iOS check:-
#define IS_iOS7 [[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0?YES:NO
#define IS_iOS8 [[[U
Some times there will be kind of requirement when you need to extract the images or the media files from the device. So here is a method you can use for fulfilling the same.
private void getImagesInDuration(String startDate, String endDate){
D
Hello all,
In asp.net we use DropDownList control which has multiple select items(options) from which we can select one.
We can either set the values of DropDownList list items by hard coding it or we can also bind the the select items and select va
