Download the PHP package rulilg/laravel-stable-diffusion without Composer

On this page you can find all versions of the php package rulilg/laravel-stable-diffusion. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-stable-diffusion

Stable Diffusion integration with Replicate and Laravel

Latest Version on Packagist GitHub Code Style Action Status Total Downloads

Laravel wrapper around the Replicate API to use Stable Diffusion to generate text2img.

Installation

You can install the package via composer:

You can publish and run the migrations with:

You can publish the config file with:

This is the contents of the published config file:

Register in Replicate and store your token in the REPLICATE_TOKEN .env variable.

Optionally, you can publish the views using

Usage

It's important to understand that the image generation process is async. We need first to send a request to Replicate and, after a few seconds, we can fetch the results back.

This is the code we need to generate an image. This will return a StableDiffusionResult model.

After the generate() method is called, an API request to Replicate is sent so they can start processing the prompt. This will generate a record in our database with a status="starting" value, and the ID returned by Replicate.

To retrieve the results back from Replicate, we need to run the following code:

If the results were already fetched, then no API request will be made, so we can safely call this method every time.

The StableDiffusionResult model

After a request to Replicate is made, a new record is inserted in your database with the following information:

Column Description
replicate_id ID from Replicate, which we can use to retrieve the results back
user_prompt Prompt passed to the Prompt::make()->with() method
full_prompt Prompt generated with all the modifiers
url Internal URL to fetch the results back from Replicate
status Status. Can be one of: starting, processing, succeeded, failed or cancelled. This library doesn't support cancelling requests.
output Array of URLs containing the images
error Error description if needed (i.e. no NSFW content is allowed)
predict_time Time spent by Replicate processing your image, which you will be charged for

Additionally, the model has the following attributes to know the status of the prediction:

Also, as results have to be manually updated through the StableDiffusion::get($id) method, we can also fetch the results that are not in a finished status:

Generating prompts

There are several styles already built-in:

Method Prompt modification
realistic() {prompt}, realistic
hyperrealistic() {prompt}, hyperrealistic
conceptArt() {prompt}, concept art
abstractArt() {prompt}, abstract art
oilPainting() {prompt}, oil painting
watercolor() {prompt}, watercolor
acrylic() {prompt}, acrylic
pencilDrawing() {prompt}, pencil drawing
digitalPainting() {prompt}, digital painting
penDrawing() {prompt}, pen drawing
charcoalDrawing() {prompt}, charcoal drawing
byPicasso() {prompt}, by Pablo Picasso
byVanGogh() {prompt}, by Vincent Van Gogh
byRembrandt() {prompt}, by Rembrandt
byMunch() {prompt}, by Edvard Munch
byKlimt() {prompt}, by Paul Klimt
byKandinsky() {prompt}, by Jackson Pollock
byMonet() {prompt}, by Claude Monet
byDali() {prompt}, by Salvador Dali
byDegas() {prompt}, by Edgar Degas
byKahlo() {prompt}, by Frida Kahlo
byCezanne() {prompt}, by Pablo Cezanne
photograph() a photo of {prompt}
highlyDetailed() {prompt}, highly detailed
surrealism() {prompt}, surrealism
trendingOnArtStation() {prompt}, trending on art station
triadicColorScheme() {prompt}, triadic color scheme
smooth() {prompt}, smooth
sharpFocus() {prompt}, sharp focus
matte() {prompt}, matte
elegant() {prompt}, elegant
theMostBeautifulImageEverSeen() {prompt}, the most beautiful image ever seen
illustration() {prompt}, illustration
digitalPaint() {prompt}, digital paint
dark() {prompt}, dark
gloomy() {prompt}, gloomy
octaneRender() {prompt}, octane render
resolution8k() {prompt}, 8k
resolution4k() {prompt}, 4k
washedColors() {prompt}, washed colors
sharp() {prompt}, sharp
dramaticLighting() {prompt}, dramatic lighting
beautiful() {prompt}, beautiful
postProcessing() {prompt}, post processing
pictureOfTheDay() {prompt}, picture of the day
ambientLighting() {prompt}, ambient lighting
epicComposition() {prompt}, epic composition

Additionally, you can add custom styles with the following methods:

To learn more on how to build prompts for Stable Diffusion, please enter this link.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-stable-diffusion with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
spatie/laravel-package-tools Version ^1.13.0
illuminate/contracts Version ^9.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package rulilg/laravel-stable-diffusion contains the following files

Loading the files please wait ....