You don't have to wait to go to a theme park to take an old-timey photograph with your family. Instead, you can use Cloudinary to quickly and easily create this effect on any of your current images.
cl_image_tag("mac-bubbles.jpg", array("transformation"=>array( array("width"=>1000, "crop"=>"scale"), array("overlay"=>"torn-paper", "width"=>"1.0", "height"=>"1.0", "flags"=>array("relative", "cutter")), array("overlay"=>"torn-paper", "width"=>"1.0", "height"=>"1.0", "flags"=>"relative", "opacity"=>40), array("effect"=>"sepia") )))
(new ImageTag('mac-bubbles.jpg')) ->resize(Resize::scale()->width(1000)) ->reshape( Reshape::cutByImage(Source::image('torn-paper') ->transformation((new ImageTransformation()) ->resize(Resize::scale()->width(1.0)->height(1.0)->relative())))) ->overlay( Overlay::source(Source::image('torn-paper') ->transformation((new ImageTransformation()) ->resize(Resize::scale()->width(1.0)->height(1.0)->relative()) ->adjust(Adjust::opacity(40))))) ->effect(Effect::sepia());
CloudinaryImage("mac-bubbles.jpg").image(transformation=[ {'width': 1000, 'crop': "scale"}, {'overlay': "torn-paper", 'width': "1.0", 'height': "1.0", 'flags': ["relative", "cutter"]}, {'overlay': "torn-paper", 'width': "1.0", 'height': "1.0", 'flags': "relative", 'opacity': 40}, {'effect': "sepia"} ])
cloudinary.url().transformation(new Transformation() .width(1000).crop("scale").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative", "cutter").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative").opacity(40).chain() .effect("sepia")).imageTag("mac-bubbles.jpg");
cloudinary.imageTag('mac-bubbles.jpg', {transformation: [ {width: 1000, crop: "scale"}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: ["relative", "cutter"]}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: "relative", opacity: 40}, {effect: "sepia"} ]}).toHtml();
$.cloudinary.image("mac-bubbles.jpg", {transformation: [ {width: 1000, crop: "scale"}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: ["relative", "cutter"]}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: "relative", opacity: 40}, {effect: "sepia"} ]})
<Image publicId="mac-bubbles.jpg" > <Transformation width="1000" crop="scale" /> <Transformation overlay="torn-paper" width="1.0" height="1.0" flags={["relative", "cutter"]} /> <Transformation overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40" /> <Transformation effect="sepia" /> </Image>
<cld-image publicId="mac-bubbles.jpg" > <cld-transformation width="1000" crop="scale" /> <cld-transformation :overlay="torn-paper" width="1.0" height="1.0" flags={["relative", "cutter"]} /> <cld-transformation :overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40" /> <cld-transformation effect="sepia" /> </cld-image>
<cl-image public-id="mac-bubbles.jpg" > <cl-transformation width="1000" crop="scale"> </cl-transformation> <cl-transformation overlay="torn-paper" width="1.0" height="1.0" flags={{["relative", "cutter"]}}> </cl-transformation> <cl-transformation overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40"> </cl-transformation> <cl-transformation effect="sepia"> </cl-transformation> </cl-image>
cloudinary.Api.UrlImgUp.Transform(new Transformation() .Width(1000).Crop("scale").Chain() .Overlay(new Layer().PublicId("torn-paper")).Width(1.0).Height(1.0).Flags("relative", "cutter").Chain() .Overlay(new Layer().PublicId("torn-paper")).Width(1.0).Height(1.0).Flags("relative").Opacity(40).Chain() .Effect("sepia")).BuildImageTag("mac-bubbles.jpg")
MediaManager.get().url().transformation(new Transformation() .width(1000).crop("scale").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative", "cutter").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative").opacity(40).chain() .effect("sepia")).generate("mac-bubbles.jpg");
imageView.cldSetImage(cloudinary.createUrl().setTransformation(CLDTransformation() .setWidth(1000).setCrop("scale").chain() .setOverlay("torn-paper").setWidth(1.0).setHeight(1.0).setFlags("relative", "cutter").chain() .setOverlay("torn-paper").setWidth(1.0).setHeight(1.0).setFlags("relative").setOpacity(40).chain() .setEffect("sepia")).generate("mac-bubbles.jpg")!, cloudinary: cloudinary)

