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)83592MITPHP

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 3d ago

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 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

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

2241d 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

[milon/barcode

Barcode generator like Qr Code, PDF417, C39, C39+, C39E, C39E+, C93, S25, S25+, I25, I25+, C128, C128A, C128B, C128C, 2-Digits UPC-Based Extention, 5-Digits UPC-Based Extention, EAN 8, EAN 13, UPC-A, UPC-E, MSI (Variation of Plessey code)

1.5k13.3M39](/packages/milon-barcode)[bkwld/croppa

Image thumbnail creation through specially formatted URLs for Laravel

510496.0k23](/packages/bkwld-croppa)[goat1000/svggraph

Generates SVG graphs

132849.6k3](/packages/goat1000-svggraph)[cohensive/embed

Media Embed (for Laravel or as a standalone).

120370.4k](/packages/cohensive-embed)[netresearch/rte-ckeditor-image

Image support in CKEditor for the TYPO3 ecosystem - by Netresearch

63991.3k4](/packages/netresearch-rte-ckeditor-image)[humanmade/tachyon-plugin

Rewrites WordPress image URLs to use Tachyon

87338.5k2](/packages/humanmade-tachyon-plugin)

PHPackages © 2026

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