Questions tagged [adobecreativesdk]

The Adobe Creative SDK provides Creative Cloud and Creative Tool components for developers on iOS, Android, and Web.

The Adobe Creative SDK

Overview

The Adobe Creative SDK offers the following Creative Cloud and Creative Tool components:

Creative Cloud

  • Asset Browser UI
  • Send To Desktop API
  • Creative Cloud APIs for Files, Libraries, Lightroom photos and more

Creative Tools

  • Image Editor UI
  • Typekit UI
  • Color UI
  • Adobe Labs

Documentation

Documentation for the Creative SDK for iOS, Android, and Web can be found at creativesdk.adobe.com.

Platform-specific documentation:

Blog

See the Creative SDK blog for technical posts and examples of apps that integrate Creative SDK components.

GitHub

For sample app repos that you can fork, clone, and run, visit the Creative SDK GitHub account.

If you are just getting started with the Creative SDK, see the Getting Started repo for your platform:

Plugins

Plugins extend the availability of the Creative SDK to even more developers.

See the Plugins section of the Creative SDK GitHub page to learn more.

142 questions
1
vote
0 answers

Adobecreativesdk: "Asking for customize more icon menus, localize menu text, adding frame and stickers by adobe team support

Currently, I am working on the swift app which allow user to edit their own photos either by using camera or their own photo library. Adobe Creative sdk image editor is great; however, the possibility in order to customize the app interface is quite…
Emily Tes
  • 11
  • 3
1
vote
1 answer

Creative sdk Editing screen stays at portrait mode in Phones

I am using adobe creative sdk in my android app. Its working great one issue I'm facing is that I am trying to edit an image in landscape mode in phone its not working the Edit screen sticks to Portrait mode in phone, even when I rotate my phone.…
Raghavendra
  • 2,305
  • 25
  • 30
1
vote
0 answers

Integrate AdobeCreativeSDKCore in iOS Xcode Project

All I am trying to integrate the Private Framework AdobeCreativeSDKCore into my Xcode project/ I followed the steps from the adobe provided documentation for the…
KkMIW
  • 1,092
  • 1
  • 17
  • 27
1
vote
1 answer

Is there a way to set different crop tool items on different Adobe Creative SDK image editor calls?

I want to open image editor with not limited crop tool at the one point and i want to open image editor with the square crop item only at the another point at the one application. I can set crop tool items for a whole application but not for a…
Alexey Rogovoy
  • 691
  • 6
  • 13
1
vote
4 answers

Translating High Resolution Adobe Creative SDK from PHP to Ruby on Rails

I am trying to implement Adobe's Creative SDK into my Ruby on Rails app. https://creativesdk.adobe.com/docs/web/#/articles/highresolution/index.html I have the required access to the hi-res API. The examples they have are for PHP and Node.js, and I…
mdh1
  • 11
  • 1
1
vote
1 answer

How to prevent AdobeCreativeSDK automatic save images to android phone?

i have an issue here whenever the editor intent is activated, the sdk automatic saves the image to the gallery. And again once after the edit is done within the intent. How do i prevent the automatic saving here?…
1
vote
1 answer

Insert custom image function

I'm building an app to let user design business card. Is there a way to let my user insert an image like a sticker but instead insert a custom logo image. something like this but a custom logo instead Thank you edit : look like now its not possible.…
1
vote
1 answer

Is there a way to use adobe creative sdk [i want to use only adobe labs magic selection tool] without login?

I'm using adobe labs magic selection tool, but it asks the user for adobe sign in. Is there any way to not make the user login, but still use the magic selection tool? I heard about this, but couldn't implement. See this link
Thejus
  • 169
  • 12
1
vote
1 answer

Creative SDK support in production mode

In one of the articles, its mentioned that the Creative SDK support only 25 users in the development mode. May I know, how many users it supports in Production mode. Supported platforms are: Mobile Web, iOS & Android
Ravi
  • 11
  • 1
1
vote
1 answer

Crop functionality of Aviary is not working | Android

I have integrated Aviary Photo editor in my Android App. I am passing the tools below- String[] tools = new String[]{"SHARPNESS", "EFFECTS", "REDEYE", "CROP", "WHITEN", "DRAW", "STICKERS", "TEXT",…
Shoeb Siddique
  • 2,805
  • 1
  • 22
  • 42
1
vote
2 answers

Aviary SDK image editor run error

I try to implement Aviary SDK in my Android app however everytime i try to run Aviary Intent i get following error: Intent imageEditorIntent = new AdobeImageIntent.Builder(this) .setData(imageUri) .build(); …
Blackchart
  • 135
  • 1
  • 3
  • 13
1
vote
1 answer

Increasing the quality of the edited image in adobe creative SDK

I have this code to launch the adobe creative SDK image editor. Uri imageUri = Uri.parse(path); Intent imageEditorIntent = new AdobeImageIntent.Builder(this) .setData(imageUri) .build(); …
Adrian
  • 1,677
  • 2
  • 12
  • 12
1
vote
1 answer

im getting an error while adding Creative SDK DependenciesError:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'

im creating an app using firebase and creative SDK, at first i added firebase dependencies and it worked without any issue. after that i added the creative sdk's dependencies and faced some issues. i got an error while building the…
TRomesh
  • 4,323
  • 8
  • 44
  • 74
1
vote
0 answers

Is there any way to remove watermark from AdobeUXImageEditorViewController

Hello i'm using Adobe Creative SDk for image Editing.I successfully integrate it but what i want is to remove TEXT water mark below Viewcontroller "Creative Cloud Connected". If it is possible then let me know.
Viraj Padsala
  • 1,388
  • 1
  • 13
  • 31
1
vote
1 answer

No unsaved changes prompt in Adobe Creative SDK Image Editor

In my single page application, I am currently migrating from Aviary to Adobe Creative SDK Image Editor. I noticed that the "Unsaved changes" prompt dialog does not appear anymore after completing the migration. Doing some reverse engineering, the…