We'll start with two images to work off of:
A picture of a baby with some bubbles:

An old piece of parchment:

First, we'll use the parchment image as a mask to crop the baby picture (more information here: https://cloudinary.com/cookbook/custom_shapes_cropping). Note that we're also resizing the parchment mask to match the width an height of the baby picture.

Next, we'll overlay the parchment on the entire image, making it semi transparent. This will transfer the weathered look over to the image:
cl_image_tag("mac-bubbles.jpg", array("transformation"=>array( array("width"=>1000, "crop"=>"scale"), array("overlay"=>"torn-paper", "width"=>"1.0", "height"=>"1.0", "flags"=>array("relative", "cutter")), array("overlay"=>"torn-paper", "width"=>"1.0", "height"=>"1.0", "flags"=>"relative", "opacity"=>40) )))
(new ImageTag('mac-bubbles.jpg')) ->resize(Resize::scale()->width(1000)) ->reshape( Reshape::cutByImage(Source::image('torn-paper') ->transformation((new ImageTransformation()) ->resize(Resize::scale()->width(1.0)->height(1.0)->relative())))) ->overlay( Overlay::source(Source::image('torn-paper') ->transformation((new ImageTransformation()) ->resize(Resize::scale()->width(1.0)->height(1.0)->relative()) ->adjust(Adjust::opacity(40)) )));
CloudinaryImage("mac-bubbles.jpg").image(transformation=[ {'width': 1000, 'crop': "scale"}, {'overlay': "torn-paper", 'width': "1.0", 'height': "1.0", 'flags': ["relative", "cutter"]}, {'overlay': "torn-paper", 'width': "1.0", 'height': "1.0", 'flags': "relative", 'opacity': 40} ])
cloudinary.url().transformation(new Transformation() .width(1000).crop("scale").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative", "cutter").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative").opacity(40)).imageTag("mac-bubbles.jpg");
cloudinary.imageTag('mac-bubbles.jpg', {transformation: [ {width: 1000, crop: "scale"}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: ["relative", "cutter"]}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: "relative", opacity: 40} ]}).toHtml();
$.cloudinary.image("mac-bubbles.jpg", {transformation: [ {width: 1000, crop: "scale"}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: ["relative", "cutter"]}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: "relative", opacity: 40} ]})
<cld-image publicId="mac-bubbles.jpg" > <cld-transformation width="1000" crop="scale" /> <cld-transformation :overlay="torn-paper" width="1.0" height="1.0" flags={["relative", "cutter"]} /> <cld-transformation :overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40" /> </cld-image>
<cl-image public-id="mac-bubbles.jpg" > <cl-transformation width="1000" crop="scale"> </cl-transformation> <cl-transformation overlay="torn-paper" width="1.0" height="1.0" flags={{["relative", "cutter"]}}> </cl-transformation> <cl-transformation overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40"> </cl-transformation> </cl-image>
cloudinary.Api.UrlImgUp.Transform(new Transformation() .Width(1000).Crop("scale").Chain() .Overlay(new Layer().PublicId("torn-paper")).Width(1.0).Height(1.0).Flags("relative", "cutter").Chain() .Overlay(new Layer().PublicId("torn-paper")).Width(1.0).Height(1.0).Flags("relative").Opacity(40)).BuildImageTag("mac-bubbles.jpg")
MediaManager.get().url().transformation(new Transformation() .width(1000).crop("scale").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative", "cutter").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative").opacity(40)).generate("mac-bubbles.jpg");
imageView.cldSetImage(cloudinary.createUrl().setTransformation(CLDTransformation() .setWidth(1000).setCrop("scale").chain() .setOverlay("torn-paper").setWidth(1.0).setHeight(1.0).setFlags("relative", "cutter").chain() .setOverlay("torn-paper").setWidth(1.0).setHeight(1.0).setFlags("relative").setOpacity(40)).generate("mac-bubbles.jpg")!, cloudinary: cloudinary)

