PHPackages                             michaelfrank/dynamicphoto - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Image &amp; Media](/categories/media)
4. /
5. michaelfrank/dynamicphoto

ActiveLibrary[Image &amp; Media](/categories/media)

michaelfrank/dynamicphoto
=========================

Dynamic photo package for blog posts and other features, integrating CKEditor Smart WYSIWYG

v1.5.0(6y ago)83602MITPHP

Since Mar 23Pushed 6y agoCompare

[ Source](https://github.com/maickom88/dynamic-photo)[ Packagist](https://packagist.org/packages/michaelfrank/dynamicphoto)[ RSS](/packages/michaelfrank-dynamicphoto/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (6)Used By (0)

Dynamic Photo
=============

[](#dynamic-photo)

[![GitHub issues](https://camo.githubusercontent.com/dac23cb45ebd3ad0b85bf4893bd7729772a16ee4e1e8225141519856bf0f55a3/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f6d6169636b6f6d38382f64796e616d69632d70686f746f3f7374796c653d666c61742d737175617265)](https://github.com/maickom88/dynamic-photo/issues)[![GitHub forks](https://camo.githubusercontent.com/11d5677159db75ef422c18ff82eeb0b84dc9a5f94974376c4f86688598b39a48/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f6d6169636b6f6d38382f64796e616d69632d70686f746f3f7374796c653d666c61742d737175617265)](https://github.com/maickom88/dynamic-photo/network)[![GitHub stars](https://camo.githubusercontent.com/c97d89ec419537a3a3c1bffc15a8415409dac9bc4a0766c8a2c47a9fd0f47fe5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6d6169636b6f6d38382f64796e616d69632d70686f746f3f636f6c6f723d79656c6c6f77267374796c653d666c61742d737175617265)](https://github.com/maickom88/dynamic-photo/stargazers)[![GitHub version](https://camo.githubusercontent.com/01f3f4c0a2cdd69cde6ae33d3ecc14fd3892cd23dbddf6489a15392f5bab8075/68747470733a2f2f696d672e736869656c64732e696f2f7374617469632f76313f6c6162656c3d56657273696f6e266d6573736167653d76312e352e3026636f6c6f723d626c756576696f6c6574267374796c653d666c61742d737175617265)](https://github.com/maickom88/dynamic-photo/releases/tag/v1.5.0)

Dynamic Photo is a package to assist in integration with CKEditor, a powerful WYSIWYG. With the package it is possible to send photos dynamically to the server and display them.

[![](https://camo.githubusercontent.com/6af2515675c3b5ed5e06b6380c06bcf6f4ede1bb26d327e9d9300fde4e5a00af/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f4d634347586d48596c4644547578345159712f67697068792e676966)](https://camo.githubusercontent.com/6af2515675c3b5ed5e06b6380c06bcf6f4ede1bb26d327e9d9300fde4e5a00af/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f4d634347586d48596c4644547578345159712f67697068792e676966)

✔️ Installing Dynamic Photo
---------------------------

[](#️-installing-dynamic-photo)

#### ❗️ Attention ❗️

[](#️-attention-️)

this package is exclusive for Framework [Laravel](https://laravel.com), So you will also need [Composer](https://getcomposer.org/).

```
composer require michaelfrank/dynamicphoto
```

...Then publish the provider package.

```
php artisan vendor:publish --tag=config
```

✔️ Instalando CDN CKEditor
--------------------------

[](#️-instalando-cdn-ckeditor)

In your VIEW in the script file, paste!

```

```

👇🏼 Now paste the code below

```
ClassicEditor.create( document.querySelector( '#editor' ), {
  ckfinder: {
    uploadUrl: '{{$siteRoot}}/api/uploud-photo',
  }
} ).then( editor => {
  console.log( 'Editor was initialized', editor );
  myEditor = editor;
})
.catch( error => {
  console.error( error.stack );
});
```

#### ❗️ Attention ❗️

[](#️-attention-️-1)

in uploadUrl, just modify your route url if you create a different route.

👇🏼 With that, just create a div with the id = "editor" that will be initialized!

```

```

Now you just need to create an Api route to send the image data that will be automatically displayed!

=======================

✔️ Creating controller and API route.
-------------------------------------

[](#️-creating-controller-and-api-route)

You now need to create your API route. Paste this code in your "api" file.

```
Route::post('/uploud-photo', 'APIs\UploudImages@uploud');
```

👇🏼 With the route created, run the command below to create the Controller.

```
php artisan make:controller APIs/UploudImages
```

Navigate to the created APIs / UploudImages.php file, Open the file.

Now just instantiate the class.

```
use michaelFrank\dynamicphoto\config\CkeditorUploud;
```

✔️ How to use
-------------

[](#️-how-to-use)

Paste this function into your class.

```
public function uploud(Request $req){
  $file =  new CkeditorUploud();
  $saved = $file->uploadAction($req, 'Album01');
  return $saved;
}
```

The uploadAction function expects two arguments. the first is the request file, ie the image. The second will wait for the path, where 'Album01' will be the path where you will save your image

========== Help me, any value will be great for my work. This is your way of thanking. Thanks!

[![Paypal Donation](https://camo.githubusercontent.com/e1ff554a09e8e92bef25abc553ff05b88f45afd695877cf12f3a46558ef65b2e/68747470733a2f2f7777772e70617970616c6f626a656374732e636f6d2f656e5f55532f692f62746e2f62746e5f646f6e61746543435f4c472e676966)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=maickomtutos%40gmail.com&currency_code=BRL&source=url)

###  Health Score

30

—

LowBetter than 61% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

5

Last Release

2339d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/48966499?v=4)[Michael Frank](/maintainers/maickom88)[@maickom88](https://github.com/maickom88)

---

Top Contributors

[![maickom88](https://avatars.githubusercontent.com/u/48966499?v=4)](https://github.com/maickom88 "maickom88 (10 commits)")

### Embed Badge

![Health badge](/badges/michaelfrank-dynamicphoto/health.svg)

```
[![Health](https://phpackages.com/badges/michaelfrank-dynamicphoto/health.svg)](https://phpackages.com/packages/michaelfrank-dynamicphoto)
```

###  Alternatives

[goat1000/svggraph

Generates SVG graphs

135931.0k3](/packages/goat1000-svggraph)[stefangabos/zebra_image

A single-file, lightweight PHP library designed for efficient image manipulation featuring methods for modifying images and applying filters

138121.6k7](/packages/stefangabos-zebra-image)[treinetic/imageartist

ImageArtist is a php gd Wrapper which makes Image manipulation insanely easy, we introduce ImageArtist as Photoshop for php

8783.2k](/packages/treinetic-imageartist)[johncarter/filament-focal-point-picker

An image focal point picker for Filament Admin.

4431.7k1](/packages/johncarter-filament-focal-point-picker)[yk/laravel-ocr

A wrapper for gocr.

1356.6k](/packages/yk-laravel-ocr)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
