asposeimagingjava 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/LICENSE +21 -0
- data/README.md +33 -0
- data/Rakefile +2 -0
- data/asposeimagingjava.gemspec +27 -0
- data/config/aspose.yml +5 -0
- data/data/aspose.bmp +0 -0
- data/data/bizcard.psd +0 -0
- data/data/demo.djvu +0 -0
- data/data/demo.tif +0 -0
- data/data/multipage.tiff +0 -0
- data/data/sample.djvu +0 -0
- data/data/sample.emf +0 -0
- data/data/sample.gif +0 -0
- data/data/sample.jpg +0 -0
- data/data/sample.png +0 -0
- data/data/sample.tiff +0 -0
- data/data/samples/sample.jpg +0 -0
- data/data/samples/test.jpg +0 -0
- data/data/test.jpg +0 -0
- data/data/test.tiff +0 -0
- data/lib/asposeimagingjava.rb +71 -0
- data/lib/asposeimagingjava/asposeimaging.rb +5 -0
- data/lib/asposeimagingjava/djvu.rb +5 -0
- data/lib/asposeimagingjava/djvu/convertingdjvutopdf.rb +29 -0
- data/lib/asposeimagingjava/djvu/convertingdjvutotiff.rb +23 -0
- data/lib/asposeimagingjava/djvu/convertingrangeofdjvupages.rb +26 -0
- data/lib/asposeimagingjava/djvu/convertingrangeofdjvupagestoseparateimages.rb +30 -0
- data/lib/asposeimagingjava/djvu/convertingspecificportionofdjvupage.rb +32 -0
- data/lib/asposeimagingjava/drawing.rb +6 -0
- data/lib/asposeimagingjava/drawing/drawingarc.rb +37 -0
- data/lib/asposeimagingjava/drawing/drawingellipse.rb +43 -0
- data/lib/asposeimagingjava/drawing/drawingimagesusingcorefunctionality.rb +33 -0
- data/lib/asposeimagingjava/drawing/drawingimagesusinggraphics.rb +34 -0
- data/lib/asposeimagingjava/drawing/drawinglines.rb +53 -0
- data/lib/asposeimagingjava/drawing/drawingrectangle.rb +44 -0
- data/lib/asposeimagingjava/images.rb +20 -0
- data/lib/asposeimagingjava/images/addimagesasseparateframesintiff.rb +57 -0
- data/lib/asposeimagingjava/images/addthumbnailtoexifsegment.rb +25 -0
- data/lib/asposeimagingjava/images/addthumbnailtojfifsegment.rb +25 -0
- data/lib/asposeimagingjava/images/addwatermarktoimage.rb +30 -0
- data/lib/asposeimagingjava/images/adjustingcolors.rb +80 -0
- data/lib/asposeimagingjava/images/autocorrectorientationofjpegimage.rb +19 -0
- data/lib/asposeimagingjava/images/compresspngimage.rb +22 -0
- data/lib/asposeimagingjava/images/concatenatemultipletiffimages.rb +24 -0
- data/lib/asposeimagingjava/images/convertingrasterimages.rb +80 -0
- data/lib/asposeimagingjava/images/createjpegthumbnail.rb +21 -0
- data/lib/asposeimagingjava/images/cropimages.rb +63 -0
- data/lib/asposeimagingjava/images/datarecoverytiffimages.rb +21 -0
- data/lib/asposeimagingjava/images/ditheringimage.rb +19 -0
- data/lib/asposeimagingjava/images/exportimagetodifferentformats.rb +24 -0
- data/lib/asposeimagingjava/images/extracttiffframestootherformat.rb +19 -0
- data/lib/asposeimagingjava/images/readandmodifyjpegexiftags.rb +91 -0
- data/lib/asposeimagingjava/images/resizeimage.rb +63 -0
- data/lib/asposeimagingjava/images/rotateandflipimage.rb +18 -0
- data/lib/asposeimagingjava/images/specifybitdepthforpngimage.rb +25 -0
- data/lib/asposeimagingjava/images/specifytransparencyforpngimage.rb +32 -0
- data/lib/asposeimagingjava/metafiles.rb +2 -0
- data/lib/asposeimagingjava/metafiles/convertmetafiletootherformats.rb +28 -0
- data/lib/asposeimagingjava/metafiles/cropmetafile.rb +22 -0
- data/lib/asposeimagingjava/photoshop/createpsd.rb +42 -0
- data/lib/asposeimagingjava/photoshop/exportimagetopsd.rb +26 -0
- data/lib/asposeimagingjava/psd.rb +2 -0
- data/lib/asposeimagingjava/version.rb +3 -0
- data/samples/djvu.rb +13 -0
- data/samples/drawing.rb +14 -0
- data/samples/images.rb +29 -0
- data/samples/metafiles.rb +10 -0
- data/samples/psd.rb +10 -0
- metadata +170 -0
@@ -0,0 +1,25 @@
|
|
1
|
+
module Asposeimagingjava
|
2
|
+
module SpecifyBitdepthForPngImage
|
3
|
+
def initialize()
|
4
|
+
data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
|
5
|
+
|
6
|
+
# Load an existing image (of type bmp) in an instance of Image class
|
7
|
+
image = Rjb::import('com.aspose.imaging.Image').load(data_dir + "sample.png")
|
8
|
+
|
9
|
+
# Create an instance of PngOptions
|
10
|
+
options = Rjb::import('com.aspose.imaging.imageoptions.PngOptions').new
|
11
|
+
|
12
|
+
# Set the desired ColorType
|
13
|
+
options.setColorType(Rjb::import('com.aspose.imaging.fileformats.png.PngColorType').Grayscale)
|
14
|
+
|
15
|
+
# Set the BitDepth according to the specified ColorType
|
16
|
+
options.setBitDepth(1)
|
17
|
+
|
18
|
+
# Save the result on disc
|
19
|
+
image.save(data_dir + "specify_bitdepth.png", options)
|
20
|
+
|
21
|
+
# Display Status.
|
22
|
+
puts "Specified bit depth for PNG image successfully!"
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
module Asposeimagingjava
|
2
|
+
module SpecifyTransparencyForPngImage
|
3
|
+
def initialize()
|
4
|
+
data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
|
5
|
+
|
6
|
+
# Load an existing image (of type bmp) in an instance of Image class
|
7
|
+
image = Rjb::import('com.aspose.imaging.Image').load(data_dir + "sample.png")
|
8
|
+
|
9
|
+
# Store the width & height in variables for later use
|
10
|
+
width = image.getWidth()
|
11
|
+
height = image.getHeight()
|
12
|
+
|
13
|
+
# Load the pixels of RasterImage into the array of type Color
|
14
|
+
pixels = image.loadPixels(Rjb::import('com.aspose.imaging.Rectangle').new(0, 0, width, height))
|
15
|
+
|
16
|
+
# Create & initialize an instance of PngImage while specifying size and PngColorType
|
17
|
+
png = Rjb::import('com.aspose.imaging.fileformats.png.PngImage').new(width, height, Rjb::import('com.aspose.imaging.fileformats.png.PngColorType').TruecolorWithAlpha)
|
18
|
+
|
19
|
+
# Save the previously loaded pixels on to the new PngImage
|
20
|
+
png.savePixels(Rjb::import('com.aspose.imaging.Rectangle').new(0, 0, width, height), pixels)
|
21
|
+
|
22
|
+
# Set TransparentColor property to specify which color to be rendered as transparent
|
23
|
+
png.setTransparentColor(Rjb::import('com.aspose.imaging.Color').getBlack())
|
24
|
+
|
25
|
+
# Save the result on disc
|
26
|
+
png.save(data_dir + "specify_transparency.png")
|
27
|
+
|
28
|
+
# Display Status.
|
29
|
+
puts "Specified transparency for PNG image successfully!"
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module Asposeimagingjava
|
2
|
+
module ConvertMetafileToOtherFormats
|
3
|
+
def initialize()
|
4
|
+
data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
|
5
|
+
|
6
|
+
# Load a Metafile in an instance of EmfMetafileImage class
|
7
|
+
metafile = Rjb::import('com.aspose.imaging.fileformats.metafile.EmfMetafileImage').new(data_dir + "sample.emf")
|
8
|
+
|
9
|
+
# Save EMF to BMP using BmpOptions object
|
10
|
+
metafile.save(data_dir + "EmfToBmp.bmp", Rjb::import('com.aspose.imaging.imageoptions.BmpOptions').new)
|
11
|
+
|
12
|
+
# Save EMF to JPG using JpegOptions object
|
13
|
+
metafile.save(data_dir + "EmfToJpg.jpg", Rjb::import('com.aspose.imaging.imageoptions.JpegOptions').new)
|
14
|
+
|
15
|
+
# Save EMF to PNG using PngOptions object
|
16
|
+
metafile.save(data_dir + "EmfToPng.png", Rjb::import('com.aspose.imaging.imageoptions.PngOptions').new)
|
17
|
+
|
18
|
+
# Save EMF to GIF using GifOptions object
|
19
|
+
metafile.save(data_dir + "EmfToGif.gif", Rjb::import('com.aspose.imaging.imageoptions.GifOptions').new)
|
20
|
+
|
21
|
+
# Save EMF to TIFF using TiffOptions object with default settings
|
22
|
+
metafile.save(data_dir + "EmfToTiff.tiff", Rjb::import('com.aspose.imaging.imageoptions.TiffOptions').new(Rjb::import('com.aspose.imaging.fileformats.tiff.enums.TiffExpectedFormat').Default))
|
23
|
+
|
24
|
+
# Display Status.
|
25
|
+
puts "Converted EMF to BMP, JPEG, PNG, GIF and TIFF formats successfully!"
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module Asposeimagingjava
|
2
|
+
module CropMetafile
|
3
|
+
def initialize()
|
4
|
+
data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
|
5
|
+
|
6
|
+
# Load an existing image in an instance of Image class
|
7
|
+
image = Rjb::import('com.aspose.imaging.Image').load(data_dir + "sample.emf")
|
8
|
+
|
9
|
+
# Create an instance of Rectangle class with desired size
|
10
|
+
rectangle = Rjb::import('com.aspose.imaging.Rectangle').new(10, 10, 100, 100)
|
11
|
+
|
12
|
+
# Perform the crop operation on object of Rectangle class
|
13
|
+
image.crop(rectangle)
|
14
|
+
|
15
|
+
# Save the result in PNG format
|
16
|
+
image.save(data_dir + "CropMetafile.png")
|
17
|
+
|
18
|
+
# Display Status.
|
19
|
+
puts "Saved crop emf image to PNG successfully!"
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
module Asposeimagingjava
|
2
|
+
module CreadPSD
|
3
|
+
def initialize()
|
4
|
+
data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
|
5
|
+
|
6
|
+
# Create an instance of PsdOptions and set it's properties
|
7
|
+
create_options = Rjb::import('com.aspose.imaging.imageoptions.PsdOptions').new
|
8
|
+
|
9
|
+
# Set source
|
10
|
+
create_options.setSource(Rjb::import('com.aspose.imaging.sources.FileCreateSource').new(data_dir + "CreatePSD.psd", false))
|
11
|
+
|
12
|
+
# Set ColorMode to Indexed
|
13
|
+
create_options.setColorMode(Rjb::import('com.aspose.imaging.fileformats.psd.ColorModes').Indexed)
|
14
|
+
|
15
|
+
# Set PSD file version
|
16
|
+
create_options.setVersion(5)
|
17
|
+
|
18
|
+
color = Rjb::import('com.aspose.imaging.Color')
|
19
|
+
|
20
|
+
# Create a new color patelle having RGB colors
|
21
|
+
palette = [color.getRed(), color.getGreen(), color.getBlue()]
|
22
|
+
|
23
|
+
# Set Palette property to newly created palette
|
24
|
+
create_options.setPalette(Rjb::import('com.aspose.imaging.fileformats.psd.PsdColorPalette').new(palette))
|
25
|
+
|
26
|
+
# Set compression method
|
27
|
+
create_options.setCompressionMethod(Rjb::import('com.aspose.imaging.fileformats.psd.CompressionMethod').RLE)
|
28
|
+
|
29
|
+
# Create a new PSD with PsdOptions created previously
|
30
|
+
psd = Rjb::import('com.aspose.imaging.fileformats.psd.PsdImage').create(create_options, 500, 500)
|
31
|
+
|
32
|
+
# Draw some graphics over the newly created PSD
|
33
|
+
graphics = Rjb::import('com.aspose.imaging.Graphics').new(psd)
|
34
|
+
graphics.clear(color.getWhite())
|
35
|
+
graphics.drawEllipse(Rjb::import('com.aspose.imaging.Pen').new(color.getRed(), 6), Rjb::import('com.aspose.imaging.Rectangle').new(0, 0, 400, 400))
|
36
|
+
psd.save()
|
37
|
+
|
38
|
+
# Display Status.
|
39
|
+
puts "Created PSD successfully!"
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
module Asposeimagingjava
|
2
|
+
module ExportImageToPSD
|
3
|
+
def initialize()
|
4
|
+
data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
|
5
|
+
|
6
|
+
# Load an existing image (of type bmp) in an instance of Image class
|
7
|
+
image = Rjb::import('com.aspose.imaging.Image').load(data_dir + "aspose.bmp")
|
8
|
+
|
9
|
+
# Create an instance of PsdSaveOptions class
|
10
|
+
save_options = Rjb::import('com.aspose.imaging.imageoptions.PsdOptions').new
|
11
|
+
|
12
|
+
# Set the CompressionMethod as Raw
|
13
|
+
# Note: Other supported CompressionMethod is CompressionMethod.Rle [No Compression]
|
14
|
+
save_options.setCompressionMethod(Rjb::import('com.aspose.imaging.fileformats.psd.CompressionMethod').Raw)
|
15
|
+
|
16
|
+
# Set the ColorMode to GrayScale//Note: Other supported ColorModes are ColorModes.Bitmap and ColorModes.RGB
|
17
|
+
save_options.setColorMode(Rjb::import('com.aspose.imaging.fileformats.psd.ColorModes').RGB)
|
18
|
+
|
19
|
+
# Save the image to disk location with supplied PsdOptions settings
|
20
|
+
image.save(data_dir + "output.psd", save_options)
|
21
|
+
|
22
|
+
# Display Status.
|
23
|
+
puts "Image exported to PSD successfully!"
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
data/samples/djvu.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
=begin
|
2
|
+
Please uncomment the code which you want to execute.
|
3
|
+
=end
|
4
|
+
|
5
|
+
require '../lib/asposeimagingjava'
|
6
|
+
include Asposeimagingjava
|
7
|
+
#include Asposeimagingjava::ConvertingDjVuToPdf
|
8
|
+
#include Asposeimagingjava::ConvertingDjVuToTiff
|
9
|
+
#include Asposeimagingjava::ConvertingRangeOfDjVuPages
|
10
|
+
#include Asposeimagingjava::ConvertingRangeOfDjVuPagesToSeparateImages
|
11
|
+
#include Asposeimagingjava::ConvertingSpecificPortionOfDjvuPage
|
12
|
+
|
13
|
+
initialize_aspose_imaging
|
data/samples/drawing.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
=begin
|
2
|
+
Please uncomment the code which you want to execute.
|
3
|
+
=end
|
4
|
+
|
5
|
+
require '../lib/asposeimagingjava'
|
6
|
+
include Asposeimagingjava
|
7
|
+
#include Asposeimagingjava::DrawingImagesUsingCoreFunctionality
|
8
|
+
#include Asposeimagingjava::DrawingImagesUsingGraphics
|
9
|
+
#include Asposeimagingjava::DrawingLines
|
10
|
+
#include Asposeimagingjava::DrawingEllipse
|
11
|
+
#include Asposeimagingjava::DrawingRectangle
|
12
|
+
#include Asposeimagingjava::DrawingArc
|
13
|
+
|
14
|
+
initialize_aspose_imaging
|
data/samples/images.rb
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
=begin
|
2
|
+
Please uncomment the code which you want to execute.
|
3
|
+
=end
|
4
|
+
|
5
|
+
require '../lib/asposeimagingjava'
|
6
|
+
include Asposeimagingjava
|
7
|
+
#include Asposeimagingjava::ExportImageToDifferentFormats
|
8
|
+
#include Asposeimagingjava::AddWatermarkToImage
|
9
|
+
#include Asposeimagingjava::RotateAndFlipImage
|
10
|
+
#include Asposeimagingjava::CropImages
|
11
|
+
#include Asposeimagingjava::ResizeImage
|
12
|
+
#include Asposeimagingjava::DitheringImage
|
13
|
+
#include Asposeimagingjava::ConvertingRasterImages
|
14
|
+
#include Asposeimagingjava::AdjustingColors
|
15
|
+
#include Asposeimagingjava::SpecifyTransparencyForPngImage
|
16
|
+
#include Asposeimagingjava::CompressPngImage
|
17
|
+
#include Asposeimagingjava::SpecifyBitdepthForPngImage
|
18
|
+
#include Asposeimagingjava::CreateJpegThumbnail
|
19
|
+
#include Asposeimagingjava::AutoCorrectOrientationOfJpegImage
|
20
|
+
#include Asposeimagingjava::AddThumbnailToJFIFSegment
|
21
|
+
#include Asposeimagingjava::AddThumbnailToEXIFSegment
|
22
|
+
#include Asposeimagingjava::ReadAndModifyJpegEXIFTags
|
23
|
+
#include Asposeimagingjava::ExtractTiffFramesToOtherFormat
|
24
|
+
#include Asposeimagingjava::ConcatenateMultipleTiffImages
|
25
|
+
#include Asposeimagingjava::AddImagesAsSeparateFramesInTiff
|
26
|
+
#include Asposeimagingjava::datarecoverytiffimages
|
27
|
+
|
28
|
+
|
29
|
+
initialize_aspose_imaging
|
@@ -0,0 +1,10 @@
|
|
1
|
+
=begin
|
2
|
+
Please uncomment the code which you want to execute.
|
3
|
+
=end
|
4
|
+
|
5
|
+
require '../lib/asposeimagingjava'
|
6
|
+
include Asposeimagingjava
|
7
|
+
#include Asposeimagingjava::CropMetafile
|
8
|
+
#include Asposeimagingjava::ConvertMetafileToOtherFormats
|
9
|
+
|
10
|
+
initialize_aspose_imaging
|
data/samples/psd.rb
ADDED
metadata
ADDED
@@ -0,0 +1,170 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: asposeimagingjava
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Aspose Marketplace
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-10-05 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rjb
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.5.2
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 1.5.2
|
69
|
+
description: AsposeImagingJava is a Ruby gem that helps developers create, edit, draw
|
70
|
+
or convert images using Aspose.Imaging for Java libraries
|
71
|
+
email:
|
72
|
+
- marketplace@aspose.com
|
73
|
+
executables: []
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- Gemfile
|
78
|
+
- LICENSE
|
79
|
+
- README.md
|
80
|
+
- Rakefile
|
81
|
+
- asposeimagingjava.gemspec
|
82
|
+
- config/aspose.yml
|
83
|
+
- data/aspose.bmp
|
84
|
+
- data/bizcard.psd
|
85
|
+
- data/demo.djvu
|
86
|
+
- data/demo.tif
|
87
|
+
- data/multipage.tiff
|
88
|
+
- data/sample.djvu
|
89
|
+
- data/sample.emf
|
90
|
+
- data/sample.gif
|
91
|
+
- data/sample.jpg
|
92
|
+
- data/sample.png
|
93
|
+
- data/sample.tiff
|
94
|
+
- data/samples/sample.jpg
|
95
|
+
- data/samples/test.jpg
|
96
|
+
- data/test.jpg
|
97
|
+
- data/test.tiff
|
98
|
+
- lib/asposeimagingjava.rb
|
99
|
+
- lib/asposeimagingjava/asposeimaging.rb
|
100
|
+
- lib/asposeimagingjava/djvu.rb
|
101
|
+
- lib/asposeimagingjava/djvu/convertingdjvutopdf.rb
|
102
|
+
- lib/asposeimagingjava/djvu/convertingdjvutotiff.rb
|
103
|
+
- lib/asposeimagingjava/djvu/convertingrangeofdjvupages.rb
|
104
|
+
- lib/asposeimagingjava/djvu/convertingrangeofdjvupagestoseparateimages.rb
|
105
|
+
- lib/asposeimagingjava/djvu/convertingspecificportionofdjvupage.rb
|
106
|
+
- lib/asposeimagingjava/drawing.rb
|
107
|
+
- lib/asposeimagingjava/drawing/drawingarc.rb
|
108
|
+
- lib/asposeimagingjava/drawing/drawingellipse.rb
|
109
|
+
- lib/asposeimagingjava/drawing/drawingimagesusingcorefunctionality.rb
|
110
|
+
- lib/asposeimagingjava/drawing/drawingimagesusinggraphics.rb
|
111
|
+
- lib/asposeimagingjava/drawing/drawinglines.rb
|
112
|
+
- lib/asposeimagingjava/drawing/drawingrectangle.rb
|
113
|
+
- lib/asposeimagingjava/images.rb
|
114
|
+
- lib/asposeimagingjava/images/addimagesasseparateframesintiff.rb
|
115
|
+
- lib/asposeimagingjava/images/addthumbnailtoexifsegment.rb
|
116
|
+
- lib/asposeimagingjava/images/addthumbnailtojfifsegment.rb
|
117
|
+
- lib/asposeimagingjava/images/addwatermarktoimage.rb
|
118
|
+
- lib/asposeimagingjava/images/adjustingcolors.rb
|
119
|
+
- lib/asposeimagingjava/images/autocorrectorientationofjpegimage.rb
|
120
|
+
- lib/asposeimagingjava/images/compresspngimage.rb
|
121
|
+
- lib/asposeimagingjava/images/concatenatemultipletiffimages.rb
|
122
|
+
- lib/asposeimagingjava/images/convertingrasterimages.rb
|
123
|
+
- lib/asposeimagingjava/images/createjpegthumbnail.rb
|
124
|
+
- lib/asposeimagingjava/images/cropimages.rb
|
125
|
+
- lib/asposeimagingjava/images/datarecoverytiffimages.rb
|
126
|
+
- lib/asposeimagingjava/images/ditheringimage.rb
|
127
|
+
- lib/asposeimagingjava/images/exportimagetodifferentformats.rb
|
128
|
+
- lib/asposeimagingjava/images/extracttiffframestootherformat.rb
|
129
|
+
- lib/asposeimagingjava/images/readandmodifyjpegexiftags.rb
|
130
|
+
- lib/asposeimagingjava/images/resizeimage.rb
|
131
|
+
- lib/asposeimagingjava/images/rotateandflipimage.rb
|
132
|
+
- lib/asposeimagingjava/images/specifybitdepthforpngimage.rb
|
133
|
+
- lib/asposeimagingjava/images/specifytransparencyforpngimage.rb
|
134
|
+
- lib/asposeimagingjava/metafiles.rb
|
135
|
+
- lib/asposeimagingjava/metafiles/convertmetafiletootherformats.rb
|
136
|
+
- lib/asposeimagingjava/metafiles/cropmetafile.rb
|
137
|
+
- lib/asposeimagingjava/photoshop/createpsd.rb
|
138
|
+
- lib/asposeimagingjava/photoshop/exportimagetopsd.rb
|
139
|
+
- lib/asposeimagingjava/psd.rb
|
140
|
+
- lib/asposeimagingjava/version.rb
|
141
|
+
- samples/djvu.rb
|
142
|
+
- samples/drawing.rb
|
143
|
+
- samples/images.rb
|
144
|
+
- samples/metafiles.rb
|
145
|
+
- samples/psd.rb
|
146
|
+
homepage: https://github.com/asposeimaging/Aspose_Imaging_Java/tree/master/Plugins/Aspose_Imaging_Java_for_Ruby
|
147
|
+
licenses:
|
148
|
+
- MIT
|
149
|
+
metadata: {}
|
150
|
+
post_install_message:
|
151
|
+
rdoc_options: []
|
152
|
+
require_paths:
|
153
|
+
- lib
|
154
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
155
|
+
requirements:
|
156
|
+
- - ">="
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: '0'
|
159
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
160
|
+
requirements:
|
161
|
+
- - ">="
|
162
|
+
- !ruby/object:Gem::Version
|
163
|
+
version: '0'
|
164
|
+
requirements: []
|
165
|
+
rubyforge_project:
|
166
|
+
rubygems_version: 2.4.5
|
167
|
+
signing_key:
|
168
|
+
specification_version: 4
|
169
|
+
summary: A Ruby gem to work with Aspose.Imaging for Java libraries
|
170
|
+
test_files: []
|