Finally, we can add an effect to the end product to give it an enhanced feel (in this case, we'll apply the Sepia effect, giving the image a much more aged look):
cl_image_tag("mac-bubbles.jpg", array("transformation"=>array( array("width"=>1000, "crop"=>"scale"), array("overlay"=>"torn-paper", "width"=>"1.0", "height"=>"1.0", "flags"=>array("relative", "cutter")), array("overlay"=>"torn-paper", "width"=>"1.0", "height"=>"1.0", "flags"=>"relative", "opacity"=>40), array("effect"=>"sepia") )))
(new ImageTag('mac-bubbles.jpg')) ->resize(Resize::scale()->width(1000)) ->reshape( Reshape::cutByImage(Source::image('torn-paper') ->transformation((new ImageTransformation()) ->resize(Resize::scale()->width(1.0)->height(1.0)->relative())))) ->overlay( Overlay::source(Source::image('torn-paper') ->transformation((new ImageTransformation()) ->resize(Resize::scale()->width(1.0)->height(1.0)->relative()) ->adjust(Adjust::opacity(40))))) ->effect(Effect::sepia());
CloudinaryImage("mac-bubbles.jpg").image(transformation=[ {'width': 1000, 'crop': "scale"}, {'overlay': "torn-paper", 'width': "1.0", 'height': "1.0", 'flags': ["relative", "cutter"]}, {'overlay': "torn-paper", 'width': "1.0", 'height': "1.0", 'flags': "relative", 'opacity': 40}, {'effect': "sepia"} ])
cloudinary.url().transformation(new Transformation() .width(1000).crop("scale").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative", "cutter").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative").opacity(40).chain() .effect("sepia")).imageTag("mac-bubbles.jpg");
cloudinary.imageTag('mac-bubbles.jpg', {transformation: [ {width: 1000, crop: "scale"}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: ["relative", "cutter"]}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: "relative", opacity: 40}, {effect: "sepia"} ]}).toHtml();
$.cloudinary.image("mac-bubbles.jpg", {transformation: [ {width: 1000, crop: "scale"}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: ["relative", "cutter"]}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: "relative", opacity: 40}, {effect: "sepia"} ]})
<Image publicId="mac-bubbles.jpg" > <Transformation width="1000" crop="scale" /> <Transformation overlay="torn-paper" width="1.0" height="1.0" flags={["relative", "cutter"]} /> <Transformation overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40" /> <Transformation effect="sepia" /> </Image>
<cld-image publicId="mac-bubbles.jpg" > <cld-transformation width="1000" crop="scale" /> <cld-transformation :overlay="torn-paper" width="1.0" height="1.0" flags={["relative", "cutter"]} /> <cld-transformation :overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40" /> <cld-transformation effect="sepia" /> </cld-image>
<cl-image public-id="mac-bubbles.jpg" > <cl-transformation width="1000" crop="scale"> </cl-transformation> <cl-transformation overlay="torn-paper" width="1.0" height="1.0" flags={{["relative", "cutter"]}}> </cl-transformation> <cl-transformation overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40"> </cl-transformation> <cl-transformation effect="sepia"> </cl-transformation> </cl-image>
cloudinary.Api.UrlImgUp.Transform(new Transformation() .Width(1000).Crop("scale").Chain() .Overlay(new Layer().PublicId("torn-paper")).Width(1.0).Height(1.0).Flags("relative", "cutter").Chain() .Overlay(new Layer().PublicId("torn-paper")).Width(1.0).Height(1.0).Flags("relative").Opacity(40).Chain() .Effect("sepia")).BuildImageTag("mac-bubbles.jpg")
MediaManager.get().url().transformation(new Transformation() .width(1000).crop("scale").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative", "cutter").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative").opacity(40).chain() .effect("sepia")).generate("mac-bubbles.jpg");
imageView.cldSetImage(cloudinary.createUrl().setTransformation(CLDTransformation() .setWidth(1000).setCrop("scale").chain() .setOverlay("torn-paper").setWidth(1.0).setHeight(1.0).setFlags("relative", "cutter").chain() .setOverlay("torn-paper").setWidth(1.0).setHeight(1.0).setFlags("relative").setOpacity(40).chain() .setEffect("sepia")).generate("mac-bubbles.jpg")!, cloudinary: cloudinary)

