Moozonian
Web Images Developer News Books Maps Shopping Moo-AI
Showing results for Wants PNG
GitHub Repo https://github.com/ShreyashMhashilkar/Captcha-Generator

ShreyashMhashilkar/Captcha-Generator

This is simple captcha generation code using python. The user has to add the text for which it wants to generate the captcha and it will be saved as png image.
GitHub Repo https://github.com/yoo786/Smart-Image-Compressor

yoo786/Smart-Image-Compressor

A modern, client-side **Image Compressor** built using **HTML, CSS, and JavaScript**. Allows users to compress images to a target size (KB) while maintaining high visual quality. Supports multiple formats (JPG, PNG, WEBP), dynamic resizing, live preview, and history tracking. Perfect for designers, developers, and anyone who wants fast,
GitHub Repo https://github.com/wookenny/Arty

wookenny/Arty

Arty is a little RayTracer written in C++ and wants to become mighty and fast in the future. Let's see if we can help him. So far he uses the libs pugixml(for scene files) and pngwriter for writing/reading png images.)
GitHub Repo https://github.com/merlins-ghost/UncannyEyes

merlins-ghost/UncannyEyes

Minor revision to Phillip Burgess' Uncanny Eyes for the Teensy 3.1/3.2 and Eye Files created by myself and anyone else who wants to deposit eye.h or their .png files.
GitHub Repo https://github.com/Rashmidhakate/drag_n_drop_image

Rashmidhakate/drag_n_drop_image

create drag and drop funstionality with php , in which you can drag image and drop then there is button convert to jpg to png , if wants to convert image jpg to pang you can downaload it
GitHub Repo https://github.com/princesegzy01/MNIST2PNG

princesegzy01/MNIST2PNG

A python scripts that convert Mnist datasets to png files for better visualization for enginners that wants to use Convolutional neural network as againtS Artifical Neural Network for their handwitten classification
GitHub Repo https://github.com/zomeLua/2013-2021-Roblox-Cursor

zomeLua/2013-2021-Roblox-Cursor

These are png files of the cursor used in the Roblox Client from 2013 until 2021. Decided to upload these for anyone who wants the old cursor back. You will have to replace the cursor yourself.
GitHub Repo https://github.com/roy74409/ImgCompressor

roy74409/ImgCompressor

Compress your images instantly with Image Compressor. Reduce JPEG, PNG, and WebP file sizes without losing quality. Fast, free, and secure – perfect for web developers, designers, and anyone who wants optimized images.
GitHub Repo https://github.com/ga8750687/ImageCompressor

ga8750687/ImageCompressor

Compress your images instantly with Image Compressor. Reduce JPEG, PNG, and WebP file sizes without losing quality. Fast, free, and secure – perfect for web developers, designers, and anyone who wants optimized images.
GitHub Repo https://github.com/igorcristianotibuski/pegarerro

igorcristianotibuski/pegarerro

import greenfoot.*; // (World, Actor, GreenfootImage, and Greenfoot) /** * A little penguin that wants to get to the other side. */ public class Pengu extends Mover { private static final int jumpStrength = 16; public void act() { checkKeys(); checkFall(); } private void checkKeys() { if (Greenfoot.isKeyDown("left") ) { setImage("pengu-left.png"); moveLeft(); } if (Greenfoot.isKeyDown("right") ) { setImage("pengu-right.png"); moveRight(); } if (Greenfoot.isKeyDown("space") ) { if (onGround()) jump(); } } private void jump() { setVSpeed(-jumpStrength); fall(); } private void checkFall() { if (onGround()) { setVSpeed(0); } else { fall(); } } }