Editor de Imagens
About this app
Um editor de imagens com diversos efeitos e funcionalidades.
Editor de Imagens Editor de Imagens Arte Pop Negativo Caneta Mágica Turquesa Positivo Salvar como PDF
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Editor de Imagens</title>
<meta name="description" content="Um editor de imagens com diversos efeitos e funcionalidades.">
<meta name="keywords" content="editor de imagens, efeitos, arte pop, negativo, caneta mágica, turquesa, positivo, enviar imagens, PDF">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript">
function applyEffect(effectName) {
// Code to apply the selected effect to the image
// ...
}
function uploadImage(file) {
// Code to handle image upload and display it on the editor
// ...
}
function saveAsPDF() {
// Code to save the edited image as a PDF file
// ...
}
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
// Get the image container element
const imageContainer = document.getElementById("image-container");
// Get the input element for uploading images
const imageInput = document.getElementById("image-input");
// Add event listener for image upload
imageInput.addEventListener("change", function(e) {
const file = e.target.files[0];
uploadImage(file);
});
// Get the buttons for applying effects
const popArtButton = document.getElementById("popart-button");
const negativeButton = document.getElementById("negative-button");
const magicPenButton = document.getElementById("magicpen-button");
const turquoiseButton = document.getElementById("turquoise-button");
const positiveButton = document.getElementById("positive-button");
// Add event listeners for applying effects
popArtButton.addEventListener("click", function() {
applyEffect("popart");
});
negativeButton.addEventListener("click", function() {
applyEffect("negative");
});
magicPenButton.addEventListener("click", function() {
applyEffect("magicpen");
});
turquoiseButton.addEventListener("click", function() {
applyEffect("turquoise");
});
positiveButton.addEventListener("click", function() {
applyEffect("positive");
});
// Get the save as PDF button
const savePDFButton = document.getElementById("save-pdf-button");
// Add event listener for saving as PDF
savePDFButton.addEventListener("click", function() {
saveAsPDF();
});
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
#image-container {
text-align: center;
margin-bottom: 20px;
}
#image-preview {
max-width: 100%;
max-height: 400px;
}
.effect-button {
margin-right: 10px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Editor de Imagens</h1>
<div id="image-container">
<img id="image-preview" src="" alt="Imagem" />
</div>
<div>
<input type="file" id="image-input" accept="image/*" />
<button id="popart-button" class="effect-button btn btn-primary">
<i class="fa fa-paint-brush"></i> Arte Pop
</button>
<button id="negative-button" class="effect-button btn btn-primary">
<i class="fa fa-adjust"></i> Negativo
</button>
<button id="magicpen-button" class="effect-button btn btn-primary">
<i class="fa fa-magic"></i> Caneta Mágica
</button>
<button id="turquoise-button" class="effect-button btn btn-primary">
<i class="fa fa-paint-brush"></i> Turquesa
</button>
<button id="positive-button" class="effect-button btn btn-primary">
<i class="fa fa-adjust"></i> Positivo
</button>
<button id="save-pdf-button" class="btn btn-primary">
<i class="fa fa-file-pdf-o"></i> Salvar como PDF
</button>
</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!