Try using a combination of these effects to create a wide variety of styles:
Changed to grayscale to make it look like it was taken from a newspaper article:
cl_image_tag("mac-bubbles.jpg", array("transformation"=>array( array("width"=>1000, "crop"=>"scale"), array("overlay"=>"torn-paper", "width"=>"1.0", "height"=>"1.0", "flags"=>array("relative", "cutter")), array("overlay"=>"torn-paper", "width"=>"1.0", "height"=>"1.0", "flags"=>"relative", "opacity"=>40), array("effect"=>"grayscale") )))
(new ImageTag('mac-bubbles.jpg')) ->resize(Resize::scale()->width(1000)) ->reshape( Reshape::cutByImage(Source::image('torn-paper') ->transformation((new ImageTransformation()) ->resize(Resize::scale()->width(1.0)->height(1.0)->relative())))) ->overlay( Overlay::source(Source::image('torn-paper') ->transformation((new ImageTransformation()) ->resize(Resize::scale()->width(1.0)->height(1.0)->relative()) ->adjust(Adjust::opacity(40))))) ->effect(Effect::grayscale());
CloudinaryImage("mac-bubbles.jpg").image(transformation=[ {'width': 1000, 'crop': "scale"}, {'overlay': "torn-paper", 'width': "1.0", 'height': "1.0", 'flags': ["relative", "cutter"]}, {'overlay': "torn-paper", 'width': "1.0", 'height': "1.0", 'flags': "relative", 'opacity': 40}, {'effect': "grayscale"} ])
cloudinary.url().transformation(new Transformation() .width(1000).crop("scale").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative", "cutter").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative").opacity(40).chain() .effect("grayscale")).imageTag("mac-bubbles.jpg");
cloudinary.imageTag('mac-bubbles.jpg', {transformation: [ {width: 1000, crop: "scale"}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: ["relative", "cutter"]}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: "relative", opacity: 40}, {effect: "grayscale"} ]}).toHtml();
$.cloudinary.image("mac-bubbles.jpg", {transformation: [ {width: 1000, crop: "scale"}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: ["relative", "cutter"]}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: "relative", opacity: 40}, {effect: "grayscale"} ]})
<Image publicId="mac-bubbles.jpg" > <Transformation width="1000" crop="scale" /> <Transformation overlay="torn-paper" width="1.0" height="1.0" flags={["relative", "cutter"]} /> <Transformation overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40" /> <Transformation effect="grayscale" /> </Image>
<cld-image publicId="mac-bubbles.jpg" > <cld-transformation width="1000" crop="scale" /> <cld-transformation :overlay="torn-paper" width="1.0" height="1.0" flags={["relative", "cutter"]} /> <cld-transformation :overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40" /> <cld-transformation effect="grayscale" /> </cld-image>
<cl-image public-id="mac-bubbles.jpg" > <cl-transformation width="1000" crop="scale"> </cl-transformation> <cl-transformation overlay="torn-paper" width="1.0" height="1.0" flags={{["relative", "cutter"]}}> </cl-transformation> <cl-transformation overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40"> </cl-transformation> <cl-transformation effect="grayscale"> </cl-transformation> </cl-image>
cloudinary.Api.UrlImgUp.Transform(new Transformation() .Width(1000).Crop("scale").Chain() .Overlay(new Layer().PublicId("torn-paper")).Width(1.0).Height(1.0).Flags("relative", "cutter").Chain() .Overlay(new Layer().PublicId("torn-paper")).Width(1.0).Height(1.0).Flags("relative").Opacity(40).Chain() .Effect("grayscale")).BuildImageTag("mac-bubbles.jpg")
MediaManager.get().url().transformation(new Transformation() .width(1000).crop("scale").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative", "cutter").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative").opacity(40).chain() .effect("grayscale")).generate("mac-bubbles.jpg");
imageView.cldSetImage(cloudinary.createUrl().setTransformation(CLDTransformation() .setWidth(1000).setCrop("scale").chain() .setOverlay("torn-paper").setWidth(1.0).setHeight(1.0).setFlags("relative", "cutter").chain() .setOverlay("torn-paper").setWidth(1.0).setHeight(1.0).setFlags("relative").setOpacity(40).chain() .setEffect("grayscale")).generate("mac-bubbles.jpg")!, cloudinary: cloudinary)

