Questions tagged [imagelibrary]
28 questions
4
votes
2 answers
saving an image to photos library using Swift 2.0
I'm getting a problem highlighted in red above. When I take a picture and press use photo, it won't let me save the photo I took to the photo album on my iPad. I have looked at other ways but me being a beginner to iOS development, I'm unsure of how…

user5168832
- 69
- 1
- 6
4
votes
2 answers
Saveable image library with compression?
this may be impossible, or rather, not very popular, but I was wondering how I'd go about creating a data file for images, that would actually compress them? Say I had 200MB total of image files, is there some system I can use to store them in a…

Connor Deckers
- 2,447
- 4
- 26
- 45
3
votes
0 answers
Reset Zoomed Image When Switching to next Fragment
I am working on a magazine type application for galaxy tab 10.1. I have created each page using Fragment.User can swipe his finger horizontally to move to next page which is a different fragment. Most of the pages are "full page image".I am using…

Khushwant
- 305
- 2
- 6
- 17
3
votes
2 answers
Using codeigniter image lib - converting images
Using codeigniter image lib is it possible to just change an image type? Trying to convert from * -> PNG.
The below doesn't work!
$config =…

Pez Cuckow
- 14,048
- 16
- 80
- 130
2
votes
1 answer
How do Image Loading Libraries like Coil or Glide do memory management?
I am new to Android development. My app has use case where I want to download and display images from Internet. I am using Kotlin to build App and decided to use Coil library as Image loading library. While using my application, user's action my…

LearningAsIGo
- 1,240
- 2
- 11
- 23
1
vote
0 answers
Improving quality of Image
I am new to Python Image Library and hope to get some guidance on repairing an image using the python image library (PIL). In particular, I have an image that looks like this.
I enhanced it using ImageEnhance.Brightness function of PIL and then…

gis
- 31
- 6
1
vote
1 answer
Using a dynamic library (DevIL/OpenIL) in a Xcode project
i am trying to compile example source code which is using the OpenGL, SDL and IL aka DevIL aka OpenIL libraries. OpenGL and SDL are available as native frameworks, but DevIL isn't. So here is what i did:
I installed DevIL via homebrew. First i…

Patrick Oscity
- 53,604
- 17
- 144
- 168
1
vote
2 answers
broken image while resizing image in codeigniter
I am using image lib library of codeigniter to resize image. But resize function of image library produces broken image sometimes and also not getting any error.
how to detect broken image.

sneha
- 41
- 5
1
vote
1 answer
Comparison of Image Library for Android (Picasso, Fresco, etc.)
Does anyone make a comparison about the Image-library for android ?
Handling images in Android sometimes is a headache since it's always about the memory problem. There are some popular libs also (such as Picasso, Fresco), having been playing some…

Kai
- 916
- 1
- 7
- 10
1
vote
0 answers
android image auto detect colors
I am trying to do something like this since last 2 weeks.
When user captures a photo using camera, it should auto detect colors/object and highlight it crop that photo. User should be able to change/resize/decide the crop area, and it should be…

gautamlakum
- 11,815
- 23
- 67
- 90
0
votes
1 answer
CodeIgniter 2 image_lib->resize() error - Renders blank page and does not return an error message
I'm trying to do something very simple but I can't see to make it work. For what it's worth, I'm currently testing on my MAMP dev machine, but get the same results from staging server (GoDaddy GridHost).
Here's what I want to do:
Upload an image…

Kyle Noland
- 4,788
- 6
- 30
- 33
0
votes
1 answer
make the images round border in imagemagick
I have a group of image with a specifc width and height.Now I want all the images with a round border. So can someone tell me how to make batch render round border of all the images in imagemagick, I am using php. Any help or suggestions will be…

NewUser
- 12,713
- 39
- 142
- 236
0
votes
1 answer
Why $conigf['quality'] parameter not working with png file but works awesome with jpg while image upload in codeigniter?
I have been trying to use imagemagic in my codeigniter API. The problem is that below code works fine with my jpg image compression. When I upload ".jpg" image of 2MB size it successfully resizes it to perfect 80kb file on server but when I use…

NilxSingh
- 253
- 2
- 5
- 17
0
votes
2 answers
Image captured or picking from imagelibrary rotated photo by 90 degree
I implemented functional of capturing/chosing image and it works great on HTC, however, on Samsung Galaxy Note 4 (Android version is 5.1.1) it rotates image by 90 degree.
Here are 2 variants of code but still rotated:
VARIANT 1:
public void…

Svitlana
- 2,938
- 1
- 29
- 38
0
votes
0 answers
"imagecopy() expects parameter 1 to be resource, boolean given" Codeigniter
I'm calling do_upload_img() function only if there is any input value, like this:
function xxx()
{
if($_FILES['portfolioimg']['size'])
{
$portfolioimg = $this->do_upload_img();
}
// remaining code.......
}
do_upload_img()…

Shihas
- 814
- 15
- 44