Adding some overlayed text:
cl_image_tag("mac-bubbles.jpg", :transformation=>[ {:width=>1000, :crop=>"scale"}, {:overlay=>"torn-paper", :width=>1.0, :height=>1.0, :flags=>["relative", "cutter"]}, {:overlay=>"torn-paper", :width=>1.0, :height=>1.0, :flags=>"relative", :opacity=>40}, {:opacity=>80, :background=>"white"}, {:effect=>"sepia"}, {:overlay=>{:font_family=>"Cursive", :font_size=>50, :font_weight=>"bold", :stroke=>"stroke", :text=>"%22Mad%20Dog%22%20Mac"}, :gravity=>"south_west", :x=>60, :y=>120, :opacity=>70, :angle=>10}, {:overlay=>{:font_family=>"Cursive", :font_size=>50, :font_weight=>"bold", :stroke=>"stroke", :text=>"South%20Dakota%201890"}, :gravity=>"south_west", :x=>60, :y=>90, :opacity=>70, :angle=>10} ])
cl_image_tag("mac-bubbles.jpg", array("transformation"=>array( array("width"=>1000, "crop"=>"scale"), array("overlay"=>"torn-paper", "width"=>"1.0", "height"=>"1.0", "flags"=>array("relative", "cutter")), array("overlay"=>"torn-paper", "width"=>"1.0", "height"=>"1.0", "flags"=>"relative", "opacity"=>40), array("opacity"=>80, "background"=>"white"), array("effect"=>"sepia"), array("overlay"=>array("font_family"=>"Cursive", "font_size"=>50, "font_weight"=>"bold", "stroke"=>"stroke", "text"=>"%22Mad%20Dog%22%20Mac"), "gravity"=>"south_west", "x"=>60, "y"=>120, "opacity"=>70, "angle"=>10), array("overlay"=>array("font_family"=>"Cursive", "font_size"=>50, "font_weight"=>"bold", "stroke"=>"stroke", "text"=>"South%20Dakota%201890"), "gravity"=>"south_west", "x"=>60, "y"=>90, "opacity"=>70, "angle"=>10) )))
(new ImageTag('mac-bubbles.jpg')) ->resize(Resize::scale()->width(1000)) ->reshape( Reshape::cutByImage(Source::image('torn-paper') ->transformation((new ImageTransformation()) ->resize(Resize::scale()->width(1.0)->height(1.0)->relative())))) ->overlay( Overlay::source(Source::image('torn-paper') ->transformation((new ImageTransformation()) ->resize(Resize::scale()->width(1.0)->height(1.0)->relative()) ->adjust(Adjust::opacity(40))))) ->adjust(Adjust::opacity(80)) ->backgroundColor(Color::WHITE)->effect(Effect::sepia()) ->overlay( Overlay::source( Source::text('"Mad Dog" Mac', (new TextStyle('Cedarville Cursive', 50)) ->fontWeight(FontWeight::bold()) ->stroke()) ->transformation((new ImageTransformation()) ->rotate(Rotate::byAngle(10)) ->adjust(Adjust::opacity(70)))) ->position((new Position()) ->gravity(Gravity::compass(Compass::southWest())) ->offsetX(60)->offsetY(120))) ->overlay( Overlay::source( Source::text('South Dakota 1890', (new TextStyle('Cedarville Cursive', 50)) ->fontWeight(FontWeight::bold()) ->stroke()) ->transformation((new ImageTransformation()) ->rotate(Rotate::byAngle(10)) ->adjust(Adjust::opacity(70)))) ->position((new Position()) ->gravity(Gravity::compass(Compass::southWest())) ->offsetX(60)->offsetY(90) ));
CloudinaryImage("mac-bubbles.jpg").image(transformation=[ {'width': 1000, 'crop': "scale"}, {'overlay': "torn-paper", 'width': "1.0", 'height': "1.0", 'flags': ["relative", "cutter"]}, {'overlay': "torn-paper", 'width': "1.0", 'height': "1.0", 'flags': "relative", 'opacity': 40}, {'opacity': 80, 'background': "white"}, {'effect': "sepia"}, {'overlay': {'font_family': "Cursive", 'font_size': 50, 'font_weight': "bold", 'stroke': "stroke", 'text': "%22Mad%20Dog%22%20Mac"}, 'gravity': "south_west", 'x': 60, 'y': 120, 'opacity': 70, 'angle': 10}, {'overlay': {'font_family': "Cursive", 'font_size': 50, 'font_weight': "bold", 'stroke': "stroke", 'text': "South%20Dakota%201890"}, 'gravity': "south_west", 'x': 60, 'y': 90, 'opacity': 70, 'angle': 10} ])
cloudinary.image("mac-bubbles.jpg", {transformation: [ {width: 1000, crop: "scale"}, {overlay: "torn-paper", width: "1.0", height: "1.0", flags: ["relative", "cutter"]}, {overlay: "torn-paper", width: "1.0", height: "1.0", flags: "relative", opacity: 40}, {opacity: 80, background: "white"}, {effect: "sepia"}, {overlay: {font_family: "Cursive", font_size: 50, font_weight: "bold", stroke: "stroke", text: "%22Mad%20Dog%22%20Mac"}, gravity: "south_west", x: 60, y: 120, opacity: 70, angle: 10}, {overlay: {font_family: "Cursive", font_size: 50, font_weight: "bold", stroke: "stroke", text: "South%20Dakota%201890"}, gravity: "south_west", x: 60, y: 90, opacity: 70, angle: 10} ]})
cloudinary.url().transformation(new Transformation() .width(1000).crop("scale").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative", "cutter").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative").opacity(40).chain() .opacity(80).background("white").chain() .effect("sepia").chain() .overlay(new TextLayer().fontFamily("Cursive").fontSize(50).fontWeight("bold").stroke("stroke").text("%22Mad%20Dog%22%20Mac")).gravity("south_west").x(60).y(120).opacity(70).angle(10).chain() .overlay(new TextLayer().fontFamily("Cursive").fontSize(50).fontWeight("bold").stroke("stroke").text("South%20Dakota%201890")).gravity("south_west").x(60).y(90).opacity(70).angle(10)).imageTag("mac-bubbles.jpg");
cloudinary.imageTag('mac-bubbles.jpg', {transformation: [ {width: 1000, crop: "scale"}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: ["relative", "cutter"]}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: "relative", opacity: 40}, {opacity: 80, background: "white"}, {effect: "sepia"}, {overlay: new cloudinary.TextLayer().fontFamily("Cursive").fontSize(50).fontWeight("bold").stroke("stroke").text("%22Mad%20Dog%22%20Mac"), gravity: "south_west", x: 60, y: 120, opacity: 70, angle: 10}, {overlay: new cloudinary.TextLayer().fontFamily("Cursive").fontSize(50).fontWeight("bold").stroke("stroke").text("South%20Dakota%201890"), gravity: "south_west", x: 60, y: 90, opacity: 70, angle: 10} ]}).toHtml();
$.cloudinary.image("mac-bubbles.jpg", {transformation: [ {width: 1000, crop: "scale"}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: ["relative", "cutter"]}, {overlay: new cloudinary.Layer().publicId("torn-paper"), width: "1.0", height: "1.0", flags: "relative", opacity: 40}, {opacity: 80, background: "white"}, {effect: "sepia"}, {overlay: new cloudinary.TextLayer().fontFamily("Cursive").fontSize(50).fontWeight("bold").stroke("stroke").text("%22Mad%20Dog%22%20Mac"), gravity: "south_west", x: 60, y: 120, opacity: 70, angle: 10}, {overlay: new cloudinary.TextLayer().fontFamily("Cursive").fontSize(50).fontWeight("bold").stroke("stroke").text("South%20Dakota%201890"), gravity: "south_west", x: 60, y: 90, opacity: 70, angle: 10} ]})
<Image publicId="mac-bubbles.jpg" > <Transformation width="1000" crop="scale" /> <Transformation overlay="torn-paper" width="1.0" height="1.0" flags={["relative", "cutter"]} /> <Transformation overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40" /> <Transformation opacity="80" background="white" /> <Transformation effect="sepia" /> <Transformation overlay={{fontFamily: "Cursive", fontSize: 50, fontWeight: "bold", stroke: "stroke", text: "%22Mad%20Dog%22%20Mac"}} gravity="south_west" x="60" y="120" opacity="70" angle="10" /> <Transformation overlay={{fontFamily: "Cursive", fontSize: 50, fontWeight: "bold", stroke: "stroke", text: "South%20Dakota%201890"}} gravity="south_west" x="60" y="90" opacity="70" angle="10" /> </Image>
<cld-image publicId="mac-bubbles.jpg" > <cld-transformation width="1000" crop="scale" /> <cld-transformation :overlay="torn-paper" width="1.0" height="1.0" flags={["relative", "cutter"]} /> <cld-transformation :overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40" /> <cld-transformation opacity="80" background="white" /> <cld-transformation effect="sepia" /> <cld-transformation :overlay="{fontFamily: 'Cursive', fontSize: 50, fontWeight: 'bold', stroke: 'stroke', text: '%22Mad%20Dog%22%20Mac'}" gravity="south_west" x="60" y="120" opacity="70" angle="10" /> <cld-transformation :overlay="{fontFamily: 'Cursive', fontSize: 50, fontWeight: 'bold', stroke: 'stroke', text: 'South%20Dakota%201890'}" gravity="south_west" x="60" y="90" opacity="70" angle="10" /> </cld-image>
<cl-image public-id="mac-bubbles.jpg" > <cl-transformation width="1000" crop="scale"> </cl-transformation> <cl-transformation overlay="torn-paper" width="1.0" height="1.0" flags={{["relative", "cutter"]}}> </cl-transformation> <cl-transformation overlay="torn-paper" width="1.0" height="1.0" flags="relative" opacity="40"> </cl-transformation> <cl-transformation opacity="80" background="white"> </cl-transformation> <cl-transformation effect="sepia"> </cl-transformation> <cl-transformation overlay="text:Cedarville%20Cursive_50_bold_stroke:%22Mad%20Dog%22%20Mac" gravity="south_west" x="60" y="120" opacity="70" angle="10"> </cl-transformation> <cl-transformation overlay="text:Cedarville%20Cursive_50_bold_stroke:South%20Dakota%201890" gravity="south_west" x="60" y="90" opacity="70" angle="10"> </cl-transformation> </cl-image>
cloudinary.Api.UrlImgUp.Transform(new Transformation() .Width(1000).Crop("scale").Chain() .Overlay(new Layer().PublicId("torn-paper")).Width(1.0).Height(1.0).Flags("relative", "cutter").Chain() .Overlay(new Layer().PublicId("torn-paper")).Width(1.0).Height(1.0).Flags("relative").Opacity(40).Chain() .Opacity(80).Background("white").Chain() .Effect("sepia").Chain() .Overlay(new TextLayer().FontFamily("Cursive").FontSize(50).FontWeight("bold").Stroke("stroke").Text("%22Mad%20Dog%22%20Mac")).Gravity("south_west").X(60).Y(120).Opacity(70).Angle(10).Chain() .Overlay(new TextLayer().FontFamily("Cursive").FontSize(50).FontWeight("bold").Stroke("stroke").Text("South%20Dakota%201890")).Gravity("south_west").X(60).Y(90).Opacity(70).Angle(10)).BuildImageTag("mac-bubbles.jpg")
MediaManager.get().url().transformation(new Transformation() .width(1000).crop("scale").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative", "cutter").chain() .overlay(new Layer().publicId("torn-paper")).width(1.0).height(1.0).flags("relative").opacity(40).chain() .opacity(80).background("white").chain() .effect("sepia").chain() .overlay(new TextLayer().fontFamily("Cursive").fontSize(50).fontWeight("bold").stroke("stroke").text("%22Mad%20Dog%22%20Mac")).gravity("south_west").x(60).y(120).opacity(70).angle(10).chain() .overlay(new TextLayer().fontFamily("Cursive").fontSize(50).fontWeight("bold").stroke("stroke").text("South%20Dakota%201890")).gravity("south_west").x(60).y(90).opacity(70).angle(10)).generate("mac-bubbles.jpg");
imageView.cldSetImage(cloudinary.createUrl().setTransformation(CLDTransformation() .setWidth(1000).setCrop("scale").chain() .setOverlay("torn-paper").setWidth(1.0).setHeight(1.0).setFlags("relative", "cutter").chain() .setOverlay("torn-paper").setWidth(1.0).setHeight(1.0).setFlags("relative").setOpacity(40).chain() .setOpacity(80).setBackground("white").chain() .setEffect("sepia").chain() .setOverlay("text:Cedarville%20Cursive_50_bold_stroke:%22Mad%20Dog%22%20Mac").setGravity("south_west").setX(60).setY(120).setOpacity(70).setAngle(10).chain() .setOverlay("text:Cedarville%20Cursive_50_bold_stroke:South%20Dakota%201890").setGravity("south_west").setX(60).setY(90).setOpacity(70).setAngle(10)).generate("mac-bubbles.jpg")!, cloudinary: cloudinary)

Post some of your variations!